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
<?php
class BotMessageGG extends BotMessage {
    function __construct() {
        if(!ctype_digit($_GET['from'])) {
            $_GET['from'] = 'invalid';
        }
        
        if(!ctype_digit($_GET['to'])) {
            $_GET['to'] = 'invalid';
        }
        
        $uid = 'Gadu-Gadu://'.$_GET['from'].'@gadu-gadu.pl';
        
        $this->userAlt = new BotUser($uid);
        $this->user = new BotUser($uid.'/'.$_GET['to']);
        $this->session = new BotSession($uid);
        $this->setText(file_get_contents('php://input'));
    }
}
?>