Jacek Kowalski
2012-08-29 2fb07e33bc07ad435731e43cf59a961627570fcd
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
<?php
class api_yrno_parse {
    protected $xml;
    protected $dane;
    
    var $symbols = array(
        1 => 'Słonecznie',
        2 => 'Lekkie zachmurzenie',
        3 => 'Częściowe zachmurzenie',
        4 => 'Zachmurzenie',
        5 => 'Lekki deszcz z przejaśnieniami',
        6 => 'Lekki deszcz i burze',
        7 => 'Lekki deszcz ze śniegiem',
        8 => 'Śnieg',
        9 => 'Lekki deszcz',
        10 => 'Deszcz',
        11 => 'Burze z deszczem',
        12 => 'Deszcz ze śniegiem',
        13 => 'Śnieg',
        14 => 'Burze ze śniegiem',
        15 => 'Mgły',
        16 => 1,
        17 => 2,
        18 => 5,
        19 => 8,
        20 => 'Deszcz ze śniegiem, burze, możliwe przejaśnienia',
        21 => 'Burze ze śniegiem, możliwe przejaśnienia',
        22 => 'Lekki deszcz i burze',
        23 => 'Deszcz ze śniegiem, burze'
    );
    
    var $wind = array(
        'N' => 'północny',
        'NW' => 'północno-zachodni',
        'W' => 'zachodni',
        'SW' => 'południowo-zachodni',
        'S' => 'południowy',
        'SE' => 'południowo-wschodni',
        'E' => 'wschodni',
        'NE' => 'północno-wschodni',
    );
    
    function __construct($xml) {
        libxml_use_internal_errors();
        $this->xml = simplexml_load_string($xml);
        libxml_clear_errors();
        
        if(!$this->xml) {
            throw new Exception('Niepoprawny format danych meteorologicznych!');
        }
    }
    
    function mktime($time) {
        return strtotime(substr($time, 0, -1));
    }
    
    function wind($dir) {
        if(isset($this->wind[$dir])) {
            return $this->wind[$dir];
        }
        else
        {
            return '';
        }
    }
    
    function parseForecast() {
        $this->dane = array(
            '0h' => array(),
            '3h' => array(),
            '6h' => array(),
        );
        
        foreach($this->xml->product->time as $time) {
            $to = $this->mktime((string)$time->attributes()->to);
            $from = $this->mktime((string)$time->attributes()->from);
            
            $time = $time->location;
            
            if($to == $from) {
                $this->dane['0h'][$to] = array(
                    'temp' => (string)$time->temperature->attributes()->value,
                    'wind_speed' => (string)$time->windSpeed->attributes()->mps,
                    'wind_dir' => (string)$time->windDirection->attributes()->name,
                    'humidity' => (string)$time->humidity->attributes()->value,
                    'pressure' => (string)$time->pressure->attributes()->value,
                );
            }
            elseif($to-$from > 0) {
                if($to-$from > 14400) {
                    $put = '6h';
                }
                else
                {
                    $put = '3h';
                }
                
                $icon = (int)$time->symbol->attributes()->number;
                if(is_int($this->symbols[$icon])) {
                    $icon = $this->symbols[$icon];
                }
                
                $this->dane[$put][$to] = array(
                    'from' => $from,
                    'to' => $to,
                    'icon' => $icon
                );
            }
        }
    }
    
    function getCurrentIcon() {
        $now = time();
        foreach($this->dane['3h'] as $value) {
            if($value['from'] <= $now && $now < $value['to']) {
                return $value['icon'];
            }
        }
        
        return NULL;
    }
    
    function getCurrentWeather() {
        $dist = PHP_INT_MAX;
        $current = NULL;
        foreach($this->dane['0h'] as $time => $value) {
            if(abs($time - time()) < $dist) {
                $dist = abs($time - time());
                $current = $value;
            }
            else
            {
                break;
            }
        }
        
        return $current;
    }
    
    function getDaypartWeather($timestamp) {
        $start = strtotime('6:00', $timestamp);
        $dayend = strtotime('19:30', $timestamp);
        $end = $start + 22*3600;
        
        $wind = $temp = array(
            'day' => array(),
            'night' => array(),
        );
        
        foreach($this->dane['0h'] as $time => $value) {
            $part = NULL;
            if($start <= $time && $time < $dayend) {
                $part = 'day';
            }
            elseif($dayend < $time && $time <= $end) {
                $part = 'night';
            }
            elseif($end <= $time) {
                break;
            }
            
            if($part !== NULL) {
                if(!isset($temp[$part]['from']) || $value['temp'] < $temp[$part]['from']) {
                    $temp[$part]['from'] = $value['temp'];
                }
                if(!isset($temp[$part]['to']) || $value['temp'] > $temp[$part]['to']) {
                    $temp[$part]['to'] = $value['temp'];
                }
                
                if(!isset($wind[$part]['from']) || $value['wind_speed'] < $wind[$part]['from']) {
                    $wind[$part]['from'] = $value['wind_speed'];
                }
                if(!isset($wind[$part]['to']) || $value['wind_speed'] > $wind[$part]['to']) {
                    $wind[$part]['to'] = $value['wind_speed'];
                }
            }
        }
        
        if($temp['day'] == array() || $wind['day'] == array()) {
            unset($temp['day']);
            unset($wind['day']);
        }
        
        return array($temp, $wind);
    }
    
    function getDaypartIcon($timestamp) {
        $start = strtotime('6:00', $timestamp);
        $end = strtotime('24:00', $timestamp);
        
        $return = array();
        foreach($this->dane['3h'] as $time => $value) {
            if($start <= $value['from'] && $value['to'] <= $end) {
                $return[] = $value['icon'];
            }
            elseif($end <= $value['from']) {
                break;
            }
        }
        
        return $return;
    }
}
 
function yrno_weather($lat, $lon) {
    $down = new DownloadHelper('http://api.yr.no/weatherapi/locationforecastlts/1.1/?lat='.urlencode($lat).';lon='.urlencode($lon));
    $down->setopt(CURLOPT_USERAGENT, 'BotGG/'.main::VERSION_NUM.' WeatherModule/1.0 (http://bot.jacekk.net/weather.html)');
    try {
        $data = $down->exec();
        $data = new api_yrno_parse($data);
        $data->parseForecast();
    }
    catch(Exception $e) {
        $down->cacheFor(600);
        return FALSE;
    }
    
    $down->cacheFor(7200);
    return $data;
}
?>