-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathQuery.php
executable file
·469 lines (414 loc) · 12.6 KB
/
Query.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
<?php
/**
* Copyright 2021 Jeremy Presutti <Jeremy@Presutti.us>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare(strict_types=1);
namespace Feast\Database;
use Exception;
use Feast\Date;
use Feast\Exception\DatabaseException;
use Feast\Exception\InvalidArgumentException;
use Feast\Interfaces\LoggerInterface;
use Feast\Traits\DebugQuery;
use PDO;
use PDOStatement;
use Throwable;
abstract class Query
{
use DebugQuery;
public const DIRECTION_ASC = 'ASC';
public const DIRECTION_DESC = 'DESC';
public const JOIN_INNER = 'INNER JOIN';
public const JOIN_LEFT = 'LEFT JOIN';
public const JOIN_RIGHT = 'RIGHT JOIN';
public const TYPE_DELETE = 'DELETE';
public const TYPE_DESCRIBE = 'DESCRIBE';
public const TYPE_INSERT = 'INSERT';
public const TYPE_SELECT = 'SELECT';
public const TYPE_UPDATE = 'UPDATE';
/** @var array<string|int|bool|Date|float|null> $bindings */
protected array $bindings = [];
protected array $from = [];
protected array $group = [];
protected array $having = [];
/** @var array{table: string, statement?: string, fields: list<string>, bindings: list<string|int|bool|Date|float|null>} */
protected array $insert = ['table' => '', 'fields' => [], 'statement' => '', 'bindings' => []];
protected array $join = [];
protected ?array $limit = null;
protected array $order = [];
protected string $type = self::TYPE_SELECT;
/** @var array{table: string, statement: string, bindings: array<string|int|bool|Date|float|null>} */
protected array $update = ['table' => '', 'statement' => '', 'bindings' => []];
/** @var array<array{statement: string, bindings: Date|string|int|bool|float|array|null}> */
protected array $where = [];
protected LoggerInterface $logger;
public function __construct(protected PDO $database, ?LoggerInterface $logger = null)
{
$logger ??= di(LoggerInterface::INTERFACE_NAME);
$this->logger = $logger;
}
/**
* Add where clause.
*
* Bindings can be a scalar or Feast\Date and are variadic for multiple bindings.
*
* @param string $statement
* @param Date|string|int|bool|float|null ...$bindings
* @return static
*/
public function where(string $statement, Date|string|int|bool|float|null ...$bindings): static
{
$newBinding = [];
/** @var Date|string|int|bool|float|null $binding */
foreach ($bindings as $binding) {
$newBinding[] = $this->filterBinding($binding);
}
$this->where[] = ['statement' => $statement, 'bindings' => $newBinding];
return $this;
}
/**
* Add having clause.
*
* Bindings can be a scalar or Feast\Date and are variadic for multiple bindings.
*
* @param string $statement
* @param Date|string|int|bool|float|null ...$bindings
* @return static
*/
public function having(string $statement, Date|string|int|bool|float|null ...$bindings): static
{
$newBinding = [];
/** @var Date|string|int|bool|float|null $binding */
foreach ($bindings as $binding) {
$newBinding[] = $this->filterBinding($binding);
}
$this->having[] = ['statement' => $statement, 'bindings' => $newBinding];
return $this;
}
/**
* Add groupBy clause.
*
* @param string $statement
* @return static
*/
public function groupBy(string $statement): static
{
$this->group[] = ['statement' => $statement];
return $this;
}
/**
* Initialize describe query.
*
* @param string $table
* @return static
*/
public function describe(string $table): static
{
$this->type = self::TYPE_DESCRIBE;
$this->from($table);
return $this;
}
/**
* Initialize select query.
*
* @param string|null $table
* @return static
*/
public function select(string $table = null): static
{
$this->type = self::TYPE_SELECT;
if ($table) {
$this->from($table);
}
return $this;
}
/**
* Initialize delete query.
*
* @param string|null $table
* @return static
*/
public function delete(string $table = null): static
{
$this->type = self::TYPE_DELETE;
if ($table) {
$this->from($table);
}
return $this;
}
/**
* Initialize insert query.
*
* @param string $table
* @param array $boundParameters
* @return static
*/
public function insert(string $table, array $boundParameters = []): static
{
$this->type = self::TYPE_INSERT;
$fields = [];
$bindings = [];
/**
* @var string $key
* @var string|int|float|Date|null|bool $val
*/
foreach ($boundParameters as $key => $val) {
$fields[] = $key;
$bindings[] = $this->filterBinding($val);
}
$this->insert = ['table' => $table, 'fields' => $fields, 'bindings' => $bindings];
return $this;
}
/**
* Initialize replace query.
*
* @param string $table
* @param array $boundParameters
* @return static
*/
abstract public function replace(string $table, array $boundParameters = []): static;
/**
* Add from clause.
*
* @param string $table
* @param array $columns
* @return static
*/
public function from(string $table, array $columns = []): static
{
$this->from[$table] = $columns;
return $this;
}
/**
* Add left join clause.
*
* @param string $table
* @param string|array $joinToColumn
* @param string|array $joinFromColumn
* @return static
* @throws InvalidArgumentException
*/
public function leftJoin(string $table, string|array $joinToColumn, string|array $joinFromColumn): static
{
$this->verifyJoinOrThrow($joinToColumn, $joinFromColumn);
$this->join[] = [
'table' => $table,
'joinTo' => $joinToColumn,
'joinFrom' => $joinFromColumn,
'type' => self::JOIN_LEFT
];
return $this;
}
/**
* Add right join clause.
*
* @param string $table
* @param string|array $joinToColumn
* @param string|array $joinFromColumn
* @return static
* @throws InvalidArgumentException
*/
public function rightJoin(string $table, string|array $joinToColumn, string|array $joinFromColumn): static
{
$this->verifyJoinOrThrow($joinToColumn, $joinFromColumn);
$this->join[] = [
'table' => $table,
'joinTo' => $joinToColumn,
'joinFrom' => $joinFromColumn,
'type' => self::JOIN_RIGHT
];
return $this;
}
/**
* Add inner join clause.
*
* @param string $table
* @param string|array $joinToColumn
* @param string|array $joinFromColumn
* @return static
* @throws InvalidArgumentException
*/
public function innerJoin(string $table, string|array $joinToColumn, string|array $joinFromColumn): static
{
$this->verifyJoinOrThrow($joinToColumn, $joinFromColumn);
$this->join[] = [
'table' => $table,
'joinTo' => $joinToColumn,
'joinFrom' => $joinFromColumn,
'type' => self::JOIN_INNER
];
return $this;
}
/**
* @throws InvalidArgumentException
*/
protected function verifyJoinOrThrow(string|array $joinToColumn, string|array $joinFromColumn): void
{
if (is_string($joinToColumn) && is_string($joinFromColumn)) {
return;
}
if (is_string($joinToColumn) || is_string($joinFromColumn)) {
throw new InvalidArgumentException('On joins, both column sets must either be string or array');
}
if (count($joinFromColumn) !== count($joinToColumn)) {
throw new InvalidArgumentException('On joins, both column sets must be equal length');
}
}
/**
* Add left join using clause.
*
* @param string $table
* @param string|array $joinUsing
* @return static
*/
public function leftJoinUsing(string $table, string|array $joinUsing): static
{
$this->join[] = ['table' => $table, 'joinOn' => $joinUsing, 'type' => self::JOIN_LEFT];
return $this;
}
/**
* Add right join using clause.
*
* @param string $table
* @param string|array $joinUsing
* @return static
*/
public function rightJoinUsing(string $table, string|array $joinUsing): static
{
$this->join[] = ['table' => $table, 'joinOn' => $joinUsing, 'type' => self::JOIN_RIGHT];
return $this;
}
/**
* Add inner join using clause.
*
* @param string $table
* @param string|array $joinUsing
* @return static
*/
public function innerJoinUsing(string $table, string|array $joinUsing): static
{
$this->join[] = ['table' => $table, 'joinOn' => $joinUsing, 'type' => self::JOIN_INNER];
return $this;
}
/**
* Initialize update query.
*
* @param string $table
* @param array $parameters
* @return static
*/
public function update(string $table, array $parameters = []): static
{
$this->type = self::TYPE_UPDATE;
$statement = '';
/** @var array<string|int|float|bool|Date|null> $bindings */
$bindings = [];
/**
* @var string $key
* @var string|int|float|bool|Date|null $val
*/
foreach ($parameters as $key => $val) {
$statement .= $key . ' = ?, ';
$bindings[] = $this->filterBinding($val);
}
$statement = substr($statement, 0, -2);
$this->update = ['table' => $table, 'statement' => $statement, 'bindings' => $bindings];
return $this;
}
/**
* Add limit clause.
*
* @param int $count
* @param int|null $offset
* @return static
*/
public function limit(int $count, ?int $offset = null): static
{
$this->limit = ['count' => $count, 'offset' => $offset];
return $this;
}
/**
* Add order by clause.
*
* @param string $statement
* @return static
* @throws Exception
*/
public function orderBy(string $statement): static
{
$this->order[] = ['statement' => $statement];
return $this;
}
/**
* Convert query to string.
*
* @return string
*/
abstract public function __toString(): string;
/**
* Get table details for a table.
*
* @param string $table
* @return TableDetails
*/
abstract public function getDescribedTable(string $table): TableDetails;
/**
* Prepare and execute query.
*
* @return PDOStatement
* @throws Exception
*/
public function execute(): PdoStatement
{
$sql = $this->database->prepare((string)$this);
try {
$this->logger->debug('Query: ' . $this->getRawQueryWithParams());
$result = $sql->execute($this->bindings);
if ($result === false) {
throw new DatabaseException((string)$sql->errorInfo()[2]);
}
} catch (Throwable $exception) {
throw new DatabaseException($exception->getMessage());
}
return $sql;
}
/**
* Get debug usable version of query.
* All ? are replaced with their bindings.
*
* @return string
*/
public function getRawQueryWithParams(): string
{
$query = (string)$this;
return $this->debugQuery($query, $this->bindings);
}
/**
* Only implemented in PostgresQuery
*
* @param string $tableName
* @param string|null $primarykey
* @param bool $compoundPrimary
* @return string|null
*/
public function getSequenceForPrimary(string $tableName, ?string $primarykey, bool $compoundPrimary): ?string
{
return null;
}
protected function filterBinding(string|int|bool|Date|float|null $binding): string|int|bool|Date|float|null
{
return $binding;
}
}