forked from danog/MadelineProto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPIWrapper.php
136 lines (118 loc) · 3.42 KB
/
APIWrapper.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
declare(strict_types=1);
/**
* API wrapper module.
*
* This file is part of MadelineProto.
* MadelineProto is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
* MadelineProto is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
* You should have received a copy of the GNU General Public License along with MadelineProto.
* If not, see <http://www.gnu.org/licenses/>.
*
* @author Daniil Gentili <[email protected]>
* @copyright 2016-2023 Daniil Gentili <[email protected]>
* @license https://opensource.org/licenses/AGPL-3.0 AGPLv3
* @link https://docs.madelineproto.xyz MadelineProto documentation
*/
namespace danog\MadelineProto;
use Amp\Cancellation;
use Amp\TimeoutCancellation;
use danog\MadelineProto\Ipc\Client;
final class APIWrapper
{
private MTProto|Client|null $API = null;
private string $webApiTemplate = '';
/**
* API wrapper.
*/
public function __construct(
private SessionPaths $session,
) {
}
public function setSession(SessionPaths $session): void
{
$this->session = $session;
}
public function getWebApiTemplate(): string
{
return $this->webApiTemplate;
}
public function setWebApiTemplate(string $template): void
{
$this->webApiTemplate = $template;
}
public function logger(mixed $param, int $level = Logger::NOTICE, string $file = ''): void
{
($this->API->logger ?? Logger::$default)->logger($param, $level, $file);
}
public function setAPI(Client|MTProto|null $API): void
{
$this->API?->unreference();
$this->API = $API;
}
/**
* Sleep function.
*/
public function __sleep(): array
{
return ['API', 'webApiTemplate'];
}
/**
* Get MTProto instance.
*/
public function getAPI(): Client|MTProto|null
{
return $this->API;
}
private ?int $drop = null;
/**
* @internal
*/
public function getRpcDropCancellation(): Cancellation
{
return new TimeoutCancellation($this->drop ??= $this->getAPI()->getSettings()->getRpc()->getRpcDropTimeout());
}
/**
* Get IPC path.
*
* @internal
*/
public function getIpcPath(): string
{
return $this->session->getIpcPath();
}
/**
* Serialize session.
*/
public function serialize(): bool
{
if ($this->API === null) {
return false;
}
if ($this->API instanceof Client) {
return false;
}
$this->API->waitForInit();
$API = $this->API;
if ($API->authorized === API::LOGGED_OUT) {
return false;
}
$this->session->serialize(
$API->serializeSession($this),
$this->session->getSessionPath(),
);
$this->session->storeLightState($API);
if (!Magic::$suspendPeriodicLogging) {
Logger::log('Saved session!');
}
return true;
}
/**
* Get session path.
*/
public function getSession(): SessionPaths
{
return $this->session;
}
}