-
Notifications
You must be signed in to change notification settings - Fork 1
/
webhook.php
48 lines (42 loc) · 1.2 KB
/
webhook.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
<?php
/*Gestisce l'interazione con gli utenti:
* - Nuova iscrizione
* - Eliminazione iscrizione
*/
require_once 'FacebookBot.php';
require_once 'DbManager.php';
require_once 'config.php';
$bot = new FacebookBot();
$bot->run();
$messages = $bot->getReceivedMessages();
$userManager = new DbManager();
try
{
foreach ($messages as $message)
{
if(isset($message->senderId))
{
$respMessage = 'Messaggio non valido. Invia STOP se non vuoi più ricevere aggiornamenti.';
$recipientId = $message->senderId;
if(isset($message->text) && ($message->text==='STOP'))
{
$userManager->deleteUser($message->senderId);
$respMessage = "La tua iscrizione è stata annullata.";
}
elseif ((isset($message->text) && ($message->text==='START')) ||
isset($message->postback) && ($message->postback === NUOVA_ISCRIZIONE))
{
$userManager->addUser($message->senderId);
$respMessage = "Iscrizione effettuata. Inizierai a ricevere aggiornamenti appena saranno disponibili.";
}
$bot->sendTextMessage($recipientId, $respMessage);
}
}
}
catch(Exception $exc)
{
error_log($exc->getMessage()."\n");
return false;
}
return true;
?>