This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDB.php
272 lines (188 loc) · 6.58 KB
/
DB.php
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<?php
class DB {
private static $db = null;
private static $numQueries = 0;
private static $executedQueries = array();
public static function getNumQueries () {
return self::$numQueries;
}
public static function getExecutedQueries () {
return self::$executedQueries;
}
public static function connect ($host, $db, $user, $pass) {
$db = new mysqli($host, $user, $pass, $db);
if ($db->connect_errno) die($db->connect_error);
self::$db = $db;
return true;
}
public static function disconnect () {
if (!self::$db) return false;
self::$db->close();
}
public static function selectDatabase ($name) {
self::$db->select_db($name);
}
public static function createDatabase ($name) {
if (!self::$db) return false;
return self::$db->query(" CREATE DATABASE `{$name}` ");
}
public static function query ($query) {
if (!self::$db) return false;
self::$numQueries++;
self::$executedQueries[] = $query;
return self::$db->query($query);;
}
public static function queryArray ($query, $single = false, $keyField = null, $valField = null) {
if (!self::$db) return false;
$items = array();
$result = self::query($query);
if ($keyField && $valField) {
while ($row = self::getRow($result)) { $items[$row[$keyField]] = $row[$valField]; }
} else if ($keyField) {
while ($row = self::getRow($result)) { $items[$row[$keyField]] = $row; }
} else if ($valField) {
while ($row = self::getRow($result)) { $items[] = $row[$valField]; }
} else {
while ($row = self::getRow($result)) { $items[] = $row; }
}
$result->free();
unset($result);
if ($single && count($items) > 0) {
$first = array_slice($items, 0, 1);
return $first[0];
}
return $items;
}
public static function select ($table, $fields = '*', $match = null, $orderBy = null, $orderDesc = false, $limit = null, $groupBy = null) {
return self::query(self::buildSelect($table, $fields, $match, $orderBy, $orderDesc, $limit, $groupBy));
}
public static function selectArray ($table, $fields = '*', $match = null, $orderBy = null, $orderDesc = false, $limit = null, $groupBy = null) {
return self::queryArray(self::buildSelect($table, $fields, $match, $orderBy, $orderDesc, $limit, $groupBy));
}
public static function insert ($table, $data, $dateField = null, $replace = false, $ignore = false, $updateOnDuplicate = false) {
if (!self::$db) return false;
if ($replace) {
$query = " REPLACE INTO `{$table}` ";
} else {
$query = " INSERT ".($ignore ? "IGNORE" : "")." INTO `{$table}` ";
}
$setQuery = self::buildSetQuery($data, $dateField);
if ($setQuery) {
$query .= " SET " . $setQuery;
if ($updateOnDuplicate) $query .= " ON DUPLICATE KEY UPDATE " . $setQuery;
}
self::query($query);
return self::$db->insert_id;
}
public static function update ($table, $data, $match = null, $dateField = null, &$affectedRows = null) {
if (!self::$db) return false;
if (!is_array($data) || count($data) == 0) {
if ($affectedRows !== null) $affectedRows = 0;
return false;
}
$query = " UPDATE `{$table}` SET ";
$query .= self::buildSetQuery($data, $dateField);
$query .= " WHERE 1 ";
$query .= self::buildMatchQuery($match);
self::query($query);
if ($affectedRows !== null) $affectedRows = self::affectedRows();
return true;
}
public static function delete ($table, $match = null, &$affectedRows = null) {
if (!self::$db) return false;
$query = " DELETE FROM `{$table}` WHERE 1 ";
$query .= self::buildMatchQuery($match);
self::query($query);
if ($affectedRows !== null) $affectedRows = self::affectedRows();
return true;
}
public static function incrementField ($table, $field, $increment = 1, $match = null, &$affectedRows = null) {
if (!self::$db) return false;
$query = " UPDATE `{$table}` SET `{$field}` = `{$field}` + {$increment} WHERE 1 ";
$query .= self::buildMatchQuery($match);
self::query($query);
if ($affectedRows !== null) $affectedRows = self::affectedRows();
return true;
}
public static function numRows ($table, $match = null) {
if (!self::$db) return false;
$query = " SELECT COUNT(*) AS rows FROM `{$table}` WHERE 1 ";
$query .= self::buildMatchQuery($match);
$result = self::query($query);
if ($row = self::getRow($result)) return $row['rows'];
return 0;
}
public static function rowsInQuery($query) {
if (!self::$db) return false;
$result = self::query($query);
return $result->num_rows;
}
public static function getRow (&$resource) {
return $resource->fetch_assoc();
}
public static function getObject (&$resource) {
return $resource->fetch_object();
}
public static function dataSeek (&$resource, $row = 0) {
$numRows = self::rowsInResource($resource);
if ($numRows == 0 || $row < 0 || $row >= $numRows) return false;
return $resource->data_seek($row);
}
public static function rowsInResource(&$resource) {
return $resource->num_rows;
}
public static function affectedRows() {
if (!self::$db) return false;
return self::$db->affected_rows;
}
public static function quote($val, $includeQuotes = true) {
if (!self::$db) return false;
if (get_magic_quotes_gpc()) $val = stripslashes($val);
if (strtolower($val) == 'null') {
$val = " NULL ";
}else if ($includeQuotes) {
$val = " '" . self::$db->real_escape_string($val) . "' ";
}else{
$val = self::$db->real_escape_string($val) ;
}
return $val;
}
private static function buildMatchQuery ($match) {
$query = "";
if (is_array($match)) {
foreach ($match as $col => $val) {
if (strpos($col, '?') !== false) {
$query .= " AND " . str_replace('?', self::quote($val), $col);
}else{
$query .= " AND $col = " . self::quote($val);
}
}
}
return $query;
}
private static function buildSetQuery ($data, $dateField = null) {
$query = "";
if (is_array($data) || $dateField) {
if (is_array($data)) {
foreach ($data as $field => $val) {
$query .= " `{$field}` = ".self::quote($val).", ";
}
}
if ($dateField && !isset($data[$dateField])) {
$query .= " `{$dateField}` = NOW() ";
} else {
$query = substr($query, 0, strlen($query) - 2);
}
}
return $query;
}
private static function buildSelect ($table, $fields = '*', $match = null, $orderBy = null, $orderDesc = false, $limit = null, $groupBy = null) {
$query = " SELECT {$fields} FROM `{$table}` WHERE 1 ";
$query .= self::buildMatchQuery($match);
if ($groupBy) $query .= " GROUP BY {$groupBy} ";
if ($orderBy) $query .= " ORDER BY {$orderBy} ";
if ($orderDesc) $query .= " DESC ";
if ($limit) $query .= " LIMIT {$limit} ";
return $query;
}
}