-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.php
152 lines (126 loc) · 5.08 KB
/
main.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
<?php
/**
* Telegram Bot example per ricerca luoghi (l'esempio è per i musei) nei dintorni tramite piattaforma openstreetmap
* @author Matteo Tempestini
Funzionamento
- invio location
- risposta dai dati openstreetmap
*/
include("Telegram.php");
include("QueryLocation.php");
class mainloop{
public $log=LOG_FILE;
function start($telegram,$update)
{
date_default_timezone_set('Europe/Rome');
$today = date("Y-m-d H:i:s");
// Instances the class
$db = new PDO(DB_NAME);
/* If you need to manually take some parameters
* $result = $telegram->getData();
* $text = $result["message"] ["text"];
* $chat_id = $result["message"] ["chat"]["id"];
*/
$text = $update["message"] ["text"];
$chat_id = $update["message"] ["chat"]["id"];
$user_id=$update["message"]["from"]["id"];
$location=$update["message"]["location"];
$this->shell($telegram,$db,$text,$chat_id,$user_id,$location);
}
//gestisce l'interfaccia utente
function shell($telegram,$db,$text,$chat_id,$user_id,$location)
{
date_default_timezone_set('Europe/Rome');
$today = date("Y-m-d H:i:s");
if ($text == "/start") {
$reply = utf8_encode("Ciao! Questo robot ti indica i musei attorno alla tua posizione.
Invia la tua posizione tramite apposita molletta che trovi in basso a sinistra nella chat.
Tutti i dati sono prelevati da Openstreetmap.Data in licenza ODbL.
© OpenStreetMap contributors
http://www.openstreetmap.org/copyright");
$content = array('chat_id' => $chat_id, 'text' => $reply);
$telegram->sendMessage($content);
$log=$today. ";new chat started;" .$chat_id. "\n";
}
//gestione invio posizione
elseif($location!=null)
{
$this->location_manager($db,$telegram,$user_id,$chat_id,$location);
$log=$today. ";location command sent;" .$chat_id. "\n";
}
//comando errato
else{
$reply = utf8_encode("Hai selezionato un comando non previsto, questo robot ti indica i musei attorno alla tua posizione.
Invia la tua posizione tramite l'apposita molletta che trovi in basso a sinistra nella chat.
Tutti i dati sono prelevati da Openstreetmap. Data in licenza ODbL.
© OpenStreetMap contributors http://www.openstreetmap.org/copyright");
$content = array('chat_id' => $chat_id, 'text' => $reply);
$telegram->sendMessage($content);
$log=$today. ";wrong command sent;" .$chat_id. "\n";
}
//aggiorna tastiera
$this->update_mess($telegram,$chat_id);
//for debug
//$this->location_manager($db,$telegram,$user_id,$chat_id,$location);
//aggiorna log
file_put_contents(LOG_FILE, $log, FILE_APPEND | LOCK_EX);
}
// Crea la tastiera
function update_mess($telegram, $chat_id)
{
$content = array('chat_id' => $chat_id, 'text' => utf8_encode("Invia la tua posizione con la molletta in basso a sinistra per cercare un museo nelle vicinanze"));
$bot_request_message=$telegram->sendMessage($content);
}
function location_manager($db,$telegram,$user_id,$chat_id,$location)
{
date_default_timezone_set('Europe/Rome');
$today = date("Y-m-d H:i:s");
$lon=$location["longitude"];
$lat=$location["latitude"];
//for debug Prato coordinates
//$lon=11.0952;
//$lat=43.8807;
//prelevo dati da OSM sulla base della mia posizione
$osm_data=give_osm_data($lat,$lon);
//rispondo inviando i dati di Openstreetmap
$osm_data_dec = simplexml_load_string($osm_data);
//per ogni nodo prelevo coordinate e nome
foreach ($osm_data_dec->node as $osm_element) {
$nome="";
foreach ($osm_element->tag as $key) {
if ($key['k']=='name')
{
$nome=utf8_encode($key['v']);
$content = array('chat_id' => $chat_id, 'text' =>$nome);
$telegram->sendMessage($content);
}
}
//gestione musei senza il tag nome
if($nome=="")
{
$nome=utf8_encode("Museo non identificato su Openstreetmap");
$content = array('chat_id' => $chat_id, 'text' =>$nome);
$telegram->sendMessage($content);
}
$content_geo = array('chat_id' => $chat_id, 'latitude' =>$osm_element['lat'], 'longitude' =>$osm_element['lon']);
$telegram->sendLocation($content_geo);
}
//crediti dei dati
if((bool)$osm_data_dec->node)
{
$content = array('chat_id' => $chat_id, 'text' => utf8_encode("Questi sono i musei vicini a te (dati forniti tramite OpenStreetMap. Licenza ODbL © OpenStreetMap contributors)"));
$bot_request_message=$telegram->sendMessage($content);
}else
{
$content = array('chat_id' => $chat_id, 'text' => utf8_encode("Non ci sono sono musei vicini, mi spiace! Se ne conosci uno nelle vicinanze mappalo su www.openstreetmap.org"));
$bot_request_message=$telegram->sendMessage($content);
}
//memorizzare nel DB
$obj=json_decode($bot_request_message);
$id=$obj->result;
$id=$id->message_id;
$statement = "INSERT INTO ". DB_TABLE_GEO. " (lat,lng,user,text,bot_request_message) VALUES ('" . $lat . "','" . $lon . "','" . $user_id . "','" . $today . "','". $id ."')";
$db->exec($statement);
}
}
?>