Jacek Kowalski
2017-08-28 bc710e890d99f522d4adb0fa9bff5b0504a5a036
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
<?php
class ksiazki_cache {
    static $cache = array();
    
    static function cache_get($kod) {
        $kod = (int)$kod;
        
        if(!isset(self::$cache[(int)$kod])) {
            self::cache_update($kod);
        }
        
        return self::$cache[(int)$kod];
    }
    
    static function cache_add($kod, &$dane) {
        self::$cache[(int)$kod] = $dane;
    }
    
    static function cache_addarray(&$dane) {
        foreach($dane as &$r) {
            self::cache_add($r['id'], $r);
        }
    }
    
    static function cache_clear($id=NULL) {
        if(is_null($id)) {
            self::$cache = array();
        }
        else
        {
            unset(self::$cache[(int)$id]);
        }
    }
    
    static function cache_update($kod) {
        $dane = db2::escape_data(sql::fetchone(sql::query('SELECT `ksiazki`.*, `pozycz`.`od`, `pozycz`.`kto` FROM `ksiazki` LEFT OUTER JOIN `pozycz` ON `pozycz`.`id`=`ksiazki`.`id` WHERE `ksiazki`.`id`='.sql::escape($kod))));
        self::cache_add($kod, $dane);
    }
}
 
class ksiazki extends ksiazki_cache {
    static function okladka($KOD, $ISBN) {
        return okladki::znajdz($KOD, $ISBN, 'covers');
    }
    
    static function okladka_big($KOD, $ISBN) {
        return okladki::znajdz($KOD, $ISBN, 'covers_big');
    }
    
    static function exists($kod) {
        $info = self::cache_get($kod);
        if(isset($info['id'])) {
            return TRUE;
        }
        else
        {
            return FALSE;
        }
    }
    
    static function szukaj_KOD($kod) {
        validate::KOD($kod, TRUE);
        
        return self::cache_get($kod);
    }
    
    static function szukaj_ISBN($ISBN) {
        validate::EAN($ISBN);
        
        return db2::get('ksiazki', '*', array('ISBN' => $ISBN), NULL, 10);
    }
    
    static function szukaj_ISSN($ISSN) {
        validate::EAN($ISSN);
        
        return db2::get('ksiazki', '*', array('ISSN' => $ISSN), NULL, 10);
    }
    
    static function szukaj_info($dane, $order=NULL, $start=NULL, $limit=30) {
        $allow = array('id', 'tytul', 'autor', 'wydawnictwo', 'miejsce', 'rok', 'wydanie', 'wycofana');
        $replace = array('tytul' => 'tytul~~', 'autor' => 'autor~~', 'wydawnictwo' => 'wydawnictwo~~');
        
        $where = array();
        
        foreach($dane as $key => $value) {
            if(!in_array($key, $allow) OR $value==='') {
                continue;
            }
            
            if($replace[$key]) {
                $key = $replace[$key];
            }
            
            $where[$key] = $value;
        }
        
        if($where['id']) {
            validate::$kod = TRUE;
            switch(validate::type($where['id'])) {
                case 'ISBN':
                    $where['ISBN'] = $where['id'];
                    unset($where['id']);
                break;
                case 'ISSN':
                    $where['ISSN'] = $where['id'];
                    unset($where['id']);
                break;
                case 'MSC':
                    $where['regal'] = $where['id'];
                    if($dane['polka']) {
                        $where['polka'] = $dane['polka'];
                    }
                    if($dane['rzad']) {
                        $where['rzad'] = $dane['rzad'];
                    }
                    unset($where['id']);
                break;
            }
            validate::$kod = FALSE;
        }
        
        if(!$where['regal']) {
            unset($where['polka']);
            unset($where['rzad']);
        }
        
        if($where['id']) {
            $ret[] = self::szukaj_KOD($where['id']);
            $num = count($ret);
        }
        else
        {
            if($dane['do']) {
                $num = db2::num('pozycz', 'id');
                if($num == 0) {
                    $ret = array();
                }
                else
                {
                    $ret = db2::get(array('pozycz', array('J', 'ksiazki', 'USING', 'id')), '*', NULL, $order, $start, $limit);
                }
            }
            else
            {
                $num = db2::num('ksiazki', 'id', $where);
                if($num == 0) {
                    $ret = array();
                }
                else
                {
                    $where = db2::__combine_where($where, TRUE);
                    $ret = db2::escape_data(sql::fetch(sql::query('SELECT `ksiazki`.*, `pozycz`.`od`, `pozycz`.`kto`'.(db2::revelance() ? ', '.db2::$revelance : '').' FROM `ksiazki` LEFT OUTER JOIN `pozycz` ON `pozycz`.`id`=`ksiazki`.`id` '.$where.db2::__combine_order($order, TRUE).db2::__combine_limit($start, $limit))));
                }
            }
            
            self::cache_addarray($ret);
        }
        
        return array($num, $ret, db2::revelance());
    }
}
?>