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