forked from DataTables/Editor-PHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Database.php
460 lines (399 loc) · 11.8 KB
/
Database.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
<?php
/**
* DataTables PHP libraries.
*
* PHP libraries for DataTables and DataTables Editor, utilising PHP 5.3+.
*
* @author SpryMedia
* @copyright 2012 SpryMedia ( http://sprymedia.co.uk )
* @license http://editor.datatables.net/license DataTables Editor
* @link http://editor.datatables.net
*/
namespace DataTables;
if (!defined('DATATABLES')) exit();
use
DataTables\Database\Query,
DataTables\Database\Result;
/**
* DataTables Database connection object.
*
* Create a database connection which may then have queries performed upon it.
*
* This is a database abstraction class that can be used on multiple different
* databases. As a result of this, it might not be suitable to perform complex
* queries through this interface or vendor specific queries, but everything
* required for basic database interaction is provided through the abstracted
* methods.
*/
class Database {
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Constructor
*/
/**
* Database instance constructor.
* @param string[] $opts Array of connection parameters for the database:
* <code>
* array(
* "user" => "", // User name
* "pass" => "", // Password
* "host" => "", // Host name
* "port" => "", // Port
* "db" => "", // Database name
* "type" => "" // Datable type: "Mysql", "Postgres" or "Sqlite"
* )
* </code>
*/
function __construct( $opts )
{
$types = array( 'Mysql', 'Oracle', 'Postgres', 'Sqlite', 'Sqlserver', 'Db2', 'Firebird' );
if ( ! in_array( $opts['type'], $types ) ) {
throw new \Exception(
"Unknown database driver type. Must be one of ".implode(', ', $types),
1
);
}
$this->type = $opts['type'];
$this->query_driver = "DataTables\\Database\\Driver\\".$opts['type'].'Query';
$this->_dbResource = isset( $opts['pdo'] ) ?
$opts['pdo'] :
call_user_func($this->query_driver.'::connect', $opts );
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Private properties
*/
/** @var resource */
private $_dbResource = null;
/** @var callable */
private $_debugCallback = null;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Public methods
*/
/**
* Determine if there is any data in the table that matches the query
* condition
*
* @param string|string[] $table Table name(s) to act upon.
* @param array $where Where condition for what to select - see {@link
* Query::where}.
* @return boolean Boolean flag - true if there were rows
*/
public function any( $table, $where=null )
{
$res = $this->query( 'select' )
->table( $table )
->get( '*' )
->where( $where )
->exec();
return $res->count() > 0;
}
/**
* Commit a database transaction.
*
* Use with {@link transaction} and {@link rollback}.
* @return self
*/
public function commit ()
{
call_user_func($this->query_driver.'::commit', $this->_dbResource );
return $this;
}
/**
* Get a count from a table.
* @param string|string[] $table Table name(s) to act upon.
* @param string $field Primary key field name
* @param array $where Where condition for what to select - see {@link
* Query::where}.
* @return Number
*/
public function count ( $table, $field="id", $where=null )
{
$res = $this->query( 'count' )
->table( $table )
->get( $field )
->where( $where )
->exec();
return $res->fetch()['cnt'];
}
/**
* Get / set debug mode.
*
* @param boolean $_ Debug mode state. If not given, then used as a getter.
* @return boolean|self Debug mode state if no parameter is given, or
* self if used as a setter.
*/
public function debug ( $set=null )
{
if ( $set === null ) {
return $this->_debugCallback ? true : false;
}
else if ( $set === false ) {
$this->_debugCallback = null;
}
else {
$this->_debugCallback = $set;
}
return $this;
}
/**
* Perform a delete query on a table.
*
* This is a short cut method that creates an update query and then uses
* the query('delete'), table, where and exec methods of the query.
* @param string|string[] $table Table name(s) to act upon.
* @param array $where Where condition for what to delete - see {@link
* Query::where}.
* @return Result
*/
public function delete ( $table, $where=null )
{
return $this->query( 'delete' )
->table( $table )
->where( $where )
->exec();
}
/**
* Insert data into a table.
*
* This is a short cut method that creates an update query and then uses
* the query('insert'), table, set and exec methods of the query.
* @param string|string[] $table Table name(s) to act upon.
* @param array $set Field names and values to set - see {@link
* Query::set}.
* @param array $pkey Primary key column names (this is an array for
* forwards compt, although only the first item in the array is actually
* used). This doesn't need to be set, but it must be if you want to use
* the `Result->insertId()` method.
* @return Result
*/
public function insert ( $table, $set, $pkey='' )
{
return $this->query( 'insert' )
->pkey( $pkey )
->table( $table )
->set( $set )
->exec();
}
/**
* Update or Insert data. When doing an insert, the where condition is
* added as a set field
* @param string|string[] $table Table name(s) to act upon.
* @param array $set Field names and values to set - see {@link
* Query::set}.
* @param array $where Where condition for what to update - see {@link
* Query::where}.
* @param array $pkey Primary key column names (this is an array for
* forwards compt, although only the first item in the array is actually
* used). This doesn't need to be set, but it must be if you want to use
* the `Result->insertId()` method. Only used if an insert is performed.
* @return Result
*/
public function push ( $table, $set, $where=null, $pkey='' )
{
$selectColumn = '*';
if ( $pkey ) {
$selectColumn = is_array($pkey) ?
$pkey[0] :
$pkey;
}
// Update or insert
if ( $this->select( $table, $selectColumn, $where )->count() > 0 ) {
return $this->update( $table, $set, $where );
}
// Add the where condition to the values to set
foreach ($where as $key => $value) {
if ( ! isset( $set[ $key ] ) ) {
$set[ $key ] = $value;
}
}
return $this->insert( $table, $set, $pkey );
}
/**
* Create a query object to build a database query.
* @param string $type Query type - select, insert, update or delete.
* @param string|string[] $table Table name(s) to act upon.
* @return Query
*/
public function query ( $type, $table=null )
{
return new $this->query_driver( $this, $type, $table );
}
/**
* Quote a string for a quote. Note you should generally use a bind!
* @param string $val Value to quote
* @param string $type Value type
* @return string
*/
public function quote ( $val, $type=\PDO::PARAM_STR )
{
return $this->_dbResource->quote( $val, $type );
}
/**
* Create a `Query` object that will execute a custom SQL query. This is
* similar to the `sql` method, but in this case you must call the `exec()`
* method of the returned `Query` object manually. This can be useful if you
* wish to bind parameters using the query `bind` method to ensure data is
* properly escaped.
*
* @return Result
*
* @example
* Safely escape user input
* <code>
* $db
* ->raw()
* ->bind( ':date', $_POST['date'] )
* ->exec( 'SELECT * FROM staff where date < :date' );
* </code>
*/
public function raw ()
{
return $this->query( 'raw' );
}
/**
* Get the database resource connector. This is typically a PDO object.
* @return resource PDO connection resource (driver dependent)
*/
public function resource ()
{
return $this->_dbResource;
}
/**
* Rollback the database state to the start of the transaction.
*
* Use with {@link transaction} and {@link commit}.
* @return self
*/
public function rollback ()
{
call_user_func($this->query_driver.'::rollback', $this->_dbResource );
return $this;
}
/**
* Select data from a table.
*
* This is a short cut method that creates an update query and then uses
* the query('select'), table, get, where and exec methods of the query.
* @param string|string[] $table Table name(s) to act upon.
* @param array $field Fields to get from the table(s) - see {@link
* Query::get}.
* @param array $where Where condition for what to select - see {@link
* Query::where}.
* @param array $orderBy Order condition - see {@link
* Query::order}.
* @return Result
*/
public function select ( $table, $field="*", $where=null, $orderBy=null )
{
return $this->query( 'select' )
->table( $table )
->get( $field )
->where( $where )
->order( $orderBy )
->exec();
}
/**
* Select distinct data from a table.
*
* This is a short cut method that creates an update query and then uses the
* query('select'), distinct ,table, get, where and exec methods of the
* query.
* @param string|string[] $table Table name(s) to act upon.
* @param array $field Fields to get from the table(s) - see {@link
* Query::get}.
* @param array $where Where condition for what to select - see {@link
* Query::where}.
* @param array $orderBy Order condition - see {@link
* Query::order}.
* @return Result
*/
public function selectDistinct ( $table, $field="*", $where=null, $orderBy=null )
{
return $this->query( 'select' )
->table( $table )
->distinct( true )
->get( $field )
->where( $where )
->order( $orderBy )
->exec();
}
/**
* Execute an raw SQL query - i.e. give the method your own SQL, rather
* than having the Database classes building it for you.
*
* This method will execute the given SQL immediately. Use the `raw()`
* method if you need the ability to add bound parameters.
* @param string $sql SQL string to execute (only if _type is 'raw').
* @return Result
*
* @example
* Basic select
* <code>
* $result = $db->sql( 'SELECT * FROM myTable;' );
* </code>
*
* @example
* Set the character set of the connection
* <code>
* $db->sql("SET character_set_client=utf8");
* $db->sql("SET character_set_connection=utf8");
* $db->sql("SET character_set_results=utf8");
* </code>
*/
public function sql ( $sql )
{
return $this->query( 'raw' )
->exec( $sql );
}
/**
* Start a new database transaction.
*
* Use with {@link commit} and {@link rollback}.
* @return self
*/
public function transaction ()
{
call_user_func($this->query_driver.'::transaction', $this->_dbResource );
return $this;
}
/**
* Update data.
*
* This is a short cut method that creates an update query and then uses
* the query('update'), table, set, where and exec methods of the query.
* @param string|string[] $table Table name(s) to act upon.
* @param array $set Field names and values to set - see {@link
* Query::set}.
* @param array $where Where condition for what to update - see {@link
* Query::where}.
* @return Result
*/
public function update ( $table, $set=null, $where=null )
{
return $this->query( 'update' )
->table( $table )
->set( $set )
->where( $where )
->exec();
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Internal functions
*/
/**
* Get debug query information.
*
* @return array Information about the queries used. When this method is
* called it will reset the query cache.
* @internal
*/
public function debugInfo ( $query=null, $bindings=null )
{
$callback = $this->_debugCallback;
if ( $callback ) {
$callback( array(
"query" => $query,
"bindings" => $bindings
) );
}
return $this;
}
};