Jacek Kowalski
2012-09-17 f93f5587373b27c696d55890eca439b6d22b5f6e
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
<?php
/**
 * Klasa przechowująca dane użytkownika. Całość przypomina mechanizm sesji w PHP.
 */
class BotSession {
    private $PDO;
    
    /**
     * Nazwa modułu, którego zmienne klasa przetwarza
     * @var string max. 40 znaków
     */
    protected $class = '';
    protected $class_empty = TRUE;
    
    private $user;
    
    /**
     * Inicjuje klasę w zależności od użytkownika
     */
    function __construct($user) {
        $this->user = sha1($user);
        $this->user_struct = parse_url($user);
        
        $this->class_empty = FALSE;
    }
    
    private function init() {
        if(strlen($this->class) == 0 && !$this->class_empty) {
            throw new Exception('Przed użyciem $msg->session należy ustawić nazwę modułu za pomocą metody setClass - patrz "Poradnik tworzenia modułów", dział "Klasa BotMessage", rozdział "Pole $session".');
        }
        
        if($this->PDO) {
            return NULL;
        }
        
        if(is_file(BOT_TOPDIR.'/database/'.sha1($this->user).'.sqlite')) {
            $this->PDO = new PDO('sqlite:'.BOT_TOPDIR.'/database/'.sha1($this->user).'.sqlite');
            $this->PDO->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
            $this->PDO->setAttribute(PDO::ATTR_ORACLE_NULLS, PDO::NULL_TO_STRING);
            
            $st = $this->PDO->query('SELECT value FROM data WHERE class=\'\' AND name=\'_version\'');
            if($st->rowCount > 0) {
                $row = $st->fetch(PDO::FETCH_ASSOC);
                $version = (int)$row['value'];
            }
            else
            {
                $version = 0;
            }
            $st->closeCursor();
            
            if($version < 1) {
                $this->PDO->query('UPDATE data SET class=\'kino\' WHERE class=\'\' AND name=\'kino\'');
                $this->PDO->query('INSERT OR REPLACE INTO data (class, name, value) VALUES (\'\', \'_version\', 1)');
                $version = 1;
            }
            
            if($version < 3) {
                $this->PDO->query('DELETE FROM data WHERE class IS NULL AND name=\'user_struct\'');
                $this->PDO->query('INSERT OR REPLACE INTO data (class, name, value) VALUES (\'\', \'_version\', 3)');
                $version = 3;
            }
            
            return;
        }
        
        try {
            $this->PDO = new PDO('sqlite:'.BOT_TOPDIR.'/database/'.sha1($this->user).'.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 data (
                    class VARCHAR(50),
                    name VARCHAR(40) NOT NULL,
                    value TEXT NOT NULL,
                    PRIMARY KEY (
                        class ASC,
                        name ASC
                    )
                )'
            );
            
            $files = glob(BOT_TOPDIR.'/db/*/'.$this->user_struct['user'].'.ggdb');
            if(!$files) {
                return;
            }
            
            $this->PDO->beginTransaction();
            $st = $this->PDO->prepare('INSERT OR REPLACE INTO data (class, name, value) VALUES (?, ?, ?)');
            
            $st->execute(array('', '_version', 2));
            
            foreach($files as $file) {
                $data = unserialize(file_get_contents($file));
                foreach($data as $name => $value) {
                    $st->execute(array($this->class, $name, $value));
                }
            }
            
            $this->PDO->commit();
            
            foreach($files as $file) {
                unlink($file);
            }
        }
        catch(Exception $e) {
            if(file_exists(BOT_TOPDIR.'/database/'.sha1($this->user).'.sqlite')) {
                @unlink(BOT_TOPDIR.'/database/'.sha1($this->user).'.sqlite');
            }
            throw $e;
        }
    }
    
    function __get($name) {
        $this->init();
        
        $st = $this->PDO->prepare('SELECT value FROM data WHERE class=? AND name=?');
        $st->execute(array($this->class, $name));
        $st = $st->fetch(PDO::FETCH_ASSOC);
        
        if(is_array($st)) {
            return unserialize($st['value']);
        }
        else
        {
            return NULL;
        }
    }
    
    function __set($name, $value) {
        $this->init();
        
        $st = $this->PDO->prepare('INSERT OR REPLACE INTO data (class, name, value) VALUES (?, ?, ?)');
        $st->execute(array($this->class, $name, serialize($value)));
    }
    
    function __isset($name) {
        $this->init();
        
        $st = $this->PDO->prepare('SELECT COUNT(name) FROM data WHERE class=? AND name=?');
        $st->execute(array($this->class, $name));
        $st = $st->fetch(PDO::FETCH_NUM);
        
        return ($st[0]>0);
    }
    
    function __unset($name) {
        $this->init();
        
        $st = $this->PDO->prepare('DELETE FROM data WHERE class=? AND name=?');
        $st->execute(array($this->class, $name));
    }
    
    function push($array) {
        $this->PDO->beginTransaction();
        foreach($array as $name => $value) {
            $this->__set($name, $value);
        }
        $this->PDO->commit();
    }
    
    function pull() {
        $this->init();
        
        $st = $this->PDO->prepare('SELECT name, value FROM data WHERE class=?');
        $st->execute(array($this->class));
        $st = $st->fetchAll(PDO::FETCH_ASSOC);
        
        $return = array();
        foreach($st as $row) {
            $return[$row['name']] = $row['value'];
        }
        
        return $return;
    }
    
    function setClass($class) {
        $this->class = $class;
    }
    
    function truncate() {
        $this->init();
        
        $st = $this->PDO->prepare('DELETE FROM data WHERE class=?');
        $st->execute(array($this->class));
    }
}
?>