-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWPCCollection.php
361 lines (290 loc) · 9.68 KB
/
WPCCollection.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
<?php
abstract class WPCCollection {
/**
* the name of the main table
*/
protected $table;
/**
* the primary key of the main table
*/
protected $table_pk;
/**
* the columns to filter by in the main table
*/
protected $table_cols;
/**
* the meta table-name
*/
protected $meta_table;
/**
* the meta table's foreign key to the main table
*/
protected $meta_fk;
/**
* the order by key
*/
protected $order_by = array();
/**
* the callback to sort by, if needed.
* should be a usort()-like comparision function.
*/
protected $sort_by_callback = false;
/**
* the offset number
*/
protected $offset = null;
/**
* the limit count
*/
protected $limit = null;
/**
* the where clauses
*/
protected $where = array();
/**
* the additional join clauses
*/
protected $join = array();
protected $write_ro = null;
/**
* Prepares the object to iterate over the results. Resets the iteration pointer.
*/
function iterate () {
// do only get results the first time it is called
if (! isset($this->iterate_results))
$this->iterate_results = $this->results();
$this->iterate_pointer = 0;
return $this;
}
/**
* returns the count
*/
function count () {
global $wpdb;
// shortcut, if there are already fetched results
if (isset($this->iterate_results))
return count($this->iterate_results);
$count = $this->sql_results('COUNT(*)');
return $count[0]['COUNT(*)'];
}
/**
* iterate over the fetched results (in iterate())
* return false, if there are no more results.
*/
function next () {
// although against API, support next() w/o previous iterate().
if (!isset ($this->iterate_results))
$this->iterate();
if (count($this->iterate_results) <= $this->iterate_pointer)
return false;
$ret = $this->iterate_results[$this->iterate_pointer++];
return $ret;
}
/**
* gets the first result trough iterate() and next().
*/
function first_record () {
$this->iterate();
$ret = $this->next();
return ( !empty($ret) ? $ret : NULL );
}
function last_record() {
$this->iterate();
if (empty($this->iterate_results))
return NULL;
return $this->iterate_results[count($this->iterate_results)-1];
}
function each($fun) {
$this->iterate();
while($rec = $this->next())
call_user_func($fun, $rec);
return $this;
}
/**
* order by column or callback $c.
* direction is either "ASC" or "DESC" for ascending or descending order. defaults to ASC.
*
* A callback is assumed to conform to usort().
*/
function order_by($c, $dir = "ASC"){
if (! in_array($dir, array("ASC", "DESC"))) {
// XXX: _error would be more appropriate
ButterLog::warn("$dir is neither ASC nor DESC. Ignoring Order By clause.");
return $this;
}
$new = clone($this);
// callback
if (is_callable($c)) {
if (! empty($this->order_by))
ButterLog::warn('You cannot have both: sorting with SQL and sorting with callback. Callback sorting will win.');
$this->sort_by_cb = $c;
}
else {
if (!empty($this->sort_by_cb))
ButterLog::warn('You cannot have both: sorting with SQL and sorting with callback. This Sorting will most likely have no effect.');
// regular column
if (in_array($c, $this->table_cols))
$order_by_str = "t.$c $dir";
// meta column
else
$order_by_str = "m.$c $dir";
if (in_array($order_by_str, $this->order_by))
// we already order by this col
return $new;
$new->order_by[] = $order_by_str;
}
return $new;
}
/**
* limits the number of records to fetch
*/
function limit($count) {
$new = clone($this);
$new->limit = $count;
return $new;
}
function offset($offset) {
if ($offset > 0) {
$new = clone($this);
$new->offset = $offset;
return $new;
}
return $this;
}
/**
* returns a new instance, filtered by the filter. see add_filter_ for documentation.
*/
function filter($key, $val, $op="=", $printf = "%s") {
$new = clone($this);
$new->add_filter_($key, $val, $op, $printf);
return $new;
}
/**
* adds a filter inplace.
* $key is one of the cols in $table_cols or a meta_key in meta_table
* $value is the intended value (or array of values for IN, BETWEEN and its variants).
* $op is the operator (one of "=", "<=>", "!=", "<", ">", "<=", ">=", "LIKE", "NOT LIKE", "IN", "NOT IN", "BETWEEN", "NOT BETWEEN", "IS", "IS NOT"). Default operator is "=".
*
* This can be overwritten to e.g. normalize keys.
*
* Note: for negative queries on the meta table, it will not list records w/o the key set.
*/
function add_filter_($key, $val, $op="=", $printf = "%s") {
if ($key == 'id')
$this->where[] = $this->where_clause("t.$this->table_pk", $val, $op, $printf);
elseif (in_array($key, $this->table_cols))
$this->where[] = $this->where_clause("t.$key", $val, $op, $printf);
else {
$this->where[] = $this->where_clause("m.$key", $val, $op, $printf);
}
// invalidate iterate_results
unset($this->iterate_results);
}
/**
* returns all filtered records as array.
*/
function sql_results($selectstr="*") {
global $wpdb;
$sql = "SELECT $selectstr FROM $this->table AS t\n";
if (! empty($this->meta_table))
$sql .= "LEFT JOIN $this->meta_table AS m
ON m.$this->meta_fk = t.$this->table_pk\n";
$sql.= join("\n", $this->join);
if (count($this->where))
$sql.= "\nWHERE ( ".join(" )\n AND ( ", $this->where)." )\n";
// add default ASC order by table's pk
$order_by = $this->order_by;
if (! (in_array("t.$this->table_pk ASC", $order_by) || in_array("t.$this->table_pk DESC", $order_by)))
$order_by[] = "t.$this->table_pk ASC";
$sql.= "ORDER BY ".join(", ", $order_by)."\n";
if (isset($this->limit)) {
$sql.= "LIMIT $this->limit ";
if (isset($this->offset))
$sql.= "OFFSET $this->offset";
}
$sql.= ";";
#_log($sql);
$results = $wpdb->get_results($sql, 'ARRAY_A');
return $results;
}
function results() {
$sql_results = $this->sql_results();
if (! $sql_results)
return array();
$res = array();
$table_cols = array_flip($this->table_cols);
foreach ($sql_results as $row)
$res[] = array(
'id' => $row[$this->table_pk],
't' => array_intersect_key($row, $table_cols),
'm' => array_diff_key($row, $table_cols)
);
// sort with callback if given
// this is suboptimal. usort uses quicksort. so if the db presorts,
// it will hit quicksorts worst case performance O(n²).
if (!empty($this->sort_with_cb))
$res = usort($res, $this->sort_with_cb);
return $res;
}
/**
* returns a where clause (without "WHERE")
*/
protected function where_clause($key, $val, $op, $printf = "%s") {
global $wpdb;
$filter = "$key $op ";
switch ($op) {
case "IN":
case "NOT IN":
if (!is_array($val) && !empty($val) ) {
$val = explode(",", $val);
}
if (!is_array($val)) {
ButterLog::warn("$op needs an array. '".print_r($val)."' given");
return;
}
$c = count($val);
$filter = $wpdb->prepare($filter."( ".str_repeat("%s, ", $c-1)."$printf )", $val);
break;
case "BETWEEN":
case "NOT BETWEEN":
if (!is_array($val) || $c=count($val) != 2) {
ButterLog::warn("$op needs an array of length 2. '".print_r($val)."' given");
return;
}
$filter = $wpdb->prepare($filter."$printf AND $printf", $val);
break;
case "IS":
case "IS NOT":
$allowed_values = array("FALSE", "TRUE", "UNKNOWN", "NULL");
if (! in_array(strtoupper($val), $allowed_values)) {
ButterLog::warn("$op only supports the values ".join(', ', $allowed_values)."\n$val given");
return;
}
$filter.= $val;
break;
case "!==":
$filter = $wpdb->prepare("$key != $printf OR $key IS NULL", $val);
break;
case "LIKE":
case "NOT LIKE":
$filter.= "'%".like_escape($val)."%'";
break;
case "IS NULL":
case 'IS NOT NULL':
// $key $op is already enought. no need to specify the value
break;
default:
if (! in_array($op, array("=", "!=", "<=>","<","<=",">",">="))) {
ButterLog::warn("operator is not valid: $op");
return;
}
$filter = $wpdb->prepare($filter."$printf", $val);
}
return $filter;
}
function write_ro($write_ro) {
$this->write_ro = $write_ro;
return $this;
}
}
?>