Jacek Kowalski
2016-02-12 ddfb6ac0d4ebfebc66489f1822c6457cd0ca0a18
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
<?php
class rss implements module {
    static function register_cmd() {
        return array(
            'r' => 'cmd_rss',
            'rss' => 'cmd_rss',
            'kanal' => 'cmd_rss',
            'kanaly' => 'cmd_rss',
            'news' => 'cmd_rss',
            'newsy' => 'cmd_rss',
            'wiad' => 'cmd_rss',
            'wiadomosc' => 'cmd_rss',
            'wiadomosci' => 'cmd_rss',
            
            'kanal' => 'cmd_set',
            'kanaly' => 'cmd_set',
            
            'rss2' => 'cmd_rssex',
            'exrss' => 'cmd_rssex',
            'rssex' => 'cmd_rssex',
        );
    }
    
    static function help($cmd=NULL) {
        if($cmd === NULL) {
            GGapi::putRichText('rss ', TRUE);
            GGapi::putRichText('[kanał]', FALSE, TRUE);
            GGapi::putRichText("\n".'   Wiadomości z podanego kanału'."\n");
            GGapi::putRichText('kanal ', TRUE);
            GGapi::putRichText('kanał', FALSE, TRUE);
            GGapi::putRichText("\n".'   Ustawia domyślny kanał dla komendy rss'."\n\n");
        }
        elseif($cmd == 'kanal' || $cmd == 'kanaly') {
            GGapi::putRichText('kanal ', TRUE);
            GGapi::putRichText('kanał', FALSE, TRUE);
            GGapi::putRichText("\n".'   Zapisuje domyślny ');
            GGapi::putRichText('kanał', FALSE, TRUE);
            GGapi::putRichText(' RSS dla użytkownika. Dostępne kanały: '."\n".'- '.implode("\n".'- ', self::channels()));
        }
        else
        {
            GGapi::putRichText('rss ', TRUE);
            GGapi::putRichText('[kanał]', FALSE, TRUE);
            GGapi::putRichText(' (alias: ');
            GGapi::putRichText('r, news, wiadomosci', TRUE);
            GGapi::putRichText(')'."\n".'   Podaje ostatnie wiadomości z kanału RSS ');
            GGapi::putRichText('kanał', FALSE, TRUE);
            GGapi::putRichText('. Dostępne kanały: '."\n".'- '.implode("\n".'- ', self::channels()));
        }
    }
    
    private static function channels() {
        $file = file('./data/rss/channels.list');
        $return = array();
        foreach($file as $chan) {
            $chan = trim($chan);
            if(empty($chan) || substr($chan, 0, 1)=='#') {
                continue;
            }
            
            $parts = preg_split('/\t[\40\t]*/', $chan, 4);
            for($i=0; $i<4; $i++) {
                $parts[$i] = trim($parts[$i]);
            }
            
            if($aliases) {
                $return[$parts[1]] = $parts[1];
                
                if($parts[2] == 'NULL') continue;
                
                $alias = explode(',', $parts[2]);
                foreach($alias as $val) {
                    $return[trim($val)] = $parts[1];
                }
            }
            else
            {
                $return[] = $parts[1];
            }
        }
        
        return $return;
    }
    
    private static function channel($name, $verbose=FALSE) {
        $file = file('./data/rss/channels.list');
        
        foreach($file as $chan) {
            $chan = trim($chan);
            if(empty($chan) || substr($chan, 0, 1)=='#') {
                continue;
            }
            
            $parts = preg_split('/\t[\40\t]*/', $chan, 4);
            for($i=1; $i<3; $i++) {
                $parts[$i] = trim($parts[$i]);
            }
            
            if($parts[1] == $name) {
                if($verbose) {
                    return $parts;
                }
                else
                {
                    return $parts[1];
                }
            }
            elseif($parts[2] == 'NULL') {
                continue;
            }
            else
            {
                $alias = explode(',', $parts[2]);
                foreach($alias as $val) {
                    if($val == $name) {
                        if($verbose) {
                            return $parts;
                        }
                        else
                        {
                            return $parts[1];
                        }
                    }
                }
            }
        }
        
        return FALSE;
    }
    
    static function p($text, $bash=FALSE) {
        $text = trim($text);
        $replace = array(
            "\n" => ' ',
            "\r" => ' ',
            '–' => '-',
            '&#8211;' => '-',
            '&#39;' => '"',
            '&#8222;' => '"',
            '&#8221;' => '"',
        );
        $text = strtr($text, $replace);
        $text = html_entity_decode($text);
        $replace = array(
            '<br />' => "\n",
            '<br/>' => "\n",
            '<br>' => "\n",
            '  ' => ' ',
        );
        $text = strtr($text, $replace);
        if(!$bash) {
            $text = strip_tags($text);
        }
        $text = str_replace(array('&copy;', '&#169;'), '(C)', $text);
        return $text;
    }
    
    static function cmd_rss($name, $arg) {
        $arg = self::channel(funcs::utfToAscii($arg));
        if(!$arg) {
            $arg = database::get($_GET['from'], 'rss', 'kanal');
            if(!$arg) {
                $arg = self::channel('DEFAULT');
            }
        }
        
        $rss = @simplexml_load_file('./data/rss/'.$arg.'.rss');
        if(!$rss) {
            GGapi::putText('Błąd przy przetwarzaniu kanału, przepraszamy.');
            return FALSE;
        }
        
        if($rss->entry) {
            GGapi::putRichText(self::p($rss->title), TRUE);
            
            foreach($rss->entry as $item) {
                GGapi::putRichText("\n\n".self::p($item->title), TRUE);
                GGapi::putRichText("\n".self::p($item->summary, ($arg=='bash'))."\n".self::p($item->link['href']));
            
                if(GGapi::getLength() > 1700) {
                    return;
                }
            }
        }
        else
        {
            GGapi::putRichText(self::p($rss->channel->title), TRUE);
            if($rss->channel->copyright) {
                GGapi::putRichText("\n".self::p($rss->channel->copyright));
            }
            
            foreach($rss->channel->item as $item) {
                GGapi::putRichText("\n\n".self::p($item->title), TRUE);
                GGapi::putRichText("\n".self::p($item->description, ($arg=='bash'))."\n".self::p($item->link));
            
                if(GGapi::getLength() > 1700) {
                    return;
                }
            }
        }
    }
    
    static function cmd_set($name, $arg) {
        $arg = self::channel(funcs::utfToAscii($arg), TRUE);
        if(!$arg) {
            GGapi::putText('Wybrany kanał nie istnieje! Dostępne kanały: '."\n".'- '.implode("\n".'- ', self::channels()));
        }
        else
        {
            database::add($_GET['from'], 'rss', 'kanal', $arg[1]);
            GGapi::putText('Kanał '.$arg[3].' został ustawiony jako domyślny. Teraz zamiast:'."\n".'rss '.$arg[1]."\n".'możesz wpisać samo'."\n".'rss');
        }
    }
    
    static function testurl($url) {
        $url = parse_url($url);
        $schemas = array('http', 'https', 'ftp');
        if(empty($url['scheme'])) {
            return array(-1, 'Podaj pełny adres do kanału RSS (z http://)!');
        }
        if(!in_array(strtolower($url['scheme']), $schemas)) {
            return array(-1, 'Niedozowolona metoda dostępu (dostępne: http, https, ftp)');
        }
        
        $hosts = gethostbynamel($url['host']);
        if(!is_array($hosts)) return array(-2, 'Podany host nie istnieje');
        foreach($hosts as $ip) {
            if(substr($ip, 0, 4)=='127.' || substr($ip, 0, 3)=='10.' || substr($ip, 0, 2)=='0.' || substr($ip, 0, 3) > 223) {
                return array(-2, 'Niedozwolony numer IP hosta');
            }
        }
        
        $res = @simplexml_load_file($url['scheme'].'://'.$url['user'].':'.$url['pass'].'@'.$url['host'].'/'.ltrim($url['path'], '/'));
        if(!$res) {
            return array(-3, 'Nie udało się załadować podanego kanału RSS');
        }
        
        return $res;
    }
    
    static function cmd_rssex($name, $arg) {
        if(!$arg) {
            $arg = database::get($_GET['from'], 'rssex', 'kanal');
            if(!$arg) {
                GGapi::putText('Podaj pełny adres kanału (z http://) lub ustaw domyślny funkcją ');
                GGapi::putRichText('kanal2', TRUE);
                GGapi::putRichText('!'."\n\n");
                GGapi::putRichText('Przykład:', FALSE, FALSE, TRUE);
                GGapi::putRichText("\n".'rss2 http://wiadomosci.onet.pl/2,kategoria.rss');
                return FALSE;
            }
        }
        
        $rss = self::testurl($arg);
        if(is_array($rss)) {
            GGapi::putText('Nie udało się pobrać wybranego kanału RSS. Błąd: '.$rss[1]);
            return FALSE;
        }
        elseif(!is_object($rss)) {
            GGapi::putText('Wystąpił nieznany błąd przy pobieraniu danych. Przepraszamy.');
        }
        
        GGapi::putRichText(self::p($rss->channel->title), TRUE);
        if($rss->channel->copyright) {
            GGapi::putRichText("\n".self::p($rss->channel->copyright));
        }
        
        foreach($rss->channel->item as $item) {
            GGapi::putRichText("\n\n".self::p($item->title), TRUE);
            GGapi::putRichText("\n".self::p($item->description, ($arg=='bash'))."\n".self::p($item->link));
        
            if(GGapi::getLength() > 1700) {
                return;
            }
        }
    }
    
    static function cmd_setex($name, $arg) {
        if(!$arg) {
            GGapi::putText('Podaj pełny adres kanału (z http://)!'."\n\n");
            GGapi::putRichText('Przykład:', FALSE, FALSE, TRUE);
            GGapi::putRichText("\n".'kanal2 http://wiadomosci.onet.pl/2,kategoria.rss');
        }
        else
        {
            $ret = self::testurl($arg);
            if(is_object($ret)) {
                database::add($_GET['from'], 'rssex', 'kanal', $arg[1]);
                GGapi::putText('Kanał '.$arg.' został ustawiony jako domyślny. Teraz zamiast:'."\n".'rss '.$arg."\n".'możesz wpisać samo'."\n".'rss');
            }
            elseif(is_array($ret)) {
                GGapi::putText('Nie udało się pobrać wybranego kanału RSS. Błąd: '.$ret[1]);
            }
            else
            {
                GGapi::putText('Wystąpił nieznany błąd przy pobieraniu danych. Przepraszamy.');
            }
        }
    }
}
?>