Jacek Kowalski
2012-08-29 befc460353c67201fd1322b5421edd3349ee730e
commit | author | age
2fb07e 1 <?php
JK 2 require_once(dirname(__FILE__).'/api_geonames.php');
3 require_once(dirname(__FILE__).'/api_yrno.php');
4
48c64f 5 class bot_pogoda_module implements BotModule {
2fb07e 6     function pogoda($msg, $params) {
JK 7         $arg = trim($msg->args);
8         
9         $out = new BotMsg();
10         
11         
12         if(empty($arg)) {
13             $msg->session->setClass('pogoda');
14             
15             if(isset($msg->session->miasto) && !isset($msg->session->geo)) {
16                 if(strlen($msg->session->miasto) > 0) {
17                     $out->a('<p>Wymagane przekonwertowanie danych... Wywoływanie komendy <i>miasto '.htmlspecialchars($msg->session->miasto).'</i>...</p>');
18                     
19                     $out->a($this->miasto($msg, $msg->session->miasto));
20                     $out->a('<p></p>');
21                 }
22                 else
23                 {
24                     unset($msg->session->miasto);
25                 }
26             }
27             
28             if(!isset($msg->session->miasto)) {
29                 try {
30                     $api = new BotAPIGG();
31                     $data = $api->getPublicData($msg->user);
32                     if(is_array($data) && isset($data['city'])) {
33                         $arg = trim($data['city']);
34                     }
35                     unset($data, $api);
36                 }
37                 catch(Exception $e) {
38                 }
39                 
40                 if(empty($arg)) {
41                     $arg = 'Warszawa';
42                     $forced = TRUE;
43                 }
44                 
45                 $out->a('<p>Nie ustawiono miasta (pomoc - wpisz: help miasto) - '.(!$forced ? 'na podstawie danych z katalogu publicznego ' : '').'wybieram miasto '.$arg.'</p>'."\n\n");
46                 
47                 $loc = new api_geonames();
48                 $loc = $loc->search($arg);
49                 
50                 if($loc === FALSE) {
51                     return new BotMsg('Nie udało się pobrać danych o podanym miejscu - spróbuj ponownie za około 10 minut.');
52                 }
53                 elseif($loc === NULL) {
54                     return new BotMsg('Dla podanego miejsca nie udało się uzyskać współrzędnych geograficznych - spróbuj wpisać inną nazwę.');
55                 }
56             }
57             else
58             {
59                 $loc = array(
60                     'name' => $msg->session->miasto,
61                     'countryName' => $msg->session->kraj,
62                     'coutryCode' => $msg->session->cc,
63                     'lat' => $msg->session->geo['lat'],
64                     'lng' => $msg->session->geo['lon']
65                 );
66             }
67         }
68         
69         $api = yrno_weather($loc['lat'], $loc['lng']);
70         if($api == FALSE) {
71             return new BotMsg('Nie udało się pobrać danych o pogodzie - spróbuj ponownie za około 10 minut.');
72         }
73         
9b2b4a 74         $out->a('<p>Pogoda dla '.htmlspecialchars($loc['name']).', '.htmlspecialchars($loc['countryName']).'.</p>'."\n\n");
2fb07e 75         
6d0060 76         $icon = (int)$api->getCurrentIcon();
2fb07e 77         $weather = $api->getCurrentWeather();
JK 78         
79         $out->a('<p><b>Teraz</b><br />'."\n"
befc46 80             . '<img src="./data/pogoda/'.$icon.'.png" /><br />'."\n"
6d0060 81             . api_yrno_parse::$symbols[$icon].'<br />'."\n"
2fb07e 82             . 'Temp.: '.htmlspecialchars($weather['temp']).'°C<br />'."\n"
befc46 83             . 'Wiatr: '.htmlspecialchars($weather['wind_speed']).' km/h, '.api_yrno_parse::wind($weather['wind_dir']).'<br />'."\n"
2fb07e 84             . 'Ciśnienie: '.htmlspecialchars($weather['pressure']).' hPa</p>'."\n\n");
JK 85         
86         $when = time();
87         if($when < strtotime('19:00')) {
88             $out->a($this->getHTMLforWeather('Dziś', $api->getDaypartIcon($when), $api->getDaypartWeather($when)));
89         }
90         
91         $when = strtotime('+1 day', $when);
92         $out->a($this->getHTMLforWeather('Jutro', $api->getDaypartIcon($when), $api->getDaypartWeather($when)));
93         $when = strtotime('+1 day', $when);
94         $out->a($this->getHTMLforWeather('Pojutrze', $api->getDaypartIcon($when), $api->getDaypartWeather($when)));
95         
96         $out->a('<p>Dane lokalizacyjne pochodzą z serwisu GeoNames.<br />'."\n"
97             . 'Dane pogodowe pochodzą z Norweskiego Instytutu Meteorologicznego.</p>');
98         
99         return $out;
100     }
101     
9b2b4a 102     function getHTMLforRange($data) {
JK 103         return htmlspecialchars($data['from'].($data['from'] != $data['to'] ? '-'.$data['to'] : ''));
104     }
105     
2fb07e 106     function getHTMLforWeather($name, $icons, $weather) {
JK 107         $html = '<p><b>'.$name.'</b><br />'."\n";
6d0060 108         $desc = array();
JK 109         $curr = 0;
2fb07e 110         foreach($icons as $icon) {
6d0060 111             $icon = (int)$icon;
JK 112             if(is_file('./data/pogoda/'.$icon.'.png')) {
113                 $html .= '<img src="./data/pogoda/'.$icon.'.png" alt="" /> ';
114                 if($icon != $curr) {
115                     $desc[] = api_yrno_parse::$symbols[$icon];
116                     $curr = $icon;
117                 }
2fb07e 118             }
JK 119         }
120         $html .= '<br />'."\n"
6d0060 121             . implode(' / ', $desc).'<br />'."\n"
9b2b4a 122             . 'Temp.: '.$this->getHTMLforRange($weather['temp']['day']).'°C (w nocy: '.$this->getHTMLforRange($weather['temp']['night']).'°C)<br />'."\n"
JK 123             . 'Wiatr: '.$this->getHTMLforRange($weather['wind']['day']).' km/h (w nocy: '.$this->getHTMLforRange($weather['wind']['night']).' km/h)</p>'."\n\n";
2fb07e 124         
JK 125         return $html;
126     }
127     
128     function miasto($msg, $params) {
129         $msg->session->setClass('pogoda');
130         
131         if(strlen($params) > 0) {
132             $arg = trim($params);
133         }
134         else
135         {
136             $arg = trim($msg->args);
137         }
138         
139         if(empty($arg)) {
140             if(isset($this->session->miasto)) {
141                 return new BotMsg('Aktualnie ustawione miejsce to: '.htmlspecialchars($this->session->miasto).', '.htmlspecialchars($this->session->countryName));
142             }
143             
144             try {
145                 $api = new BotAPIGG();
146                 $dane = $api->getPublicData($msg->user);
147                 if(!isset($arg['city']) || empty($arg['city'])) {
148                     throw new Exception('Brak miasta w danych w katalogu publicznym.');
149                 }
150                 
151                 $arg = trim($arg['city']);
152             }
153             catch(Exception $e) {
154                 return new BotMsg('Nie podano wymaganego argumentu <i>miasto</i>.');
155             }
156             
157             $out->a('<p>Na podstawie danych z katalogu publicznego wybieram miasto: '.htmlspecialchars($arg).'</p>'."\n\n");
158         }
159         else
160         {
161             $out = new BotMsg();
162         }
163         
164         $api = new api_geonames();
165         $dane = $api->search($arg);
166         
167         if($dane === FALSE) {
168             return new BotMsg('Wystąpił błąd przy wyszukiwaniu miasta. Spróbuj ponownie później.');
169         }
170         elseif($dane === NULL) {
171             return new BotMsg('Nie udało się zlokalizować podanego miejsca. Spróbuj wpisać inną nazwę.');
172         }
173         
174         $msg->session->miasto = $dane['name'];
175         $msg->session->kraj = $dane['countryName'];
176         $msg->session->cc = $dane['countryCode'];
177         $msg->session->geo = array('lat' => $dane['lat'], 'lon' => $dane['lng']);
178         
179         $out->a('<p>Ustawiono miejsce: '.htmlspecialchars($this->session->miasto).', '.htmlspecialchars($this->session->countryName).'</p>');
180         
181         return $out;
182     }
183 }
184 ?>