Jacek Kowalski
2012-06-23 8bd4d9f5065a5b94dc83f0ed6859ed0d93c75d84
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
<?php
class BotAPIGGHTTPException extends Exception {
    private $httpcode;
    private $content;
    
    function __construct($msg, $httpcode, $content) {
        $this->httpcode = $httpcode;
        $this->content = $content;
        parent::__construct($msg);
    }
    
    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 $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, $useToken = TRUE, $curlopts = array()) {
        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);
        
        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);
            }
        }
        
        return $tok;
    }
    
    function getToken($force = FALSE) {
        if($force || !$this->token) {
            $auth = $this->APIs['Gadu-Gadu'];
            
            $tok = $this->httpQuery('https://botapi.gadu-gadu.pl/botmaster/getToken/'.$auth['numer'], FALSE, array(
                CURLOPT_USERPWD => $auth['login'].':'.$auth['haslo'],
                CURLOPT_HTTPAUTH => CURLAUTH_BASIC,
            ));
            
            if($tok->errorMsg) {
                throw new BotAPIGGReplyException('Pobieranie tokena nie powiodło się.', $tok);
            }
            
            $this->token = array('token' => (string)$tok->token, 'host' => (string)$tok->server, 'port' => (int)$tok->port);
        }
        
        return $this->token;
    }
    
    function setStatus($status, $desc = '') {
        $auth = $this->APIs['Gadu-Gadu'];
        $token = $this->getToken();
        
        $tok = $this->httpQuery('https://'.$token['host'].'/setStatus/'.$auth['numer'], FALSE, array(
            CURLOPT_HTTPHEADER => array('Content-Type: application/x-www-form-urlencoded'),
            CURLOPT_POST => TRUE,
            CURLOPT_POSTFIELDS => 'token='.urlencode($token['token']).'&status='.urlencode($status).'&desc='.urlencode($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'], TRUE, 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;
    }
    
    /**
     * 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()) {
        $to = array();
        foreach($toURL as $url) {
            $url = parse_url($url);
            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'], FALSE, array(
                CURLOPT_HTTPHEADER => $headers,
                CURLOPT_POST => TRUE,
                CURLOPT_POSTFIELDS => 'token='.urlencode($token['token']).'&to='.urlencode($to_part).'&msg='.urlencode($msg->getGG(FALSE)),
            ));
            
            if((string)$tok->status == '18') {
                $tok = $this->httpQuery('https://'.$token['host'].'/sendMessage/'.$auth['numer'], FALSE, array(
                    CURLOPT_HTTPHEADER => $headers,
                    CURLOPT_POST => TRUE,
                    CURLOPT_POSTFIELDS => 'token='.urlencode($token['token']).'&to='.urlencode($to_part).'&msg='.urlencode($msg->getGG(FALSE)),
                ));
            }
            
            if((string)$tok->status != '0') {
                throw new BotAPIGGReplyException('Problemy przy wysyłaniu wiadomości do sieci Gadu-Gadu.', $tok);
            }
        }
        
        return TRUE;
    }
}
?>