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
<?php
/**
 * Klasa obsługująca żądania wysyłane do bota
 */
class BotPull {
    private $PDO;
    
    private function init() {
        if(is_file(BOT_TOPDIR.'/cache/functions.sqlite')) {
            $this->PDO = new PDO('sqlite:'.BOT_TOPDIR.'/cache/functions.sqlite');
            $this->PDO->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
            $this->PDO->setAttribute(PDO::ATTR_ORACLE_NULLS, PDO::NULL_TO_STRING);
            return;
        }
        
        $functions = array();
        
        $modules = glob(BOT_TOPDIR.'/modules/*', GLOB_ONLYDIR);
        foreach($modules as $dir) {
            if(!is_file($dir.'/init.php')) {
                continue;
            }
            
            $class = include_once($dir.'/init.php');
            if(!$class || !class_exists($class, FALSE)) {
                continue;
            }
            
            $init = new $class;
            if(!($init instanceof BotModuleInit)) {
                continue;
            }
            
            $row = $init->register();
            if(!is_array($row)) {
                $row = array();
            }
            
            foreach($row as $name => &$value) {
                if(!is_array($value)) {
                    unset($row[$name]);
                    continue;
                }
                
                foreach($value as &$val) {
                    $val['dir'] = '/modules/'.basename($dir).'/';
                    $val['init'] = $class;
                    $val['file'] = $val['file'];
                }
                
                $name2 = funcs::utfToAscii(strtolower($name));
                if($name != $name2) {
                    if(isset($row[$name2])) {
                        $row[$name2] = array_merge_recursive($row[$name2], $row[$name]);
                    }
                    else
                    {
                        $row[$name2] = $row[$name];
                    }
                    
                    unset($row[$name]);
                }
            }
            
            $functions = array_merge_recursive($functions, $row);
        }
        
        try {
            $this->PDO = new PDO('sqlite:'.BOT_TOPDIR.'/cache/functions.sqlite');
            $this->PDO->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
            $this->PDO->setAttribute(PDO::ATTR_ORACLE_NULLS, PDO::NULL_TO_STRING);
            
            $this->PDO->query('CREATE TABLE functions (
                name VARCHAR(50),
                priority INT,
                dir VARCHAR(255),
                init VARCHAR(255),
                file VARCHAR(255),
                class VARCHAR(255),
                method VARCHAR(255),
                params TEXT,
                PRIMARY KEY (
                    name ASC,
                    priority ASC
                )
            )');
            
            $this->PDO->query('CREATE INDEX file ON functions (dir, file)');
            
            $st = $this->PDO->prepare('INSERT INTO functions (name, priority, dir, init, file, class, method, params) VALUES (?, ?, ?, ?, ?, ?, ?, ?)');
            
            $this->PDO->beginTransaction();
            foreach($functions as $name => $funcs) {
                $name = funcs::utfToAscii(strtolower($name));
                foreach($funcs as $priority => $func) {
                    if(!isset($func['params'])) {
                        $func['params'] = NULL;
                    }
                    
                    $st->execute(array($name, $priority, $func['dir'], $func['init'], $func['file'], $func['class'], $func['method'], serialize($func['params'])));
                }
            }
            $this->PDO->commit();
        }
        catch(Exception $e) {
            @unlink(BOT_TOPDIR.'/cache/functions.sqlite');
            throw $e;
        }
    }
    
    /**
     * Przetwarza wiadomość do bota
     * @param BotMessage $msg Wiadomość
     */
    function __construct(BotMessage $msg) {
        try {
            $this->init();
            
            $st = $this->PDO->prepare('SELECT dir, file, class, method, params FROM functions WHERE name=? ORDER BY priority ASC');
            $st->execute(array($msg->command));
            $data1 = $st->fetchAll();
            $st->execute(array('*'));
            $data2 = $st->fetchAll();
            
            $data = array_merge($data1, $data2);
            unset($data1, $data2);
            
            $return = NULL;
            
            foreach($data as $func) {
                if(!is_file(BOT_TOPDIR.$func['dir'].$func['file'])) {
                    $st = $this->PDO->prepare('DELETE FROM functions WHERE dir=? AND file=?');
                    $st->excecute(array($func['dir'], $func['file']));
                    continue;
                }
                
                require_once(BOT_TOPDIR.$func['dir'].$func['file']);
                
                $class = new $func['class'];
                $return = $class->$func['method']($msg, unserialize($func['params']));
                
                if($return instanceof BotMsg) {
                    break;
                }
            }
            
            if(!($return instanceof BotMsg)) {
                $return = new BotMsg('Nieznane polecenie. Wpisz <b>help</b> by uzyskać listę komend.');
            }
        }
        catch(Exception $e) {
            $return = new BotMsg('Wystąpił błąd podczas przetwarzania poleceń. Komunikat:<br />'.nl2br($e));
        }
        
        try {
            $class = substr(get_class($msg), strlen('BotMessage'));
            if(!$class) {
                throw new Exception('Wiadomość dostarczona za pomocą nieznanego interfejsu.');
            }
            
            $class = 'BotMsg'.$class;
            
            try {
                $class = new $class($return);
            }
            catch(Exception $e) {
                $class = new $class(new BotMsg('Wystąpił błąd podczas przetwarzania poleceń. Komunikat:<br />'.nl2br($e)));
            }
            
            $class->sendPullResponse();
        }
        catch(Exception $e) {
            echo 'Wystąpił błąd podczas przetwarzania poleceń. Komunikat: '.$e;
        }
    }
}
?>