class-db-builder.php
5.99 KB
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
<?php
declare( strict_types=1 );
namespace LearnDash\Hub\Framework;
/**
* This is a data mapper for CRUD
*
* Class DB
*
* @package Calotes\Helper
*/
class DB_Builder extends Base {
/**
* Where statements
*
* @var array
*/
private $where = array();
/**
* Store the order statement.
*
* @var string
*/
private $order = '';
/**
* Store the limit statement.
*
* @var string
*/
private $limit = '';
/**
* Use to store last query
*
* @var string
*/
public $saved_queries = '';
/**
* The table that will get query on.
*
* @var string
*/
protected $table_name = '';
/**
* DB_Builder constructor.
*
* @param string $table_name The table name.
*/
public function __construct( string $table_name ) {
$this->table_name = $table_name;
}
/**
* Define the conditions, for example
* where('property','value) This will create an equal statement.
* where('property','operator','value') This will create a statement with custom operator.
*
* @param mixed ...$args The args.
*
* @return $this
*/
public function where( ...$args ) {
global $wpdb;
if ( 2 === count( $args ) ) {
list( $key, $value ) = $args;
$place_holder = $this->guess_var_type( $value );
$this->where[] = $wpdb->prepare( "`$key` = $place_holder", $value );
return $this;
}
list( $key, $operator, $value ) = $args;
if ( ! $this->valid_operator( $operator ) ) {
// prevent this operator.
return $this;
}
if ( in_array( strtolower( $operator ), array( 'in', 'not in' ), true ) ) {
$tmp = $key . " {$operator} (" . implode(
', ',
array_fill( 0, count( $value ), $this->guess_var_type( $value ) )
) . ')';
$sql = call_user_func_array(
array(
$wpdb,
'prepare',
),
array_merge( array( $tmp ), $value )
);
$this->where[] = $sql;
} elseif ( 'between' === strtolower( $operator ) ) {
$this->where[] = $wpdb->prepare(
"{$key} {$operator} {$this->guess_var_type($value[0])} AND {$this->guess_var_type($value[1])}",
$value[0],
$value[1]
);
} else {
$this->where[] = $wpdb->prepare( "`$key` $operator {$this->guess_var_type($value)}", $value );
}
return $this;
}
/**
* Guess the type of value for correcting placeholder
*
* @param mixed $value The query value.
*
* @return string
*/
private function guess_var_type( $value ): string {
if ( filter_var( $value, FILTER_VALIDATE_INT ) ) {
return '%d';
}
if ( filter_var( $value, FILTER_VALIDATE_FLOAT ) ) {
return '%f';
}
return '%s';
}
/**
* Find a record by it's ID
*
* @param int $id The record ID.
*
* @return $this
*/
public function find_by_id( int $id ): DB_Builder {
global $wpdb;
$this->where[] = $wpdb->prepare( 'id = %d', $id );
return $this;
}
/**
* Build order statement.
*
* @param string $order_by The field that used to order.
* @param string $order Order oriental.
*
* @return $this
*/
public function order_by( string $order_by, string $order = 'asc' ): DB_Builder {
global $wpdb;
$order = strtolower( $order );
if ( ! in_array( $order, array( 'asc', 'desc' ), true ) ) {
// fall it back.
$order = 'asc';
}
$this->order = str_replace(
"'",
'',
$wpdb->prepare( 'ORDER BY %s %s', $order_by, $order )
);
return $this;
}
/**
* Build the limit statement.
*
* @param string $offset The offset in format offset,limit.
*
* @return $this
* @throws \Exception
*/
public function limit( string $offset ) {
$trunk = explode( ',', $offset );
if ( count( $trunk ) === 1 ) {
$this->limit = 'LIMIT ' . absint( $offset[0] );
return $this;
} elseif ( count( $trunk ) === 2 ) {
$offset = absint( $trunk[0] );
$limit = absint( $trunk[1] );
$this->limit = "LIMIT {$offset},{$limit}";
return $this;
}
throw new \Exception( 'Invalid parameters' );
}
/**
* Execute the query and return the first record.
*
* @return null|array
*/
public function first() {
$this->limit = 'LIMIT 0,1';
$sql = $this->query_build();
$this->saved_queries = $sql;
global $wpdb;
$data = $wpdb->get_row( $sql, ARRAY_A );
if ( is_null( $data ) ) {
return null;
}
return $data;
}
/**
* Execute the query and return the results.
*
* @return array
*/
public function get() {
$sql = $this->query_build();
$this->saved_queries = $sql;
global $wpdb;
$data = $wpdb->get_results( $sql, ARRAY_A );
if ( is_null( $data ) ) {
return array();
}
return $data;
}
/**
* Run the query to see if the record is exist or not.
*
* @return string|null
*/
public function exists() {
global $wpdb;
$sql = $this->query_build();
$sql = "SELECT EXISTS ($sql)";
$this->saved_queries = $sql;
return $wpdb->get_var( $sql );
}
/**
* Execute the query but return count.
*
* @return int
*/
public function count() {
global $wpdb;
$sql = $this->query_build( 'COUNT(*)' );
$count = $wpdb->get_var( $sql );
return absint( $count );
}
/**
* Reset all the queries prepare after an action
*/
private function clear() {
$this->where = array();
$this->order = '';
$this->limit = '';
}
/**
* Join the stuff on the table to make a full query statement
*
* @param string $select The fields return, default all.
*
* @return string
*/
private function query_build( string $select = '*' ): string {
$table = $this->table_name;
$where = implode( ' AND ', $this->where );
$order_by = $this->order;
$limit = $this->limit;
$sql = "SELECT $select FROM $table WHERE $where $order_by $limit";
$this->clear();
return $sql;
}
/**
* Validate the operator.
*
* @param string $operator The sql operator.
*
* @return bool
*/
private function valid_operator( string $operator ): bool {
$operator = strtolower( $operator );
$allowed = array(
'in',
'not in',
'>',
'<',
'=',
'<=',
'>=',
'like',
'between',
);
return in_array( $operator, $allowed, true );
}
}