-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDatatables_server_side.php
534 lines (430 loc) · 11.9 KB
/
Datatables_server_side.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
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Datatables_server_side
{
/**
* Database table
*
* @var string
*/
private $table;
/**
* Primary key
*
* @var string
*/
private $primary_key;
/**
* Columns to fetch
*
* @var array
*/
private $columns;
/**
* Where clause
*
* @var mixed
*/
private $where;
/**
* Where clause
*
* @var mixed
*/
private $joins;
/**
* Where clause
*
* @var mixed
*/
private $group_by;
/**
* CI Singleton
*
* @var object
*/
private $CI;
/**
* GET request
*
* @var array
*/
private $request;
// --------------------------------------------------------------------
/**
* Constructor
*
* @param array $params Initialization parameters
* @return void
*/
public function __construct($params)
{
$this->table = (array_key_exists('table', $params) === true && is_string($params['table']) === true) ? $params['table'] : '';
$this->primary_key = (array_key_exists('primary_key', $params) === true && is_string($params['primary_key']) === true) ? $params['primary_key'] : '';
$this->columns = (array_key_exists('columns', $params) === true && is_array($params['columns']) === true) ? $params['columns'] : [];
$this->where = (array_key_exists('where', $params) === true && (is_array($params['where']) === true || is_string($params['where']) === true)) ? $params['where'] : [];
$this->joins = (array_key_exists('joins', $params) === true && (is_array($params['joins']) === true)) ? $params['joins'] : [];
$this->group_by = (array_key_exists('group_by', $params) === true && (is_array($params['group_by']) === true)) ? $params['group_by'] : [];
$this->CI =& get_instance();
$this->request = $this->CI->input->get();
$this->validate_table();
$this->validate_primary_key();
$this->validate_columns();
$this->validate_request();
}
// --------------------------------------------------------------------
/**
* Validate database table
*
* @return void
*/
private function validate_table()
{
if ($this->CI->db->table_exists($this->table) === false) {
$this->response(array(
'error' => 'Table doesn\'t exist.'
));
}
}
// --------------------------------------------------------------------
/**
* Validate primary key
*
* @return void
*/
private function validate_primary_key()
{
if ($this->CI->db->field_exists($this->primary_key, $this->table) === false) {
$this->response(array(
'error' => 'Invalid primary key.'
));
}
}
// --------------------------------------------------------------------
/**
* validate columns to fetch
*
* @return void
*/
private function validate_columns()
{
foreach ($this->columns as $column_name) {
/**
* skiping sub query
*/
if ($column_name[0] == '(') {
continue;
}
$column = $this->get_column_name($column_name);
$table = $this->get_table_name($column_name);
if (is_string($column) === false || $this->CI->db->field_exists($column, $table) === false) {
$this->response(['error' => "The column '$column' does not exist in the table '$table'."]);
}
}
}
// --------------------------------------------------------------------
/**
* validate GET request
*
* @return void
*/
private function validate_request()
{
if (count($this->request['columns']) > count($this->columns)) {
$this->response(array(
'error' => 'Column count mismatch.'
));
}
foreach ($this->request['columns'] as $column) {
if (isset($this->columns[$column['data']]) === false) {
$this->response(array(
'error' => 'Missing column.'
));
}
$this->request['columns'][$column['data']]['name'] = $this->columns[$column['data']];
}
}
// --------------------------------------------------------------------
/**
* Generates the ORDER BY portion of the query
*
* @return CI_DB_query_builder
*/
private function order()
{
foreach ($this->request['order'] as $order) {
$column = $this->request['columns'][$order['column']];
if ($column['orderable'] === 'true') {
$this->CI->db->order_by($this->get_column_name($column['name']), strtoupper($order['dir']));
}
}
}
/**
* Generates the GROUP BY portion of the query
*
* @return CI_DB_query_builder
*/
private function group()
{
foreach ($this->group_by as $column) {
$this->CI->db->group_by($column);
}
}
// --------------------------------------------------------------------
/**
* Generates the LIKE portion of the query
*
* @return CI_DB_query_builder
*/
private function search()
{
$global_search_value = $this->request['search']['value'];
$likes = [];
foreach ($this->request['columns'] as $column) {
if (empty($column['name'])) {
continue;
}
if ($column['searchable'] === 'true') {
if (empty($global_search_value) === false) {
$likes[] = array(
'field' => $this->get_column_name_with_table_name($column['name']),
'match' => $global_search_value
);
}
if (empty($column['search']['value']) === false) {
$likes[] = array(
'field' => $this->get_column_name_with_table_name($column['name']),
'match' => $column['search']['value']
);
}
}
}
if (count($likes) > 0) {
$this->CI->db->group_start();
}
foreach ($likes as $index => $like) {
if ($index === 0) {
$this->CI->db->like('CAST('.$like['field'].' AS CHAR)', $like['match']);
} else {
$this->CI->db->or_like('CAST('.$like['field'].' AS CHAR)', $like['match']);
}
}
if (count($likes) > 0) {
$this->CI->db->group_end();
}
}
// --------------------------------------------------------------------
/**
* Generates the WHERE portion of the query
*
* @return CI_DB_query_builder
*/
private function where()
{
if ( ! is_array($this->where)) {
$this->CI->db->where($this->where);
} else {
foreach ($this->where as $key => $where) {
if (is_numeric($key)) {
$this->CI->db->where($where);
} else {
$this->CI->db->where($key, $where);
}
}
}
}
/**
* Generates the JOINS portion of the query
*
* @return CI_DB_query_builder
*/
private function joins()
{
foreach ($this->joins as $join) {
$this->CI->db->join($join[0], $join[1], $join[2] ?? 'inner');
}
}
// --------------------------------------------------------------------
/**
* Send response to DataTables
*
* @param array $data
* @return void
*/
private function response($data)
{
$this->CI->output->set_content_type('application/json');
$this->CI->output->set_output(json_encode($data));
$this->CI->output->_display();
exit;
}
// --------------------------------------------------------------------
/**
* Calculate total number of records
*
* @return int
*/
private function records_total()
{
$this->CI->db->reset_query();
$this->where();
$this->joins();
$this->group();
$this->CI->db->from($this->table);
return $this->CI->db->get()->num_rows();
}
// --------------------------------------------------------------------
/**
* Calculate filtered records
*
* @return int
*/
private function records_filtered()
{
$this->CI->db->reset_query();
$this->where();
$this->joins();
$this->search();
$this->group();
$this->CI->db->from($this->table);
return $this->CI->db->get()->num_rows();
}
// --------------------------------------------------------------------
/**
* Process
*
* @param string $row_id = 'data'
* @param string $row_class = ''
* @return void
*/
public function process($row_id = 'data', $row_class = '')
{
if (in_array($row_id, array('id', 'data', 'none'), true) === false) {
$this->response(array(
'error' => 'Invalid DT_RowId.'
));
}
if (is_string($row_class) === false) {
$this->response(array(
'error' => 'Invalid DT_RowClass.'
));
}
$columns = array();
$add_primary_key = true;
foreach ($this->columns as $column) {
$columns[] = $column;
if ($column === $this->primary_key) {
$add_primary_key = false;
}
}
if ($add_primary_key === true) {
// $columns[] = $this->primary_key;
}
$this->CI->db->select(implode(',', $columns));
$this->where();
$this->joins();
$this->search();
$this->group();
$this->order();
$query = $this->CI->db->get($this->table, $this->request['length'], $this->request['start']);
$data['data'] = array();
foreach ($query->result_array() as $row) {
$r = [];
foreach ($row as $column) {
$r[] = $column;
}
if ($row_id === 'id') {
$r['DT_RowId'] = $row[$this->primary_key];
}
if ($row_id === 'data') {
$r['DT_RowData'] = array(
'id' => $row[$this->primary_key]
);
}
if ($row_class !== '') {
$r['DT_RowClass'] = $row_class;
}
$data['data'][] = $r;
}
$data['draw'] = intval($this->request['draw']);
$data['recordsTotal'] = $this->records_total();
$data['recordsFiltered'] = $this->records_filtered();
$this->response($data);
}
/**
* Extracts the column name from a given column string, which can be either a single column name (e.g., `id`) or a column name with a table name (e.g., `students`.`id`).
*
* @param string $column The column string to process.
* @return string The extracted column name.
*/
private function get_column_name(string $column): string
{
// Remove any backticks or single quotes from the variable
$column = str_replace(array("`", "'"), "", $column);
// Check if the variable contains parentheses
if (preg_match("/\((.*?)\)/", $column, $matches)) {
// Extract the part inside the parentheses
$column = $matches[1];
}
// Split the variable by spaces or dots
$parts = preg_split("/[\s\.]+/", $column);
// Check if the last part is "as" followed by something
if (count($parts) >= 2 && strtolower($parts[count($parts) - 2]) == "as") {
// Return the second last part, which should be the column name
return $parts[count($parts) - 3];
} else {
// Return the last part, which should be the column name
return end($parts);
}
}
/**
* Extracts the table name from a given column string, which can be either a single column name (e.g., `id`) or a column name with a table name (e.g., `students`.`id`).
*
* @param string $column The column string to process.
* @return string The extracted table name.
*/
private function get_table_name(string $column): string
{
// Remove any backticks, single quotes or DISTINCT keyword from the variable
$column = str_replace(array("`", "'", 'DISTINCT'), "", $column);
// Check if the variable contains parentheses
if (preg_match("/\((.*?)\)/", $column, $matches)) {
// Extract the part inside the parentheses
$column = trim($matches[1]);
}
// Split the variable by spaces or dots
$parts = preg_split("/[\s\.]+/", $column);
// Check if the variable contains a dot
if (strpos($column, ".") !== false) {
// Return the first part, which should be the table name
return $parts[0];
}
return $this->table;
}
/**
* Extracts the column name with table name from a given column string
*
* @param string $column The column string to process.
* @return string The extracted column name.
*/
private function get_column_name_with_table_name(string $column): string
{
// Remove any backticks or single quotes from the variable
$column = str_replace(array("`", "'"), "", $column);
// Check if the variable contains parentheses
if (preg_match("/\((.*?)\)/", $column, $matches)) {
// Extract the part inside the parentheses
$column = $matches[1];
}
// Split the variable by spaces or dots
$parts = preg_split("/[\s]+/", $column);
// Check if the last part is "as" followed by something
if (count($parts) >= 2 && strtolower($parts[count($parts) - 2]) == "as") {
// Return the second last part, which should be the column name
return $parts[count($parts) - 3];
} else {
// Return the last part, which should be the column name
return end($parts);
}
}
}