Total Complexity | 94 |
Total Lines | 701 |
Duplicated Lines | 0 % |
Changes | 3 | ||
Bugs | 0 | Features | 1 |
Complex classes like WPDBAdapter often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use WPDBAdapter, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
18 | class WPDBAdapter |
||
19 | { |
||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $sanitizer = ''; |
||
24 | |||
25 | /** |
||
26 | * @var \Pixie\Connection |
||
27 | */ |
||
28 | protected $connection; |
||
29 | |||
30 | /** |
||
31 | * @var \Viocon\Container |
||
32 | */ |
||
33 | protected $container; |
||
34 | |||
35 | public function __construct(Connection $connection) |
||
36 | { |
||
37 | $this->connection = $connection; |
||
38 | $this->container = $this->connection->getContainer(); |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * Build select query string and bindings |
||
43 | * |
||
44 | * @param array<string|Closure, mixed|mixed[]> $statements |
||
45 | * |
||
46 | * @throws Exception |
||
47 | * |
||
48 | * @return array{sql:string,bindings:mixed[]} |
||
49 | */ |
||
50 | public function select(array $statements): array |
||
51 | { |
||
52 | if (!array_key_exists('tables', $statements)) { |
||
53 | throw new Exception('No table specified.', 3); |
||
54 | } elseif (!array_key_exists('selects', $statements)) { |
||
55 | $statements['selects'][] = '*'; |
||
56 | } |
||
57 | |||
58 | // From |
||
59 | $tables = $this->arrayStr($statements['tables'], ', '); |
||
60 | // Select |
||
61 | $selects = $this->arrayStr($statements['selects'], ', '); |
||
62 | |||
63 | // Wheres |
||
64 | list($whereCriteria, $whereBindings) = $this->buildCriteriaWithType($statements, 'wheres', 'WHERE'); |
||
65 | // Group bys |
||
66 | $groupBys = ''; |
||
67 | if (isset($statements['groupBys']) && $groupBys = $this->arrayStr($statements['groupBys'], ', ')) { |
||
68 | $groupBys = 'GROUP BY ' . $groupBys; |
||
69 | } |
||
70 | |||
71 | // Order bys |
||
72 | $orderBys = ''; |
||
73 | if (isset($statements['orderBys']) && is_array($statements['orderBys'])) { |
||
74 | foreach ($statements['orderBys'] as $orderBy) { |
||
75 | $field = $this->wrapSanitizer($orderBy['field']); |
||
76 | if ($field instanceof Closure) { |
||
77 | continue; |
||
78 | } |
||
79 | $orderBys .= $field . ' ' . $orderBy['type'] . ', '; |
||
80 | } |
||
81 | |||
82 | if ($orderBys = trim($orderBys, ', ')) { |
||
83 | $orderBys = 'ORDER BY ' . $orderBys; |
||
84 | } |
||
85 | } |
||
86 | |||
87 | // Limit and offset |
||
88 | $limit = isset($statements['limit']) ? 'LIMIT ' . (int) $statements['limit'] : ''; |
||
89 | $offset = isset($statements['offset']) ? 'OFFSET ' . (int) $statements['offset'] : ''; |
||
90 | |||
91 | // Having |
||
92 | list($havingCriteria, $havingBindings) = $this->buildCriteriaWithType($statements, 'havings', 'HAVING'); |
||
93 | |||
94 | // Joins |
||
95 | $joinString = $this->buildJoin($statements); |
||
96 | |||
97 | /** @var string[] */ |
||
98 | $sqlArray = [ |
||
99 | 'SELECT' . (isset($statements['distinct']) ? ' DISTINCT' : ''), |
||
100 | $selects, |
||
101 | 'FROM', |
||
102 | $tables, |
||
103 | $joinString, |
||
104 | $whereCriteria, |
||
105 | $groupBys, |
||
106 | $havingCriteria, |
||
107 | $orderBys, |
||
108 | $limit, |
||
109 | $offset, |
||
110 | ]; |
||
111 | |||
112 | $sql = $this->concatenateQuery($sqlArray); |
||
113 | |||
114 | $bindings = array_merge( |
||
115 | $whereBindings, |
||
116 | $havingBindings |
||
117 | ); |
||
118 | |||
119 | return compact('sql', 'bindings'); |
||
120 | } |
||
121 | |||
122 | /** |
||
123 | * Build just criteria part of the query |
||
124 | * |
||
125 | * @param array<string|Closure, mixed|mixed[]> $statements |
||
126 | * @param bool $bindValues |
||
127 | * |
||
128 | * @return array{sql:string[]|string, bindings:array<mixed>} |
||
129 | */ |
||
130 | public function criteriaOnly(array $statements, bool $bindValues = true): array |
||
131 | { |
||
132 | $sql = $bindings = []; |
||
133 | if (!isset($statements['criteria'])) { |
||
134 | return compact('sql', 'bindings'); |
||
135 | } |
||
136 | |||
137 | list($sql, $bindings) = $this->buildCriteria($statements['criteria'], $bindValues); |
||
138 | |||
139 | return compact('sql', 'bindings'); |
||
140 | } |
||
141 | |||
142 | /** |
||
143 | * Build a generic insert/ignore/replace query |
||
144 | * |
||
145 | * @param array<string|Closure, mixed|mixed[]> $statements |
||
146 | * @param array<string, mixed> $data |
||
147 | * @param string $type |
||
148 | * |
||
149 | * @return array{sql:string, bindings:mixed[]} |
||
150 | * |
||
151 | * @throws Exception |
||
152 | */ |
||
153 | private function doInsert(array $statements, array $data, string $type): array |
||
154 | { |
||
155 | if (!isset($statements['tables'])) { |
||
156 | throw new Exception('No table specified', 3); |
||
157 | } |
||
158 | |||
159 | $table = end($statements['tables']); |
||
160 | |||
161 | $bindings = $keys = $values = []; |
||
162 | |||
163 | foreach ($data as $key => $value) { |
||
164 | $keys[] = $key; |
||
165 | |||
166 | // Handle value as bindings |
||
167 | $isBindings = $value instanceof Binding; |
||
168 | // If this is a raw binding, extract the Raw and replace value. |
||
169 | if ($isBindings && $value->isRaw()) { |
||
170 | $value = $value->getValue(); |
||
171 | } |
||
172 | |||
173 | if ($value instanceof Raw) { |
||
174 | $values[] = $this->parseRaw($value); |
||
175 | } elseif ($isBindings) { |
||
176 | $values[] = $value->getType(); |
||
177 | $bindings[] = $value->getValue(); |
||
178 | } else { |
||
179 | $values[] = $this->inferType($value); |
||
180 | $bindings[] = $value; |
||
181 | } |
||
182 | } |
||
183 | |||
184 | $sqlArray = [ |
||
185 | $type . ' INTO', |
||
186 | $this->wrapSanitizer($table), |
||
187 | '(' . $this->arrayStr($keys, ',') . ')', |
||
188 | 'VALUES', |
||
189 | '(' . $this->arrayStr($values, ',') . ')', |
||
190 | ]; |
||
191 | |||
192 | if (isset($statements['onduplicate'])) { |
||
193 | if (count($statements['onduplicate']) < 1) { |
||
194 | throw new Exception('No data given.', 4); |
||
195 | } |
||
196 | list($updateStatement, $updateBindings) = $this->getUpdateStatement($statements['onduplicate']); |
||
197 | $sqlArray[] = 'ON DUPLICATE KEY UPDATE ' . $updateStatement; |
||
198 | $bindings = array_merge($bindings, $updateBindings); |
||
199 | } |
||
200 | |||
201 | $sql = $this->concatenateQuery($this->stringifyValues($sqlArray)); |
||
202 | |||
203 | return compact('sql', 'bindings'); |
||
204 | } |
||
205 | |||
206 | /** |
||
207 | * Attempts to stringify an array of values. |
||
208 | * |
||
209 | * @param array<string|int, string|Closure> $values |
||
210 | * |
||
211 | * @return string[] |
||
212 | */ |
||
213 | protected function stringifyValues(array $values): array |
||
214 | { |
||
215 | return array_filter(array_map([$this, 'stringifyValue'], $values)); |
||
216 | } |
||
217 | |||
218 | /** |
||
219 | * Attempts to stringify a single of values. |
||
220 | * |
||
221 | * @param string|Closure|Raw $value |
||
222 | * |
||
223 | * @return string|null |
||
224 | */ |
||
225 | protected function stringifyValue($value): ?string |
||
226 | { |
||
227 | if ($value instanceof Closure) { |
||
228 | $value = $value(); |
||
229 | |||
230 | return is_string($value) ? $value : null; |
||
231 | } |
||
232 | |||
233 | if ($value instanceof Raw) { |
||
234 | return $this->parseRaw($value); |
||
235 | } |
||
236 | |||
237 | return $value; |
||
238 | } |
||
239 | |||
240 | /** |
||
241 | * Build Insert query |
||
242 | * |
||
243 | * @param array<string|Closure, mixed|mixed[]> $statements |
||
244 | * @param array<string, mixed> $data $data |
||
245 | * |
||
246 | * @return array{sql:string, bindings:mixed[]} |
||
247 | * |
||
248 | * @throws Exception |
||
249 | */ |
||
250 | public function insert($statements, array $data) |
||
253 | } |
||
254 | |||
255 | /** |
||
256 | * Build Insert Ignore query |
||
257 | * |
||
258 | * @param array<string|Closure, mixed|mixed[]> $statements |
||
259 | * @param array<string, mixed> $data $data |
||
260 | * |
||
261 | * @return array{sql:string, bindings:mixed[]} |
||
262 | * |
||
263 | * @throws Exception |
||
264 | */ |
||
265 | public function insertIgnore($statements, array $data) |
||
266 | { |
||
267 | return $this->doInsert($statements, $data, 'INSERT IGNORE'); |
||
268 | } |
||
269 | |||
270 | /** |
||
271 | * Build Insert Ignore query |
||
272 | * |
||
273 | * @param array<string|Closure, mixed|mixed[]> $statements |
||
274 | * @param array<string, mixed> $data $data |
||
275 | * |
||
276 | * @return array{sql:string, bindings:mixed[]} |
||
277 | * |
||
278 | * @throws Exception |
||
279 | */ |
||
280 | public function replace($statements, array $data) |
||
281 | { |
||
282 | return $this->doInsert($statements, $data, 'REPLACE'); |
||
283 | } |
||
284 | |||
285 | /** |
||
286 | * Build fields assignment part of SET ... or ON DUBLICATE KEY UPDATE ... statements |
||
287 | * |
||
288 | * @param array<string, mixed> $data |
||
289 | * |
||
290 | * @return array{0:string,1:mixed[]} |
||
291 | */ |
||
292 | private function getUpdateStatement(array $data): array |
||
293 | { |
||
294 | $bindings = []; |
||
295 | $statement = ''; |
||
296 | |||
297 | foreach ($data as $key => $value) { |
||
298 | $isBindings = $value instanceof Binding; |
||
299 | // If this is a raw binding, extract the Raw and replace value. |
||
300 | if ($isBindings && $value->isRaw()) { |
||
301 | $value = $value->getValue(); |
||
302 | } |
||
303 | |||
304 | if ($value instanceof Raw) { |
||
305 | $statement .= $this->stringifyValue($this->wrapSanitizer($key)) . '=' . $value . ','; |
||
306 | } elseif ($isBindings) { |
||
307 | $statement .= $this->stringifyValue($this->wrapSanitizer($key)) . sprintf('=%s,', $value->getType()); |
||
308 | $bindings[] = $value->getValue(); |
||
309 | } else { |
||
310 | $statement .= $this->stringifyValue($this->wrapSanitizer($key)) . sprintf('=%s,', $this->inferType($value)); |
||
311 | $bindings[] = $value; |
||
312 | } |
||
313 | } |
||
314 | |||
315 | $statement = trim($statement, ','); |
||
316 | |||
317 | return [$statement, $bindings]; |
||
318 | } |
||
319 | |||
320 | /** |
||
321 | * Build update query |
||
322 | * |
||
323 | * @param array<string|Closure, mixed|mixed[]> $statements |
||
324 | * @param array<string, mixed> $data |
||
325 | * |
||
326 | * @return array{sql:string, bindings:mixed[]} |
||
327 | * |
||
328 | * @throws Exception |
||
329 | */ |
||
330 | public function update($statements, array $data) |
||
331 | { |
||
332 | if (!isset($statements['tables'])) { |
||
333 | throw new Exception('No table specified', 3); |
||
334 | } elseif (count($data) < 1) { |
||
335 | throw new Exception('No data given.', 4); |
||
336 | } |
||
337 | |||
338 | $table = end($statements['tables']); |
||
339 | |||
340 | // Update statement |
||
341 | list($updateStatement, $bindings) = $this->getUpdateStatement($data); |
||
342 | |||
343 | // Wheres |
||
344 | list($whereCriteria, $whereBindings) = $this->buildCriteriaWithType($statements, 'wheres', 'WHERE'); |
||
345 | |||
346 | // Limit |
||
347 | $limit = isset($statements['limit']) ? 'LIMIT ' . $statements['limit'] : ''; |
||
348 | |||
349 | $sqlArray = [ |
||
350 | 'UPDATE', |
||
351 | $this->wrapSanitizer($table), |
||
352 | 'SET ' . $updateStatement, |
||
353 | $whereCriteria, |
||
354 | $limit, |
||
355 | ]; |
||
356 | |||
357 | $sql = $this->concatenateQuery($this->stringifyValues($sqlArray)); |
||
358 | |||
359 | $bindings = array_merge($bindings, $whereBindings); |
||
360 | |||
361 | return compact('sql', 'bindings'); |
||
362 | } |
||
363 | |||
364 | /** |
||
365 | * Build delete query |
||
366 | * |
||
367 | * @param array<string|Closure, mixed|mixed[]> $statements |
||
368 | * |
||
369 | * @return array{sql:string, bindings:mixed[]} |
||
370 | * |
||
371 | * @throws Exception |
||
372 | */ |
||
373 | public function delete($statements) |
||
374 | { |
||
375 | if (!isset($statements['tables'])) { |
||
376 | throw new Exception('No table specified', 3); |
||
377 | } |
||
378 | |||
379 | $table = end($statements['tables']); |
||
380 | // Ensure table name is a string |
||
381 | $table = $this->stringifyValue($this->wrapSanitizer($table)); |
||
382 | if (null === $table) { |
||
383 | throw new Exception('Table must be a valid string.', 5); |
||
384 | } |
||
385 | |||
386 | // Wheres |
||
387 | list($whereCriteria, $whereBindings) = $this->buildCriteriaWithType($statements, 'wheres', 'WHERE'); |
||
388 | |||
389 | // Limit |
||
390 | $limit = isset($statements['limit']) ? 'LIMIT ' . $statements['limit'] : ''; |
||
|
|||
391 | |||
392 | $sqlArray = ['DELETE FROM', $table, $whereCriteria]; |
||
393 | $sql = $this->concatenateQuery($sqlArray); |
||
394 | $bindings = $whereBindings; |
||
395 | |||
396 | return compact('sql', 'bindings'); |
||
397 | } |
||
398 | |||
399 | /** |
||
400 | * Array concatenating method, like implode. |
||
401 | * But it does wrap sanitizer and trims last glue |
||
402 | * |
||
403 | * @param array<string|int, string> $pieces |
||
404 | * @param string $glue |
||
405 | * |
||
406 | * @return string |
||
407 | */ |
||
408 | protected function arrayStr(array $pieces, string $glue): string |
||
409 | { |
||
410 | $str = ''; |
||
411 | foreach ($pieces as $key => $piece) { |
||
412 | if (!is_int($key)) { |
||
413 | $piece = $key . ' AS ' . $piece; |
||
414 | } |
||
415 | |||
416 | $str .= $piece . $glue; |
||
417 | } |
||
418 | |||
419 | return trim($str, $glue); |
||
420 | } |
||
421 | |||
422 | /** |
||
423 | * Join different part of queries with a space. |
||
424 | * |
||
425 | * @param array<string|int, string> $pieces |
||
426 | * |
||
427 | * @return string |
||
428 | */ |
||
429 | protected function concatenateQuery(array $pieces): string |
||
430 | { |
||
431 | $str = ''; |
||
432 | foreach ($pieces as $piece) { |
||
433 | $str = trim($str) . ' ' . trim($piece); |
||
434 | } |
||
435 | |||
436 | return trim($str); |
||
437 | } |
||
438 | |||
439 | /** |
||
440 | * Gets the type of a value, either from a binding or infered |
||
441 | * |
||
442 | * @param mixed $value |
||
443 | * @return string |
||
444 | */ |
||
445 | public function getType($value): string |
||
446 | { |
||
447 | return $value instanceof Binding && $value->getType() !== null |
||
448 | ? $value->getType() : $this->inferType($value) ; |
||
449 | } |
||
450 | |||
451 | /** |
||
452 | * Get the value from a possible Bindings object. |
||
453 | * |
||
454 | * @param mixed $value |
||
455 | * @return mixed |
||
456 | */ |
||
457 | public function getValue($value) |
||
458 | { |
||
459 | return $value instanceof Binding ? $value->getValue() : $value; |
||
460 | } |
||
461 | |||
462 | /** |
||
463 | * Attempts to parse a raw query, if bindings are defined then they will be bound first. |
||
464 | * |
||
465 | * @param Raw $raw |
||
466 | * @requires string |
||
467 | */ |
||
468 | public function parseRaw(Raw $raw): string |
||
469 | { |
||
470 | $bindings = $raw->getBindings(); |
||
471 | return 0 === count($bindings) |
||
472 | ? (string) $raw |
||
473 | : $this->interpolateQuery($raw->getValue(), $bindings); |
||
474 | } |
||
475 | |||
476 | /** |
||
477 | * Interpolates a query |
||
478 | * |
||
479 | * @param string $query |
||
480 | * @param array<mixed> $bindings |
||
481 | * @return string |
||
482 | */ |
||
483 | public function interpolateQuery(string $query, array $bindings = []): string |
||
493 | } |
||
494 | |||
495 | /** |
||
496 | * Build generic criteria string and bindings from statements, like "a = b and c = ?" |
||
497 | * |
||
498 | * @param array<string|Closure, mixed|mixed[]> $statements |
||
499 | * @param bool $bindValues |
||
500 | * |
||
501 | * @return array{0:string,1:string[]} |
||
502 | */ |
||
503 | protected function buildCriteria(array $statements, bool $bindValues = true): array |
||
504 | { |
||
505 | $criteria = ''; |
||
506 | $bindings = []; |
||
507 | foreach ($statements as $statement) { |
||
508 | $key = $statement['key']; |
||
509 | $value = $statement['value']; |
||
510 | |||
511 | // If the value is a Raw Binding, cast to raw |
||
512 | if ($value instanceof Binding && Binding::RAW === $value->getType()) { |
||
513 | /** @var Raw */ |
||
514 | $value = $value->getValue(); |
||
515 | } |
||
516 | |||
517 | if (is_null($value) && $key instanceof Closure) { |
||
518 | // We have a closure, a nested criteria |
||
519 | |||
520 | // Build a new NestedCriteria class, keep it by reference so any changes made |
||
521 | // in the closure should reflect here |
||
522 | $nestedCriteria = $this->container->build(NestedCriteria::class, [$this->connection]); |
||
523 | |||
524 | $nestedCriteria = &$nestedCriteria; |
||
525 | // Call the closure with our new nestedCriteria object |
||
526 | $key($nestedCriteria); |
||
527 | // Get the criteria only query from the nestedCriteria object |
||
528 | $queryObject = $nestedCriteria->getQuery('criteriaOnly', true); |
||
529 | // Merge the bindings we get from nestedCriteria object |
||
530 | $bindings = array_merge($bindings, $queryObject->getBindings()); |
||
531 | // Append the sql we get from the nestedCriteria object |
||
532 | $criteria .= $statement['joiner'] . ' (' . $queryObject->getSql() . ') '; |
||
533 | } elseif (is_array($value)) { |
||
534 | // where_in or between like query |
||
535 | $criteria .= $statement['joiner'] . ' ' . $key . ' ' . $statement['operator']; |
||
536 | |||
537 | switch ($statement['operator']) { |
||
538 | case 'BETWEEN': |
||
539 | $bindings = array_merge($bindings, $statement['value']); |
||
540 | $criteria .= sprintf( |
||
541 | ' %s AND %s ', |
||
542 | $this->getType($value[0]), |
||
543 | $this->getType($value[1]) |
||
544 | ); |
||
545 | |||
546 | // Maybe cast the values bindings. |
||
547 | $value[0] = $this->getValue($value[0]); |
||
548 | $value[1] = $this->getValue($value[1]); |
||
549 | break; |
||
550 | default: |
||
551 | $valuePlaceholder = ''; |
||
552 | foreach ($statement['value'] as $subValue) { |
||
553 | // Get its value. |
||
554 | if ($this->getValue($subValue) instanceof Raw) { |
||
555 | /** @var Raw $subValue */ |
||
556 | $subValue = $this->getValue($subValue); |
||
557 | $valuePlaceholder .= sprintf('%s, ', $this->parseRaw($subValue)); |
||
558 | continue; |
||
559 | } |
||
560 | |||
561 | |||
562 | // Add in format placeholders. |
||
563 | $valuePlaceholder .= sprintf('%s, ', $this->getType($subValue)); // glynn |
||
564 | $bindings[] = $this->getValue($subValue); |
||
565 | } |
||
566 | |||
567 | $valuePlaceholder = trim($valuePlaceholder, ', '); |
||
568 | $criteria .= ' (' . $valuePlaceholder . ') '; |
||
569 | break; |
||
570 | } |
||
571 | } elseif ($value instanceof Raw) { |
||
572 | $value = $this->parseRaw($value); |
||
573 | $criteria .= "{$statement['joiner']} {$key} {$statement['operator']} $value "; |
||
574 | } else { |
||
575 | // Usual where like criteria |
||
576 | if (!$bindValues) { |
||
577 | // Specially for joins |
||
578 | // We are not binding values, lets sanitize then |
||
579 | $value = $this->stringifyValue($this->wrapSanitizer($value)) ?? ''; |
||
580 | $criteria .= $statement['joiner'] . ' ' . $key . ' ' . $statement['operator'] . ' ' . $value . ' '; |
||
581 | } elseif ($statement['key'] instanceof Raw) { |
||
582 | $criteria .= $statement['joiner'] . ' ' . $key . ' '; |
||
583 | $bindings = array_merge($bindings, $statement['key']->getBindings()); |
||
584 | } else { |
||
585 | // For wheres |
||
586 | $bindings[] = $this->getValue($value); |
||
587 | |||
588 | $criteria .= $statement['joiner'] . ' ' . $key . ' ' . $statement['operator'] . ' ' |
||
589 | . $this->getType($value) . ' '; |
||
590 | } |
||
591 | } |
||
592 | } |
||
593 | |||
594 | // Clear all white spaces, and, or from beginning and white spaces from ending |
||
595 | $criteria = preg_replace('/^(\s?AND ?|\s?OR ?)|\s$/i', '', $criteria); |
||
596 | |||
597 | return [$criteria ?? '', $bindings]; |
||
598 | } |
||
599 | |||
600 | /** |
||
601 | * Asserts the types place holder based on its value |
||
602 | * |
||
603 | * @param mixed $value |
||
604 | * |
||
605 | * @return string |
||
606 | */ |
||
607 | public function inferType($value): string |
||
619 | } |
||
620 | } |
||
621 | |||
622 | /** |
||
623 | * Wrap values with adapter's sanitizer like, '`' |
||
624 | * |
||
625 | * @param string|Raw|Closure $value |
||
626 | * |
||
627 | * @return string|Closure |
||
628 | */ |
||
629 | public function wrapSanitizer($value) |
||
630 | { |
||
631 | // Its a raw query, just cast as string, object has __toString() |
||
632 | if ($value instanceof Raw) { |
||
633 | return $this->parseRaw($value); |
||
634 | } elseif ($value instanceof Closure) { |
||
635 | return $value; |
||
636 | } |
||
637 | |||
638 | // Separate our table and fields which are joined with a ".", |
||
639 | // like my_table.id |
||
640 | $valueArr = explode('.', $value, 2); |
||
641 | |||
642 | foreach ($valueArr as $key => $subValue) { |
||
643 | // Don't wrap if we have *, which is not a usual field |
||
644 | $valueArr[$key] = '*' == trim($subValue) ? $subValue : $this->sanitizer . $subValue . $this->sanitizer; |
||
645 | } |
||
646 | |||
647 | // Join these back with "." and return |
||
648 | return implode('.', $valueArr); |
||
649 | } |
||
650 | |||
651 | /** |
||
652 | * Build criteria string and binding with various types added, like WHERE and Having |
||
653 | * |
||
654 | * @param array<string|Closure, mixed|mixed[]> $statements |
||
655 | * @param string $key |
||
656 | * @param string $type |
||
657 | * @param bool $bindValues |
||
658 | * |
||
659 | * @return array{0:string, 1:string[]} |
||
660 | */ |
||
661 | protected function buildCriteriaWithType(array $statements, string $key, string $type, bool $bindValues = true) |
||
662 | { |
||
663 | $criteria = ''; |
||
664 | $bindings = []; |
||
665 | |||
666 | if (isset($statements[$key])) { |
||
667 | // Get the generic/adapter agnostic criteria string from parent |
||
668 | list($criteria, $bindings) = $this->buildCriteria($statements[$key], $bindValues); |
||
669 | |||
670 | if ($criteria) { |
||
671 | $criteria = $type . ' ' . $criteria; |
||
672 | } |
||
673 | } |
||
674 | |||
675 | return [$criteria, $bindings]; |
||
676 | } |
||
677 | |||
678 | /** |
||
679 | * Build join string |
||
680 | * |
||
681 | * @param array<string|Closure, mixed|mixed[]> $statements |
||
682 | * |
||
683 | * @return string |
||
684 | */ |
||
685 | protected function buildJoin(array $statements): string |
||
719 | } |
||
720 | } |
||
721 |