-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDb.php
397 lines (364 loc) · 9.14 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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
<?php
namespace core;
use core\Error;
/**
* Small SQL abstractions.
*/
trait DbOrm
{
/**
* Insert entry into database.
* WARN: Please be careful to supply a $table from a safe source!
*/
public function insert($table, array $keyValue, $return_idx=true)
{
$values = [];
$fields = [];
foreach (array_keys($keyValue) as $key) {
$fields[] = "`$key`";
$values[] = "?";
}
$query = sprintf(
"INSERT INTO `%s` (%s) VALUES(%s)",
$table,
implode(", ", $fields),
implode(", ", $values)
);
$stmt = $this->query($query, array_values($keyValue));
if ($stmt->rowCount() != 1) {
user_error("Insert did not affect the DB?");
}
if ($return_idx === false) {
return -1;
}
$idx = $this->db->lastInsertId();
if (! is_numeric($idx) || $idx === "0") {
user_error("Failed reading insert id");
}
return $idx;
}
/**
* Experimental function.
* Please update select..insert or update instead of insert ignore
* if you have no racing condition situations as this func surpresses
* duplicatekey/insert issues when they occur!
*/
public function insertIgnore($table, array $keyValue, $return_idx=true) {
$values = [];
$fields = [];
foreach (array_keys($keyValue) as $key) {
$fields[] = "`$key`";
$values[] = "?";
}
$query = sprintf(
"INSERT IGNORE INTO `%s` (%s) VALUES(%s)",
$table,
implode(", ", $fields),
implode(", ", $values)
);
$stmt = $this->query($query, array_values($keyValue));
if ($return_idx === false) {
return -1;
}
$idx = $this->db->lastInsertId();
if (! is_numeric($idx) || $idx === "0") {
user_error("Failed reading insert id");
}
return $idx;
}
/**
* Insert on new else update
*/
public function insertUpdate($table, array $keyValue, array $onUpdate)
{
$values = [];
$fields = [];
$update = [];
foreach (array_keys($keyValue) as $key) {
$fields[] = "`$key`";
$values[] = "?";
}
foreach (array_keys($onUpdate) as $key) {
$update[] = "`$key` = ?";
}
$query = sprintf(
"INSERT INTO `%s` (%s) VALUES(%s) ON DUPLICATE KEY UPDATE %s",
$table,
implode(", ", $fields),
implode(", ", $values),
implode(",", $update)
);
$stmt = $this->query($query, array_merge(array_values($keyValue), array_values($onUpdate)));
if ($stmt->rowCount() > 2) {
user_error(sprintf("Invalid rowCount(%d) for query=%s", $stmt->rowCount(), $query));
}
}
public function update($table, array $values, array $where, $row_count = 1)
{
$updates = [];
$wheres = [];
foreach (array_keys($values) as $key) {
$updates[] = sprintf("`%s` = ?", $key);
}
foreach ($where as $key => $val) {
if ($val === null) {
$wheres[] = sprintf("`%s` IS ?", $key);
} else {
$wheres[] = sprintf("`%s` = ?", $key);
}
}
$query = sprintf(
"UPDATE `%s` SET %s WHERE %s %s",
$table,
implode(", ", $updates),
implode("AND ", $wheres),
$row_count !== null ? "LIMIT $row_count" : ""
);
$args = array_merge(
array_values($values),
array_values($where)
);
$stmt = $this->query(
$query,
$args
);
if ($row_count !== null) {
if ($stmt->rowCount() != $row_count) {
user_error(sprintf(
"db.update.affected expect=%s,affect=%s for query=%s args=%s",
$row_count,
$stmt->rowCount(),
$query,
implode(", ", $args)
));
}
}
return $stmt->rowCount();
}
public function delete($table, array $where)
{
$depend = [];
foreach (array_keys($where) as $key) {
$depend[] = "`$key` = ?";
}
$sql = "DELETE FROM `$table` WHERE " . implode(" AND ", $depend);
$stmt = $this->query($sql, array_values($where));
return $stmt->rowCount();
}
}
/**
* Database result abstraction in array's.
*
* Why yet another DB class?
* Simplicity! I hated how many LOC (Lines of Code)
* all available libs introduced.
*
* Why instantiate?
* Because multiple DBs is a realistic use-case.
*/
class Db
{
use DbOrm;
/** \PDO */
private $db;
/**
* Create a new persistant conn to the DB.
*/
public function __construct($dsn, $user, $pass, array $attrs = [])
{
$this->db = new \PDO($dsn, $user, $pass, [\PDO::ATTR_TIMEOUT => 5]);
$this->db->setAttribute(
\PDO::ATTR_ERRMODE,
\PDO::ERRMODE_EXCEPTION
);
foreach ($attrs as $attr => $val) {
if (! $this->db->setAttribute($attr, $val)) user_error("PDO::setAttr($attr) failed");
}
$db = explode(":", $dsn)[0];
if ($db === "mysql") {
$this->db->query("SET SESSION sql_mode = 'TRADITIONAL,NO_AUTO_VALUE_ON_ZERO,NO_BACKSLASH_ESCAPES'"); // Strict input mode
$this->db->query("SET SESSION max_statement_time=3"); // Stop query after N-sec
$this->db->query("SET time_zone = '+00:00'"); // Enforce UTC on DB level
} elseif ($db === "sqlite") {
// sqlite
$this->db->query("PRAGMA strict=ON");
} else {
user_error("Unsupported DB: $db");
}
}
/**
* Close the DB-conn (supressing any errors like timeouts)
*/
public function close()
{
// Supress broken pipe error on destroy
Error::mute();
$this->db = null;
Error::unmute();
}
/**
* Run query.
*/
private function query($query, array $args)
{
foreach ($args as $n => $arg) {
if (is_array($arg)) {
error_log(sprintf("SQL arg(%s=%s) invalid for query=%s", $n, print_r($arg, true), $query));
}
}
try {
$stmt = $this->db->prepare($query);
$ok = $stmt->execute($args);
if (! $ok) {
user_error("SQL failed query=$query");
}
} catch (\PDOException $e) {
$msg = str_replace("\n", "", $e->getMessage());
$args = str_replace("\n", "", print_r($args, true));
user_error(sprintf(
"SQL reason=[%s] query=[%s] and args=[%s]",
$msg,
$query,
$args
));
}
return $stmt;
}
/**
* Run query.
*/
public function exec($query, array $args = [])
{
return $this->query($query, $args);
}
/**
* Run query and get ALL data in associative array.
* @param string $key Use fieldname in resultset to create map
* @param bool $unique Force key-entries to be unique (else error)
* @return array map[key]=value
*/
public function getAllMap($key, $query, array $args = [], $unique=true)
{
$output = [];
$stmt = $this->query($query, $args);
while ($row = $stmt->fetch(\PDO::FETCH_ASSOC, \PDO::FETCH_ORI_NEXT)) {
if ($unique && isset($output[ $row[$key] ])) {
user_error("getAllMap(duplicate key=$key) for sql=$query");
}
$output[ $row[$key] ] = $row;
}
$stmt->closeCursor();
return $output;
}
/**
* Run query and get ALL data in associative array.
* @return array|bool FALSE on failure
*/
public function getAll($query, array $args = [])
{
$stmt = $this->query($query, $args);
return $stmt->fetchAll(\PDO::FETCH_ASSOC);
}
/**
* Run query and get first row in associative array.
* @return array|bool FALSE on failure
*/
public function getRow($query, array $args = [])
{
$stmt = $this->query($query, $args);
$row = $stmt->fetch(\PDO::FETCH_ASSOC);
$stmt->closeCursor();
if (! is_array($row) || count($row) === 0) {
return false;
}
return $row;
}
/**
* Run query and get single value.
* @return mixed|bool FALSE on failure
*/
public function getCell($query, array $args = [])
{
$stmt = $this->query($query, $args);
return $stmt->fetchColumn();
}
/**
* Get columns as 1d array
* @return array Empty array on failure
*/
public function getCol($query, array $args = [])
{
$out = [];
foreach ($this->getAll($query, $args) as $row) {
$row = array_values($row);
$out[] = $row[0];
}
return $out;
}
/**
* Run query and get results as keys for quick lookups (hashmap kind-of)
* @return array map[key]=1
*/
public function getColMap($key, $query, array $args = [], $unique=true)
{
$output = [];
$stmt = $this->query($query, $args);
while ($row = $stmt->fetch(\PDO::FETCH_ASSOC, \PDO::FETCH_ORI_NEXT)) {
if ($unique && isset($output[ $row[$key] ])) {
user_error("getAllMap(duplicate key=$key) for sql=$query");
}
$output[ $row[$key] ] = 1;
}
$stmt->closeCursor();
return $output;
}
/**
* Begin new transaction.
* @return DbTxn
*/
public function txn()
{
if ($this->db->beginTransaction() === false) {
user_error("db: Failed starting txn");
}
return new DbTxn($this->db);
}
}
/**
* Transaction abstraction.
*/
class DbTxn
{
private $db;
private $done;
public $allow_double = false;
public function __construct($db)
{
$this->db = $db;
}
public function __destruct()
{
if (! $this->done) {
error_log("WARN: Transaction never finished!");
$this->rollback();
}
}
/**
* Save (Commit) changes in transaction to DB.
*/
public function commit()
{
if ($this->allow_double && $this->done) return;
$this->db->commit();
$this->done = true;
}
/**
* Cancel (rollback) changes in transaction.
*/
public function rollback()
{
if ($this->allow_double && $this->done) return;
$this->db->rollback();
$this->done = true;
}
}