-
Notifications
You must be signed in to change notification settings - Fork 1
/
Telegram.php
executable file
·232 lines (220 loc) · 7.41 KB
/
Telegram.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
<?php
/**
* Telegram Bot Class.
* based on first version by @author Gabriele Grillo <[email protected]>
*
*/
include('settings_t.php');
class Telegram {
private $bot_id = TELEGRAM_BOT;
private $data = array();
private $updates = array();
public $inited = false;
public function __construct($bot_id) {
$this->bot_id = $bot_id;
$this->data = $this->getData();
}
public function init() {
if ($this->inited) {
return true;
}
}
public function getMe() {
return $this->endpoint("getMe", array(), false);
}
public function sendMessage(array $content) {
return $this->endpoint("sendMessage", $content);
}
public function endpoint($api, array $content, $post = true) {
$url = 'https://api.telegram.org/bot' . $this->bot_id . '/' . $api;
if ($post)
{
return $this->sendAPIRequest($url, $content);
}
else
{
return $this->sendAPIRequest($url, array(), false);
}
}
public function sendPhoto(array $content) {
return $this->endpoint("sendPhoto", $content);
}
public function sendAudio(array $content) {
return $this->endpoint("sendAudio", $content);
}
public function sendDocument(array $content) {
return $this->endpoint("sendDocument", $content);
}
public function sendSticker(array $content) {
return $this->endpoint("sendSticker", $content);
}
public function sendVideo(array $content) {
return $this->endpoint("sendVideo", $content);
}
public function sendVoice(array $content) {
return $this->endpoint("sendVoice", $content);
}
public function sendLocation(array $content) {
return $this->endpoint("sendLocation", $content);
}
public function sendChatAction(array $content) {
return $this->endpoint("sendChatAction", $content);
}
public function setWebhook($url) {
$content = array('url' => $url);
return $this->endpoint("setWebhook", $content);
}
public function removeWebhook() {
//$this->init();
$content = array('url' => '');
return $this->endpoint('setWebhook', $content);
}
public function getData() {
if (empty($this->data)) {
$rawData = file_get_contents("php://input");
return json_decode($rawData, true);
} else {
return $this->data;
}
}
public function setData(array $data) {
$this->data = data;
}
public function Text() {
return $this->data["message"]["text"];
}
public function ChatID() {
return $this->data["message"]["chat"]["id"];
}
public function Date() {
return $this->data["message"]["date"];
}
public function FirstName() {
return $this->data["message"]["from"]["first_name"];
}
public function LastName() {
return $this->data["message"]["from"]["last_name"];
}
public function Username() {
return $this->data["message"]["from"]["username"];
}
public function User_id(){
return $this->data["message"]["from"]["id"];
}
public function Location() {
return $this->data["message"]["location"];
}
public function UpdateID() {
return $this->data["update_id"];
}
public function UpdateCount() {
return count($this->updates["result"]);
}
public function ReplyToMessage() {
return $this->data["message"]["reply_to_message"];
}
public function MessageId() {
return $this->data["message"]["message_id"];
}
public function messageFromGroup() {
if ($this->data["message"]["chat"]["title"] == "") {
return false;
}
return true;
}
//gestisce un invio in broadcast a tutti gli utenti registrati in un database
public function sendMessageAll($type, $user, $content)
{
$apiendpoint = ucfirst($type);
if ($type == 'photo' || $type == "audio" || $type == "video" || $type == "document") {
$mimetype = mime_content_type($content);
$content = new CurlFile($content, $mimetype);
} elseif ($type == "message") {
$type = 'text';
}
print_r($user);
$ch = curl_init("https://api.telegram.org/bot".$this->bot_id."/send".$apiendpoint);
curl_setopt_array($ch, array(
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_HEADER => false,
CURLOPT_HTTPHEADER => array(
'Host: api.telegram.org',
'Content-Type: multipart/form-data'
),
CURLOPT_POSTFIELDS => array(
'chat_id' => $user,
$type => $content
),
CURLOPT_TIMEOUT => 0,
CURLOPT_CONNECTTIMEOUT => 6000,
CURLOPT_SSL_VERIFYPEER => false
));
curl_exec($ch);
curl_close($ch);
}
//costruisce la tastiera del servizio
public function buildKeyBoard(array $options, $onetime = true, $resize = true, $selective = true) {
$replyMarkup = array(
'keyboard' => $options,
'one_time_keyboard' => $onetime,
'resize_keyboard' => $resize,
'selective' => $selective
);
$encodedMarkup = json_encode($replyMarkup, true);
return $encodedMarkup;
}
public function buildKeyBoardHide($selective = true) {
$replyMarkup = array(
'hide_keyboard' => true,
'selective' => $selective
);
$encodedMarkup = json_encode($replyMarkup, true);
return $encodedMarkup;
}
public function buildForceReply($selective = true) {
$replyMarkup = array(
'force_reply' => true,
'selective' => $selective
);
$encodedMarkup = json_encode($replyMarkup, true);
return $encodedMarkup;
}
public function getUpdates($offset = 0, $limit = 100, $timeout = 0, $update = true) {
$content = array('offset' => $offset, 'limit' => $limit, 'timeout' => $timeot);
$reply = $this->endpoint("getUpdates", $content);
$this->updates = json_decode($reply, true);
if ($update) {
$last_element_id = $this->updates["result"][count($this->updates["result"]) - 1]["update_id"] + 1;
$content = array('offset' => $last_element_id, 'limit' => "1", 'timeout' => $timeot);
$this->endpoint("getUpdates", $content);
}
return $this->updates;
}
public function serveUpdate($update) {
$this->data = $this->updates["result"][$update];
}
private function sendAPIRequest($url, array $content, $post = true) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
if ($post) {
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $content);
}
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
}
// Helper for Uploading file using CURL
if (!function_exists('curl_file_create')) {
function curl_file_create($filename, $mimetype = '', $postname = '') {
return "@$filename;filename="
. ($postname ? : basename($filename))
. ($mimetype ? ";type=$mimetype" : '');
}
}
?>