-
Notifications
You must be signed in to change notification settings - Fork 44
/
TeleBot.php
174 lines (149 loc) · 3.96 KB
/
TeleBot.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
<?php
namespace WeStacks\TeleBot;
use GuzzleHttp\Client;
use WeStacks\TeleBot\Exceptions\TeleBotException;
use WeStacks\TeleBot\Traits\HandlesUpdates;
use WeStacks\TeleBot\Traits\HasTelegramMethods;
/**
* This class represents a bot instance. This is main controller for sending and handling your Telegram requests.
*
* @see https://core.telegram.org/bots/api
*/
class TeleBot
{
use HasTelegramMethods;
use HandlesUpdates;
/**
* Actual bot config.
*
* @var array
*/
protected $config = [];
/**
* Guzzle HTTP client.
*
* @var Client
*/
protected $client;
/**
* Kernel for handling incoming updates.
*
* @var Kernel
*/
protected $kernel;
/**
* Async trigger.
*
* @var bool
*/
protected $async;
/**
* Exception trigger.
*
* @var bool
*/
protected $exceptions;
/**
* Fake trigger.
*
* @var bool
*/
protected $fake;
/**
* Create new instance of Telegram bot.
*
* @param array|string $config Bot config. Path telegram bot API token as string, or array of parameters
*
* @throws TeleBotException
*/
public function __construct($config)
{
if (is_string($config)) {
$config = ['token' => $config];
}
if (! isset($config['token'])) {
throw new TeleBotException('Token is required.');
}
$this->config = [
'token' => $config['token'],
'name' => $config['name'] ?? null,
'exceptions' => $config['exceptions'] ?? true,
'async' => $config['async'] ?? false,
'storage' => $config['storage'] ?? \WeStacks\TeleBot\Storage\JsonStorage::class,
'api_url' => $config['api_url'] ?? 'https://api.telegram.org/bot{TOKEN}/{METHOD}',
'http' => $config['http'] ?? [],
'webhook' => $config['webhook'] ?? [],
'poll' => $config['poll'] ?? [],
'handlers' => $config['handlers'] ?? null,
];
$this->client = new Client(array_merge([
'http_errors' => false,
], $this->config['http']));
if (is_subclass_of($handlers = $this->config['handlers'] ?? [], Kernel::class)) {
$this->kernel = new $handlers;
} else {
$this->kernel = new Kernel($handlers);
}
}
public function __call(string $method, array $arguments)
{
if (! $Method = static::method($method)) {
throw new TeleBotException("Method '{$method}' not found.");
}
$method = new $Method(
$this->client,
$this->config['api_url'],
$this->config['token'],
$this->exceptions ?? $this->config['exceptions'],
$this->async ?? $this->config['async'],
$this->fake ?? false
);
$this->exceptions = null;
$this->async = null;
$this->fake = null;
return $method(...$arguments);
}
/**
* Get bot config.
*
* @return mixed
*/
public function config(string $value = null, $default = null)
{
if ($value === null) {
return $this->config;
}
return $this->config[$value] ?? $default;
}
/**
* Call next method asynchronously (bot method will return guzzle promise).
*
* @return self
*/
public function async(bool $async = true)
{
$this->async = $async;
return $this;
}
/**
* Call next method fake.
*
* @param bool $async
* @return self
*/
public function fake(bool $fake = true)
{
$this->fake = $fake;
return $this;
}
/**
* Throw exceptions on next method (bot method will throw `TeleBotException` on request error).
*
* @return self
*/
public function exceptions(bool $exceptions = true)
{
$this->exceptions = $exceptions;
return $this;
}
}