-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathClient.php
447 lines (409 loc) · 14.3 KB
/
Client.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
<?php
/*
* Copyright 2015 Alexey Maslov <alexey.y.maslov@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
namespace alxmsl\Telegram\Bot;
use alxmsl\Network\Exception\HttpCodeException;
use alxmsl\Network\Http\Request;
use alxmsl\Telegram\Bot\Exception\UnsuccessfulException;
use alxmsl\Telegram\Bot\Type\Message;
use alxmsl\Telegram\Bot\Type\Update;
use alxmsl\Telegram\Bot\Type\User;
use alxmsl\Telegram\Bot\Type\UserProfilePhotos;
use Closure;
use CURLFile;
use JsonSerializable;
use stdClass;
/**
* Telegram Bot API client
* @author alxmsl
*/
class Client implements ClientInterface {
/**
* Telegram API endpoint
*/
const ENDPOINT_URI = 'https://api.telegram.org';
/**
* @var string authentication token
*/
private $token = '';
/**
* @var int connect timeout, seconds
*/
private $connectTimeout = 0;
/**
* @var int request timeout, seconds
*/
private $requestTimeout = 0;
/**
* @param int $connectTimeout connect timeout, seconds
* @return $this
*/
public function setConnectTimeout($connectTimeout) {
$this->connectTimeout = (int) $connectTimeout;
return $this;
}
/**
* @return int connect timeout, seconds
*/
public function getConnectTimeout() {
return $this->connectTimeout;
}
/**
* @param int $requestTimeout request timeout, seconds
* @return $this
*/
public function setRequestTimeout($requestTimeout) {
$this->requestTimeout = (int) $requestTimeout;
return $this;
}
/**
* @return int request timeout, seconds
*/
public function getRequestTimeout() {
return $this->requestTimeout;
}
/**
* @param string $token client authentication token
*/
public function __construct($token = '') {
$this->token = (string) $token;
}
/**
* @inheritdoc
*/
public function getMe() {
return $this->getResult('getMe', [], function(stdClass $User) {
return User::initializeByObject($User);
});
}
/**
* @inheritdoc
*/
public function sendMessage($chatId, $text, $disableWebPagePreview = null, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$parameters = [
'chat_id' => (int) $chatId,
'text' => (string) $text,
];
if (!is_null($disableWebPagePreview)) {
$parameters['disable_web_page_preview'] = (bool) $disableWebPagePreview;
}
if (!is_null($replyToMessageId)) {
$parameters['reply_to_message_id'] = (int) $replyToMessageId;
}
if (!is_null($ReplyMarkUp)) {
$parameters['reply_markup'] = json_encode($ReplyMarkUp);
}
return $this->getResult('sendMessage', $parameters, function(stdClass $Message) {
return Message::initializeByObject($Message);
});
}
/**
* @inheritdoc
*/
public function forwardMessage($chatId, $fromChatId, $messageId) {
return $this->getResult('forwardMessage', [
'chat_id' => (int) $chatId,
'from_chat_id' => (int) $fromChatId,
'message_id' => (int) $messageId,
], function(stdClass $Message) {
return Message::initializeByObject($Message);
});
}
/**
* @inheritdoc
*/
public function sendPhoto($chatId, $Photo, $caption = '', $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$parameters = [
'chat_id' => (int) $chatId,
'photo' => $Photo,
];
if (!empty($caption)) {
$parameters['caption'] = (bool) $caption;
}
if (!is_null($replyToMessageId)) {
$parameters['reply_to_message_id'] = (int) $replyToMessageId;
}
if (!is_null($ReplyMarkUp)) {
$parameters['reply_markup'] = json_encode($ReplyMarkUp);
}
return $this->getResult('sendPhoto', $parameters, function(stdClass $Message) {
return Message::initializeByObject($Message);
});
}
/**
* @inheritdoc
*/
public function sendPhotoByFileId($chatId, $fileId, $caption = '', $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
return $this->sendPhoto($chatId, (string) $fileId, $caption, $replyToMessageId, $ReplyMarkUp);
}
/**
* @inheritdoc
*/
public function sendPhotoFile($chatId, $fileName, $caption = '', $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$File = new CURLFile($fileName);
return $this->sendPhoto($chatId, $File, $caption, $replyToMessageId, $ReplyMarkUp);
}
/**
* @inheritdoc
*/
public function sendAudio($chatId, $Audio, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$parameters = [
'chat_id' => (int) $chatId,
'audio' => $Audio,
];
if (!is_null($replyToMessageId)) {
$parameters['reply_to_message_id'] = (int) $replyToMessageId;
}
if (!is_null($ReplyMarkUp)) {
$parameters['reply_markup'] = json_encode($ReplyMarkUp);
}
return $this->getResult('sendAudio', $parameters, function(stdClass $Message) {
return Message::initializeByObject($Message);
});
}
/**
* @inheritdoc
*/
public function sendAudioByFileId($chatId, $fileId, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
return $this->sendAudio($chatId, (string) $fileId, $replyToMessageId, $ReplyMarkUp);
}
/**
* @inheritdoc
*/
public function sendAudioByFileName($chatId, $fileName, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$File = new CURLFile($fileName);
return $this->sendAudio($chatId, $File, $replyToMessageId, $ReplyMarkUp);
}
/**
* @inheritdoc
*/
public function sendDocument($chatId, $Document, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$parameters = [
'chat_id' => (int) $chatId,
'document' => $Document,
];
if (!is_null($replyToMessageId)) {
$parameters['reply_to_message_id'] = (int) $replyToMessageId;
}
if (!is_null($ReplyMarkUp)) {
$parameters['reply_markup'] = json_encode($ReplyMarkUp);
}
return $this->getResult('sendDocument', $parameters, function(stdClass $Message) {
return Message::initializeByObject($Message);
});
}
/**
* @inheritdoc
*/
public function sendDocumentByFileId($chatId, $fileId, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
return $this->sendDocument($chatId, (string) $fileId, $replyToMessageId, $ReplyMarkUp);
}
/**
* @inheritdoc
*/
public function sendDocumentByFileName($chatId, $fileName, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$File = new CURLFile($fileName);
return $this->sendDocument($chatId, $File, $replyToMessageId, $ReplyMarkUp);
}
/**
* @inheritdoc
*/
public function sendSticker($chatId, $Sticker, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$parameters = [
'chat_id' => (int) $chatId,
'sticker' => $Sticker,
];
if (!is_null($replyToMessageId)) {
$parameters['reply_to_message_id'] = (int) $replyToMessageId;
}
if (!is_null($ReplyMarkUp)) {
$parameters['reply_markup'] = json_encode($ReplyMarkUp);
}
return $this->getResult('sendSticker', $parameters, function(stdClass $Message) {
return Message::initializeByObject($Message);
});
}
/**
* @inheritdoc
*/
public function sendStickerByFileId($chatId, $fileId, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
return $this->sendsticker($chatId, (string) $fileId, $replyToMessageId, $ReplyMarkUp);
}
/**
* @inheritdoc
*/
public function sendStickerByFileName($chatId, $fileName, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$File = new CURLFile($fileName);
return $this->sendsticker($chatId, $File, $replyToMessageId, $ReplyMarkUp);
}
/**
* @inheritdoc
*/
public function sendVideo($chatId, $Video, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$parameters = [
'chat_id' => (int) $chatId,
'video' => $Video,
];
if (!is_null($replyToMessageId)) {
$parameters['reply_to_message_id'] = (int) $replyToMessageId;
}
if (!is_null($ReplyMarkUp)) {
$parameters['reply_markup'] = json_encode($ReplyMarkUp);
}
return $this->getResult('sendVideo', $parameters, function(stdClass $Message) {
return Message::initializeByObject($Message);
});
}
/**
* @inheritdoc
*/
public function sendVideoByFileId($chatId, $fileId, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
return $this->sendvideo($chatId, (string) $fileId, $replyToMessageId, $ReplyMarkUp);
}
/**
* @inheritdoc
*/
public function sendVideoByFileName($chatId, $fileName, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$File = new CURLFile($fileName);
return $this->sendvideo($chatId, $File, $replyToMessageId, $ReplyMarkUp);
}
/**
* @inheritdoc
*/
public function sendLocation($chatId, $latitude, $longitude, $replyToMessageId = null, JsonSerializable $ReplyMarkUp = null) {
$parameters = [
'chat_id' => (int) $chatId,
'latitude' => (float) $latitude,
'longitude' => (float) $longitude,
];
if (!is_null($replyToMessageId)) {
$parameters['reply_to_message_id'] = (int) $replyToMessageId;
}
if (!is_null($ReplyMarkUp)) {
$parameters['reply_markup'] = json_encode($ReplyMarkUp);
}
return $this->getResult('sendLocation', $parameters, function(stdClass $Message) {
return Message::initializeByObject($Message);
});
}
/**
* @inheritdoc
*/
public function sendChatAction($chatId, $action) {
return $this->getResult('sendChatAction', [
'chat_id' => (int) $chatId,
'action' => (string) $action,
]);
}
/**
* @inheritdoc
*/
public function getUserProfilePhotos($userId, $offset = null, $limit = null) {
$parameters = [
'user_id' => (int) $userId,
];
if (!is_null($offset)) {
$parameters['offset'] = (int) $offset;
}
if (!is_null($limit)) {
$parameters['limit'] = (int) $limit;
}
return $this->getResult('getUserProfilePhotos', $parameters, function(stdClass $Photos) {
return UserProfilePhotos::initializeByObject($Photos);
});
}
/**
* @inheritdoc
*/
public function getUpdates($offset = null, $limit = null, $timeout = null) {
$parameters = [];
if (!is_null($offset)) {
$parameters['offset'] = (int) $offset;
}
if (!is_null($limit)) {
$parameters['limit'] = (int) $limit;
}
if (!is_null($timeout)) {
$parameters['timeout'] = (int) $timeout;
}
return $this->getResult('getUpdates', $parameters, function(stdClass $UpdateObject) {
return Update::initializeByObject($UpdateObject);
});
}
/**
* @inheritdoc
*/
public function setWebhook($url) {
return $this->getResult('setWebhook', [
'url' => $url,
]);
}
/**
* @inheritdoc
*/
public function removeWebhook() {
return $this->setWebhook('');
}
/**
* Call bot method and return result instance
* @param string $methodName API method name
* @param array $parameters method call parameters
* @param Closure|null $BuildStrategy build strategy for response result(s)
* @return mixed response result instance
* @throws UnsuccessfulException exception for unsuccessful request responses
*/
private function getResult($methodName, array $parameters = [], Closure $BuildStrategy = null) {
$responseData = $this->call($methodName, $parameters);
$Response = Response::initializeByString($responseData, $BuildStrategy);
if (!$Response->isOk()) {
throw new UnsuccessfulException($Response->getDescription(), $Response->getErrorCode());
} else {
return $Response->getResult();
}
}
/**
* Call bot method
* @param string $methodName API method name
* @param array $parameters method call parameters
* @return string response data
* @codeCoverageIgnore
*/
public function call($methodName, array $parameters = []) {
try {
return $this->getRequest($methodName, $parameters)->send();
} catch (HttpCodeException $Ex) {
return $Ex->getMessage();
}
}
/**
* Create request for method call
* @param string $methodName API method name
* @param array $parameters method call parameters
* @return Request request object
*/
private function getRequest($methodName, array $parameters = []) {
$Request = new Request();
$Request->setTransport(Request::TRANSPORT_CURL);
$Request->setUrl(self::ENDPOINT_URI)
->setConnectTimeout($this->getConnectTimeout())
->setTimeout($this->getRequestTimeout())
->addUrlField(sprintf('bot%s', $this->token), $methodName);
if (!empty($parameters)) {
$Request->setPostData($parameters);
}
return $Request;
}
}