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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<?php
class BotAPIGGHTTPException extends Exception {
    private $httpcode;
    private $content;
    
    function __construct($msg, $httpcode, $content) {
        $this->httpcode = $httpcode;
        $this->content = $content;
        parent::__construct($msg.' Błąd '.$httpcode);
    }
    
    function __get($name) {
        return $this->$name;
    }
}
class BotAPIGGXMLException extends Exception {
    private $content;
    
    function __construct($msg, $content) {
        $this->content = $content;
        parent::__construct($msg);
    }
    
    function __get($name) {
        return $this->$name;
    }
}
 
class BotAPIGGReplyException extends Exception {
    private $xml;
    
    function __construct($msg, SimpleXMLElement $xml) {
        $this->xml = $xml;
        parent::__construct($msg);
    }
    
    function __get($name) {
        return $this->$name;
    }
    
    function __toString() {
        return $this->getMessage().' Błąd '.((string)$this->xml->status).': '.((string)$this->xml->errorMsg);
    }
}
 
class BotAPIGG extends config {
    private static $token;
    
    const STATUS_DOSTEPNY = 2;
    const STATUS_DOSTEPNY_DESC = 4;
    const STATUS_ONLINE = 2;
    const STATUS_ONLINE_DESC = 4;
    
    const STATUS_ZAJETY = 3;
    const STATUS_ZAJETY_DESC = 5;
    const STATUS_AWAY = 3;
    const STATUS_AWAY_DESC = 5;
    
    const STATUS_NIE_PRZESZKADZAC = 33;
    const STATUS_NIE_PRZESZKADZAC_DESC = 34;
    const STATUS_DND = 33;
    const STATUS_DND_DESC = 34;
    
    const STATUS_POROZMAWIAJ = 23;
    const STATUS_POROZMAWIAJ_DESC = 24;
    const STATUS_CHAT = 23;
    const STATUS_CHAT_DESC = 24;
    
    const STATUS_NIEWIDOCZNY = 20;
    const STATUS_NIEWIDOCZNY_DESC = 22;
    const STATUS_INVISIBLE = 20;
    const STATUS_INVISIBLE_DESC = 22;
    
    private function httpQuery($address, $curlopts = array(), $useToken = TRUE, $parseXML = TRUE) {
        if(!is_array($curlopts)) {
            $curlopts = array();
        }
        
        if($useToken) {
            if(!isset($curlopts[CURLOPT_HTTPHEADER]) || !is_array($curlopts[CURLOPT_HTTPHEADER])) {
                $curlopts[CURLOPT_HTTPHEADER] = array();
            }
            
            $token = $this->getToken();
            
            $curlopts[CURLOPT_HTTPHEADER][] = 'Token: '.$token['token'];
        }
        
        $dane = curl_init($address);
        $curlopts[CURLOPT_RETURNTRANSFER] = TRUE;
        $curlopts[CURLOPT_USERAGENT] = 'Bot Gadu-Gadu/'.main::VERSION.' (http://jacekk.info/botgg)';
        $curlopts[CURLOPT_SSL_CIPHER_LIST] = 'HIGH:-MD5:-aNULL:-DES';
        $curlopts[CURLOPT_SSL_VERIFYPEER] = TRUE;
        $curlopts[CURLOPT_SSL_VERIFYHOST] = 2;
        $curlopts[CURLOPT_CAPATH] = BOT_TOPDIR.'/data/ca-certificates/';
        curl_setopt_array($dane, $curlopts);
        $tok2 = $tok = curl_exec($dane);
        $info = curl_getinfo($dane);
        
        if($parseXML) {
            try {
                libxml_use_internal_errors(TRUE);
                $tok = new SimpleXMLElement($tok);
            }
            catch(Exception $e) {
                throw new BotAPIGGXMLException('Otrzymano błędny XML od botmastera.', $tok2);
            }
            
            if(!$tok) {
                if($info['http_code'] != 200) {
                    throw new BotAPIGGHTTPException('Nie udało się wykonać zapytania HTTP.', $info['http_code'], $tok2);
                }
                else
                {
                    throw new BotAPIGGXMLException('Otrzymano błędny XML od botmastera.', $tok2);
                }
            }
        }
        else
        {
            if($info['http_code'] != 200) {
                throw new BotAPIGGHTTPException('Nie udało się wykonać zapytania HTTP.', $info['http_code'], $tok2);
            }
        }
        
        return $tok;
    }
    
    function getToken($force = FALSE) {
        if($force || self::$token === NULL) {
            $auth = $this->APIs['Gadu-Gadu'];
            
            $tok = $this->httpQuery('https://botapi.gadu-gadu.pl/botmaster/getToken/'.$auth['numer'],  array(
                CURLOPT_USERPWD => $auth['login'].':'.$auth['haslo'],
                CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
            ), FALSE);
            
            if($tok->errorMsg) {
                throw new BotAPIGGReplyException('Pobieranie tokena nie powiodło się.', $tok);
            }
            
            self::$token = array('token' => (string)$tok->token, 'host' => (string)$tok->server, 'port' => (int)$tok->port);
        }
        
        return self::$token;
    }
    
    function setStatus($status, $desc = '') {
        $auth = $this->APIs['Gadu-Gadu'];
        $token = $this->getToken();
        
        $tok = $this->httpQuery('https://'.$token['host'].'/setStatus/'.$auth['numer'], array(
            CURLOPT_POST => TRUE,
            CURLOPT_POSTFIELDS => http_build_query(array(
                'status' => $status,
                'desc' => $desc,
            ), '', '&'),
        ));
        
        if( (string)$tok->status != '0') {
            throw new BotAPIGGReplyException('Ustawianie statusu nie powiodło się.', $tok);
        }
    }
    
    function setUrl($url) {
        $auth = $this->APIs['Gadu-Gadu'];
        
        $tok = $this->httpQuery('https://botapi.gadu-gadu.pl/botmaster/setUrl/'.$auth['numer'], array(
            CURLOPT_POST => TRUE,
            CURLOPT_POSTFIELDS => $url,
        ));
        
        if( (string)$tok->status != '0') {
            throw new BotAPIGGReplyException('Ustawianie adresu URL bota nie powiodło się.', $tok);
        }
        
        return $tok;
    }
    
    function getImage($hash) {
        $auth = $this->APIs['Gadu-Gadu'];
        $token = $this->getToken();
        
        $tok = $this->httpQuery('https://botapi.gadu-gadu.pl/botmaster/getImage/'.$auth['numer'], array(
            CURLOPT_POST => TRUE,
            CURLOPT_POSTFIELDS => http_build_query(array('hash' => $hash), '', '&'),
        ), TRUE, FALSE);
        
        return $tok;
    }
    
    function existsImage($hash) {
        $auth = $this->APIs['Gadu-Gadu'];
        $token = $this->getToken();
        
        $tok = $this->httpQuery('https://botapi.gadu-gadu.pl/botmaster/existsImage/'.$auth['numer'], array(
            CURLOPT_POST => TRUE,
            CURLOPT_POSTFIELDS => http_build_query(array('hash' => $hash), '', '&'),
        ));
        
        if( (string)$tok->status != '0') {
            return FALSE;
        }
        
        return TRUE;
    }
    
    function putImage($path) {
        $auth = $this->APIs['Gadu-Gadu'];
        $token = $this->getToken();
        
        $tok = $this->httpQuery('https://botapi.gadu-gadu.pl/botmaster/putImage/'.$auth['numer'], array(
            CURLOPT_HTTPHEADER => array(
                'Content-Type: image/x-any',
                'Expect: ',
            ),
            CURLOPT_POST => TRUE,
            CURLOPT_POSTFIELDS => file_get_contents($path),
        ));
        
        if( (string)$tok->status != '0') {
            throw new BotAPIGGReplyException('Przesyłanie obrazka do botmastera nie powiodło się.', $tok);
        }
        
        return (string)$tok->hash;
    }
    
    /**
     * Wysyła wiadomość do podanych użytkowników
     * @param array $toURL Lista adresatów wiadomości w postaci: array('Gadu-Gadu://NUMER@gadu-gadu.pl', ...)
     * @param BotMsg $msg Wiadomość do wysłania
     * @param array $params Parametry przekazywane funkcji. Aktualnie dostępne:
     * array( 'SendToOffline' => (bool)TRUE/FALSE )
     */
    function sendMessage($toURL, BotMsg $msg, $params = array()) {
        if(is_string($toURL)) {
            $toURL = array($toURL);
        }
        
        if(!is_array($toURL)) {
            throw new Exception('Lista adresatów przekazywanych do funkcji BotAPIGG::sendMessage() winna być tablicą.');
        }
        
        $to = array();
        foreach($toURL as $url) {
            $url = parse_url($url);
            if($url === FALSE) {
                continue;
            }
            
            if($url['scheme'] != 'Gadu-Gadu') {
                continue;
            }
            
            if($url['user'] == '' || !ctype_digit($url['user'])) {
                throw new Exception('Nieznany użytkownik sieci Gadu-Gadu, któremu należy dostarczyć wiadomość.');
            }
            
            $to[] = $url['user'];
        }
        
        if(empty($to)) {
            return NULL;
        }
        
        $msg = new BotMsgGG($msg);
        
        $auth = $this->APIs['Gadu-Gadu'];
        $token = $this->getToken();
        
        $headers = array('Content-Type: application/x-www-form-urlencoded');
        
        if($params['SendToOffline'] == FALSE) {
            $headers[] = 'Send-to-offline: 0';
        }
        
        while(!empty($to)) {
            $to_part = implode(',', array_splice($to, -5000));
            
            $tok = $this->httpQuery('https://'.$token['host'].'/sendMessage/'.$auth['numer'], array(
                CURLOPT_HTTPHEADER => $headers,
                CURLOPT_POST => TRUE,
                CURLOPT_POSTFIELDS => array(
                    'to' => $to_part,
                    'msg' => $msg->getGG(FALSE),
                ),
            ));
            
            // Brak obrazka w cache BotMastera...
            if((string)$tok->status == '18') {
                $tok = $this->httpQuery('https://'.$token['host'].'/sendMessage/'.$auth['numer'], array(
                    CURLOPT_HTTPHEADER => $headers,
                    CURLOPT_POST => TRUE,
                    CURLOPT_POSTFIELDS => array(
                        'to' => $to_part,
                        'msg' => $msg->getGG(TRUE),
                    ),
                ));
            }
            
            if((string)$tok->status != '0') {
                throw new BotAPIGGReplyException('Problemy przy wysyłaniu wiadomości do sieci Gadu-Gadu.', $tok);
            }
        }
        
        return TRUE;
    }
    
    /**
     * Pobiera dane użytkownika z katalogu publicznego.
     * @param string|BotUser Numer użytkownika
     * @return array|false Tablica z danymi.
     */
    function getPublicData($number) {
        if($number instanceof BotUser) {
            if($number->network != 'gadu-gadu.pl') {
                return FALSE;
            }
            
            $number = $number->uid;
        }
        
        if(!ctype_digit($number)) {
            throw new Exception('Numer użytkownika przekazany do funkcji BotAPIGG::getPublicData() jest niepoprawny.');
        }
        
        try {
            $data = file_get_contents('http://api.gadu-gadu.pl/users/'.$number.'.xml');
            if(!$data) {
                throw new Exception('Nie udało się pobrać danych użytkownika z katalogu publicznego.');
            }
        }
        catch(Exception $e) {
            throw new Exception('Nie udało się pobrać danych użytkownika z katalogu publicznego.');
        }
        
        libxml_use_internal_errors();
        $data = simplexml_load_string($data);
        libxml_clear_errors();
        
        if(!$data) {
            throw new Exception('Dane użytkownika otrzymane z API Gadu-Gadu mają niepoprawny format.');
        }
        
        if(!$data) {
            throw new Exception('Dane użytkownika otrzymane z API Gadu-Gadu mają niepoprawny format.');
        }
        
        
        return (array)$data->users->user;
    }
}
?>