-
Notifications
You must be signed in to change notification settings - Fork 10
/
Messenger.php
310 lines (281 loc) · 9.91 KB
/
Messenger.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
<?php
/**
* Messenger Bot Class.
* @author Pablo Montenegro
* @about Based on the Telegram API wrapper by Gabriele Grillo <gabry.grillo@alice.it>
* TODO:
* https://developers.facebook.com/docs/messenger-platform/send-api-reference/buy-button
* https://developers.facebook.com/docs/messenger-platform/send-api-reference/url-button
* https://developers.facebook.com/docs/messenger-platform/send-api-reference/image-attachment
* https://developers.facebook.com/docs/messenger-platform/send-api-reference/sender-actions
* https://developers.facebook.com/docs/messenger-platform/send-api-reference/errors
*/
class Messenger {
private $bot_id = "";
private $api_version = "v2.9";
private $data = array();
/// Class constructor
public function __construct($bot_id) {
$this->bot_id = $bot_id;
$this->data = $this->getData();
}
/// Verify webhook
public function verifyWebhook($hub_token) {
if ($this->data['hub_verify_token'] == $hub_token) {
return $this->data['hub_challenge'];
}
return false;
}
/// Do requests to Messenger Bot API
public function endpoint($api, array $content, $post = true) {
$url = 'https://graph.facebook.com/' . $this->api_version . '/' . $api . '?access_token=' . $this->bot_id;
if ($post)
$reply = $this->sendAPIRequest($url, $content);
else
$reply = $this->sendAPIRequest($url, array(), false);
return json_decode($reply, true);
}
public function respondSuccess() {
http_response_code(200);
return json_encode(array("status" => "success"));
}
// send chat action
// sender_action:
// mark_seen
// typing_on
// typing_off
public function sendChatAction($chat_id, $action) {
return $this->endpoint("me/messages", array(
'recipient' => array(
'id' => $chat_id
),
'sender_action' => $action
)
);
}
// send message
// https://developers.facebook.com/docs/messenger-platform/send-api-reference#request
public function sendMessage($chat_id, $text) {
return $this->endpoint("me/messages", array(
'recipient' => array(
'id' => $chat_id
),
'message' => array(
'text' => $text
)
)
);
}
// send message
// $button = array(
// array(
// 'type' => 'web_url',
// 'url' => 'URL_HERE',
// 'title' => 'TITLE_HERE'
// ),
// array(
// 'type' => 'web_url',
// 'url' => 'URL_HERE',
// 'title' => 'TITLE_HERE'
// ),
// ...
// );
// $elements = array(
// array(
// 'title' => 'TITLE_TEXT_HERE',
// 'item_url' => 'ITEM_URL_HERE',
// 'image_url' => 'IMAGE_URL_HERE',
// 'subtitle' => 'SUBTITLE_HERE',
// 'buttons' => $buttons
// )
// );
// https://developers.facebook.com/docs/messenger-platform/send-api-reference#request
public function sendGenericTemplate($chat_id, array $elements) {
return $this->endpoint("me/messages", array(
'recipient' => array(
'id' => $chat_id
),
'message' => array(
'attachment' => array(
'type' => 'template',
'payload' => array(
'template_type' => 'generic',
'elements' => $elements
)
)
)
)
);
}
// send quick reply
// $replies = array(
// array(
// 'content_type' => 'text',
// 'title' => 'TITLE_HERE',
// 'payload' => 'DEVELOPER_CUSTOM_PAYLOAD_HERE'
// ),
// array(
// 'content_type' => 'text',
// 'title' => 'TITLE_HERE',
// 'payload' => 'DEVELOPER_CUSTOM_PAYLOAD_HERE'
// ),
// ...
// );
// https://developers.facebook.com/docs/messenger-platform/send-api-reference/quick-replies
public function sendQuickReply($chat_id, $text, array $replies) {
return $this->endpoint("me/messages", array(
'recipient' => array(
'id' => $chat_id
),
'message' => array(
'text' => $text,
'quick_replies' => $replies
)
)
);
}
// send button
// $buttons = array(
// array(
// 'type' => 'web_url',
// 'url' => 'URL_HERE',
// 'title' => 'TITLE_HERE'
// ),
// array(
// 'type' => 'web_url',
// 'url' => 'URL_HERE',
// 'title' => 'TITLE_HERE'
// ),
// ...
// );
// https://developers.facebook.com/docs/messenger-platform/send-api-reference/button-template
// https://developers.facebook.com/docs/messenger-platform/send-api-reference/share-button <- works only with sendGenericTemplate
public function sendButtonTemplate($chat_id, $text, array $buttons) {
return $this->endpoint("me/messages",
array(
'recipient' => array(
'id' => $chat_id
),
'message' => array(
'attachment' => array(
'type' => 'template',
'payload' => array(
'template_type' => 'button',
'text' => $text,
'buttons' => $buttons
)
)
)
)
);
}
// send elements
// $elements = array(
// array(
// 'title' => 'TITLE_TEXT_HERE',
// 'item_url' => 'ITEM_URL_HERE',
// 'image_url' => 'IMAGE_URL_HERE',
// 'subtitle' => 'SUBTITLE_HERE',
// 'buttons' => $buttons
// )
// );
// https://developers.facebook.com/docs/messenger-platform/send-api-reference/receipt-template
public function sendReceiptTemplate($chat_id, array $payload) {
return $this->endpoint("me/messages",
array(
'recipient' => array(
'id' => $chat_id
),
'message' => array(
'attachment' => array(
'type' => 'template',
'payload' => $payload
)
)
)
);
}
/// Get the text of the current message
public function Text() {
return $this->data["entry"][0]["messaging"][0]["message"]["text"];
}
/// Get the userdata who sent the message
public function UserData($chat_id) {
return $this->endpoint($chat_id, array(), false);
}
/// Get the chat_id of the current message
public function ChatID() {
return $this->data['entry'][0]['messaging'][0]['sender']['id'];
}
/// Get the recipient_id of the current message
public function RecipientID() {
return $this->data['entry'][0]['messaging'][0]['recipient']['id'];
}
/// Get raw data
public function RawData() {
return $this->data;
}
/// Get m.me ref type
public function getReferralType() {
return $this->data["entry"][0]["messaging"][0]["referral"]["type"];
}
/// Get m.me ref data
public function getReferralRef() {
return $this->data["entry"][0]["messaging"][0]["referral"]["ref"];
}
/// Get payload
public function getPayload() {
return $this->data["entry"][0]["messaging"][0]["postback"]["payload"];
}
/// Get quickreply payload
public function getQuickReplyPayload() {
return $this->data["entry"][0]["messaging"][0]["message"]["quick_reply"]["payload"];
}
/// Get message timestamp
public function getMessageTimestamp() {
return $this->data["entry"][0]["time"];
}
/// Get the message_id of the current message
public function MessageID() {
return $this->data["entry"][0]["messaging"][0]["message"]["mid"];
}
/// Get the is_echo of the current message
public function getEcho() {
return $this->data["entry"][0]["messaging"][0]["message"]["is_echo"];
}
/// Get the app_id of the current message
public function getAppId() {
return $this->data["entry"][0]["messaging"][0]["message"]["app_id"];
}
private function sendAPIRequest($url, array $content, $post = true, $response = true) {
$ch = curl_init($url);
if ($post) {
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($content));
}
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
if ($response)
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
/// Get the data of the current message
public function getData() {
if (!($this->data)) {
$rawData = file_get_contents("php://input");
return json_decode($rawData, true);
} else {
return $this->data;
}
}
}
// 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" : '');
}
}