-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDb.php
594 lines (551 loc) · 14.6 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
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
<?php
/*
Distributed under the MIT license, http://www.opensource.org/licenses/mit-license.php
Copyright (c) 2011 Diego Vilariño http://www.ensegundoplano.com/
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/**
* Database php/MySqli Class
*
* @author diego
* @uses $var = Db::getInstance();
*/
class Db {
/**
* Singleton instace
* @var object
*/
static private $instance = null;
/**
* Config vars
*/
private $databaseHost = DATABASEHOST;
private $databaseUser = DATABASEUSERNAME;
private $databasePassword = DATABASEPASSWORD;
private $databaseName = DATABASENAME;
private $charset = DATABASECHARSET;
/**
* Mysqli conection
*/
private $mysqli = 0;
/**
* Affected Rows on Query
* @var int
*/
private $affectedRows;
/**
* Query results
* @var array
*/
private $databaseResults;
/**
* Last Insert identifier
* @var int
*/
private $lastId;
/**
* Array of sql transactions
* @var type
*/
private $transResults = array();
/**
* Check if is transaction
* @var bool
*/
private $onTransaction = false;
/**
* Thread id conection
*/
private $thread_id = null;
/**
* Query string
* @var string
*/
private $query = '';
/**
* Config var
* @var array
*/
static private $config = null;
/**
* Private constructor to prevent instace
*
* $config array to set custom config with this indexes:
*
* $config['host'];
* $config['user'];
* $config['password'];
* $config['database'];
* $config['charset'];
*
* @param array $config
*/
private function __construct($config) {
if ($config) {
if (isset($config['host'])) {
$this->databaseHost = $config['host'];
}
if (isset($config['user'])) {
$this->databaseUser = $config['user'];
}
if (isset($config['password'])) {
$this->databasePassword = $config['password'];
}
if (isset($config['database'])) {
$this->databaseName = $config['database'];
}
if (isset($config['charset'])) {
$this->charset = $config['charset'];
}
}
$this->connect();
}
/**
* Singleton Instance
*
* @return object
*/
static public function getInstance($config = null) {
if (self::$config !== $config) {
self::$instance = null;
self::$config = $config;
}
if (self::$instance == null) {
$c = __CLASS__;
self::$instance = new $c($config);
}
return self::$instance;
}
/**
* Connet with mysql
*/
private function connect() {
$this->mysqli = new mysqli($this->databaseHost,
$this->databaseUser,
$this->databasePassword,
$this->databaseName);
if (mysqli_connect_errno()) {
$this->mysqli = 0;
trigger_error(mysqli_connect_error());
}
if (!$this->mysqli->set_charset($this->charset)) {
trigger_error("Error character set", E_USER_ERROR);
}
$this->thread_id = $this->mysqli->thread_id;
}
/**
* Set query
*
* @param string $query
* @return bool return false if empty query
*/
private function initQuery($query) {
$this->affectedRows = 0;
$this->databaseResults = Array();
$this->lastId = null;
$this->query = $query;
if (strlen(trim($this->query)) < 0) {
trigger_error("Empty Query", E_USER_ERROR);
return false;
}
if ($this->mysqli === 0) {
$this->connect();
}
}
/**
* Select data from database
*
* @param string $query
* @param string $type (object return an array of objects / array return an array of arrays )
* @return array
*/
public function select($query, $type = 'object') {
$this->initQuery($query);
if ($result = $this->mysqli->query($this->query)) {
$this->affectedRows = $result->num_rows;
if ($type == 'object') {
$this->databaseResults = $this->getDataObject($result);
} elseif ($type == 'array') {
$this->databaseResults = $this->getDataArray($result);
} else {
trigger_error("Error select type", E_USER_ERROR);
exit;
}
$result->free();
}
return $this->databaseResults;
}
/**
* Execute query (insert/update) on database
*
* @param string $query
* @return bool (true if ok or false if fail)
*/
public function execute($query) {
$this->initQuery($query);
if ($this->mysqli->query($this->query) === true) {
$this->affectedRows = $this->mysqli->affected_rows;
$this->lastId = $this->mysqli->insert_id;
$result = true;
} else {
$result = false;
}
if ($this->onTransaction) {
$this->transResults[] = $result;
}
return $result;
}
/**
* Generate and execute multiple insert query
* Can recive unique object or array, or an array of objects or arrays
* Generate sql with data keys/properties
*
* @param string $table (database table name)
* @param array/object $data
* @return bool (true if ok, false if fail)
*/
public function insert($table, $data) {
$insert_data = array();
if (is_object($data)) {
$insert_data[0] = $data;
} else {
if (is_array($data)) {
if (isset($data[0]) && is_array($data[0])) {
$total = count($data);
$akeys = array_keys($data[0]);
for ($i = 0; $i < $total; $i++) {
$o = new stdClass();
foreach ($akeys as $key) {
$o->$key = $data[$i][$key];
}
$insert_data[] = $o;
$o = null;
}
} elseif (isset($data[0]) && is_object($data[0])) {
$insert_data = $data;
} else {
$o = new stdClass();
$akeys = array_keys($data);
foreach ($akeys as $key) {
$o->$key = $data[$key];
}
$insert_data[] = $o;
}
}
}
$akeys = array_keys(get_object_vars($insert_data[0]));
$total_keys = count($akeys);
$sql = "INSERT INTO " . $table . " (";
$i = 0;
foreach ($akeys as $key) {
$sql .= "`$key`";
if ($total_keys > $i + 1) {
$sql .= ',';
}
$i++;
}
$sql .= ") VALUES (";
$total_data = count($insert_data);
for ($i = 0; $i < $total_data; $i++) {
$j = 0;
foreach ($akeys as $key) {
if ($insert_data[$i]->$key !== null) {
$value = $this->mysqli->real_escape_string($insert_data[$i]->$key);
$value = "'$value'";
} else {
$value = 'NULL';
}
$sql .= $value;
if ($total_keys > $j + 1) {
$sql .= ',';
}
$j++;
}
if ($total_data > $i + 1) {
$sql .= '),(';
}
}
$sql .= ");";
return $this->execute($sql);
}
/**
* Update record/s on database
* Pass key = true for massive update
*
* @param string $table
* @param array/object $data
* @param string/true $key
*/
public function update($table, $data, $key = null) {
if ($key == null) {
echo 'Define update key value, this prevent unexpected massive updates';
exit;
}
if (!is_object($data) && !is_array($data)) {
trigger_error("Non valid update data ", E_USER_ERROR);
exit;
} else {
if (is_array($data)) {
$o = new stdClass();
$akeys = array_keys($data);
foreach ($akeys as $akey) {
$o->$akey = $data[$akey];
}
$data = $o;
}
}
$akeys = array_keys(get_object_vars($data));
$total_keys = count($akeys);
if ($key !== true) {
$total_keys = $total_keys - 1;
}
$sql = 'UPDATE ' . $table . ' SET ';
$i = 0;
foreach ($akeys as $akey) {
if ($akey !== $key) {
if($data->$akey==null){
$sql .= "`$akey` = NULL";
}else{
$sql .= "`$akey` = '" . $this->mysqli->real_escape_string($data->$akey) . "'";
}
if ($total_keys > $i + 1) {
$sql .= ' , ';
}
$i++;
}
}
if ($key !== true) {
$sql .= " WHERE `$key` = '" . $data->$key . "'";
}
$sql .= ' ;';
return $this->execute($sql);
}
/**
* Executes multiple queries
* Returns an array of objects with rows and result properties
* result property can be an array of arrays or array of objects, change with $type param
*
* @param array $querys
* @param string $type ('object','array')
* @return array
*/
public function multiQuery($querys, $type = 'object') {
if (!is_array($querys)) {
trigger_error("Need an array of querys", E_USER_ERROR);
exit;
}
$sql = '';
foreach ($querys as $query) {
$sql .= $query;
}
$this->query = $sql;
$data = array();
$i = 0;
if ($this->mysqli->multi_query($sql)) {
do {
if ($result = $this->mysqli->store_result()) {
$this->affectedRows = $result->num_rows;
if ($type == 'object') {
$this->databaseResults = $this->getDataObject($result);
} elseif ($type == 'array') {
$this->databaseResults = $this->getDataArray($result);
} else {
trigger_error("Error select type", E_USER_ERROR);
exit;
}
$dataObj = new stdClass();
$dataObj->rows = $this->affectedRows;
$dataObj->results = $this->databaseResults;
$data[$i] = $dataObj;
$dataObj = null;
$result->free();
}
$i++;
} while ($this->mysqli->next_result());
}
if ($this->mysqli->errno) {
echo "Stopped while retrieving result: " . $this->mysqli->error . " ";
}
return $data;
}
/**
* Return query affected rows
* @return int
*/
public function getAffectedRows() {
return $this->affectedRows;
}
/**
* Alias of getAffectedRows()
* @return int
*/
public function total() {
return $this->getAffectedRows();
}
/**
* Return Last Insert identifier
* @return int
*/
public function getLastId() {
return $this->lastId;
}
/**
* Return array of arrays
*
* @param mysqlresult $result
* @return array
*/
private function getDataArray($result) {
$data = array();
$i = 0;
while ($row = $result->fetch_assoc()) {
foreach ($row as $key => $value) {
$data[$i][$key] = stripslashes($value);
}
$i++;
}
return $data;
}
/**
* Return array of objects
*
* @param mysqlresult $result
* @return array
*/
private function getDataObject($result) {
$data = array();
$i = 0;
while ($row = $result->fetch_object()) {
$data[$i] = new stdClass();
foreach ($row as $key => $value) {
$data[$i]->$key = stripslashes($value);
}
$i++;
}
return $data;
}
/**
* Begin transaction
* Run querys with execute, update or insert methods
*
* Example: (Use with InnoDB Tables)
* $db = Db::getInstance();
* $db->transStart();
* $db->execute("INSERT INTO `table` (`id` ,`number`) VALUES ( null , '12345');");
* $db->execute("INSERT INTO `table` (`id` ,`number`) VALUES ( ".($db->getLastId() + 1)." , '12345');");
* if($db->transComplete()){
* echo 'ok';
* }else{
* echo 'fail';
* }
*
*/
public function transStart() {
$this->onTransaction = true;
$this->mysqli->autocommit(false);
}
/**
* Check all querys and execute transaction
* Auto rollback or commit querys
*
* @param bool $forceRollBack (if true force rollback for test mode or check mode)
* @return bool (true if transaction is ok, false if fail)
*/
public function transComplete($forceRollBack = false) {
if (!$this->onTransaction) {
trigger_error("Non transaction initialized", E_USER_ERROR);
exit;
}
if (count($this->transResults) == 0) {
trigger_error("No sql on transaction", E_USER_ERROR);
exit;
}
if ($forceRollBack) {
$this->transResults[0] = false;
}
foreach ($this->transResults as $result) {
if (!$result) {
$this->mysqli->rollback();
break;
}
}
if ($result) {
$this->mysqli->commit();
}
$this->mysqli->autocommit(true);
$this->onTransaction = false;
unset($this->transResults);
$this->transResults = array();
return $result;
}
/**
* Return array of mysql database information
*
* @return array
*/
public function info() {
$info = array();
$info['client_info'] = $this->mysqli->client_info;
$info['client_version'] = $this->mysqli->client_version;
$info['server_info'] = $this->mysqli->server_info;
$info['server_version'] = $this->mysqli->server_version;
$info['charset'] = $this->mysqli->get_charset();
$info['host_info'] = $this->mysqli->host_info;
$info['protocol_version'] = $this->mysqli->protocol_version;
$info['stat'] = $this->mysqli->stat();
return $info;
}
/**
* Make ping
*
* @return bool return true or exit with error
*/
public function ping() {
if ($this->mysqli->ping()) {
return true;
} else {
trigger_error("Non ping", E_USER_ERROR);
exit;
}
}
/**
* Return last string query
* @return string
*/
public function getQuery() {
return $this->query;
}
/**
* Kill connection
*/
public function kill() {
$this->mysqli->kill($this->thread_id);
}
/**
* Kill conection and destroy instance
*/
public function close() {
$this->kill();
self::$instance = null;
$this->__destruct();
}
/**
* Destroy object
*/
public function __destruct() {
if (@$this->mysqli) {
$this->mysqli->close();
}
unset($this->mysqli);
}
/**
* Override __clone to get error
*/
public function __clone() {
trigger_error('Clone error', E_USER_ERROR);
exit;
}
}
?>