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
<?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
     */
    var $class;
    
    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 = '';
    }
    
    private function init() {
        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);
            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');
            
            $this->PDO->beginTransaction();
            $st = $this->PDO->prepare('INSERT OR REPLACE INTO data (class, name, value) VALUES (?, ?, ?)');
            
            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) {
            @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 truncate() {
        $this->init();
        
        $st = $this->PDO->prepare('DELETE FROM data WHERE class=?');
        $st->execute(array($this->class));
    }
}
?>