-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
BaseMapper.php
450 lines (407 loc) · 12.8 KB
/
BaseMapper.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
<?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;
use Exception;
use Feast\Collection\Set;
use Feast\Database\Query;
use Feast\Exception\ServerFailureException;
use Feast\Interfaces\DatabaseDetailsInterface;
use Feast\Interfaces\DatabaseFactoryInterface;
use Feast\Interfaces\DatabaseInterface;
use PDO;
use stdClass;
/**
* @psalm-consistent-constructor
*/
abstract class BaseMapper
{
/** @var string|null TABLE_NAME */
public const TABLE_NAME = null;
protected const PRIMARY_KEY = null;
protected const OBJECT_NAME = null;
/** @var string|null SEQUENCE_NAME */
protected const SEQUENCE_NAME = null;
public const CONNECTION = 'default';
final public const NOT_NULL = 'not_null';
protected DatabaseInterface $connection;
/**
* @throws ServiceContainer\NotFoundException
* @throws ServerFailureException
*/
public function __construct()
{
$this->connection = di(DatabaseFactoryInterface::class)->getConnection((string)static::CONNECTION);
}
/**
* Map an array to a Model.
*
* @param array $row
* @param array $dataTypes
* @return BaseModel
* @throws ServerFailureException
*/
protected function map(array $row, array $dataTypes): BaseModel
{
$class = (string)static::OBJECT_NAME;
/** @var BaseModel $return */
$return = new $class();
/**
* @var string $key
* @var string|null|int $val
*/
foreach ($row as $key => $val) {
if (property_exists($return, $key)) {
if ($val === null) {
$return->$key = null;
continue;
}
$return->$key = match ($dataTypes[$key]) {
Date::class => Date::createFromString((string)$val),
stdClass::class => (object)json_decode(
(string)$val
),
'int' => (int)$val,
'bool' => $this->getBoolValue($val),
default => mb_convert_encoding((string)$val, 'UTF-8', ['ISO-8859-1', 'UTF-8'])
};
}
}
$return->makeOriginalModel();
return $return;
}
protected function getBoolValue(string|int|bool $value): ?bool
{
return ($value === 'false') ? false : (bool)$value;
}
protected function getQueryBase(): Query
{
return $this->connection->select((string)static::TABLE_NAME);
}
/**
* Check if table exists.
*
* @param string|null $table
* @return bool
* @throws Exception
*/
public function tableExists(string $table = null): bool
{
$table = $table ?? (string)static::TABLE_NAME;
return $this->connection->tableExists($table);
}
/**
* Find model by Primary Key.
*
* @param int|string $value
* @param bool $validate
* @return BaseModel|null
* @throws ServerFailureException
* @throws ServiceContainer\NotFoundException
*/
public function findByPrimaryKey(int|string $value, bool $validate = false): ?BaseModel
{
return $this->findOneByFields(
[
$this->getEscapedFieldName((string)static::PRIMARY_KEY) => $value
]
);
}
/**
* Find one record by field.
*
* @param string $field
* @param string|int $value
* @return BaseModel|null
* @throws ServerFailureException
* @throws ServiceContainer\NotFoundException
*/
public function findOneByField(string $field, string|int $value): ?BaseModel
{
return $this->findOneByFields(
[
$field => $value
]
);
}
/**
* Find all records by field.
*
* @param string $field
* @param mixed $value
* @return Set
* @throws ServerFailureException
* @throws ServiceContainer\NotFoundException
*/
public function findAllByField(string $field, mixed $value): Set
{
return $this->findAllByFields(
[
$field => $value
]
);
}
protected function prepFindByFields(array $fields): Query
{
$select = $this->getQueryBase();
/**
* @var string $key
* @var string|null|int|float $val
*/
foreach ($fields as $key => $val) {
if ($val !== null && $val != self::NOT_NULL) {
$select->where($key . ' = ?', $val);
} elseif ($val == self::NOT_NULL) {
$select->where($key . ' IS NOT NULL');
} else {
$select->where($key . ' IS NULL');
}
}
return $select;
}
/**
* Find all records by key => value array of fields.
*
* @param array $fields
* @return Set
* @throws ServerFailureException|ServiceContainer\NotFoundException
*/
public function findAllByFields(array $fields): Set
{
$select = $this->prepFindByFields($fields);
return $this->fetchAll($select);
}
/**
* Find one records by key => value array of fields.
*
* @param array $fields
* @return ?BaseModel
* @throws ServerFailureException
* @throws ServiceContainer\NotFoundException
*/
public function findOneByFields(array $fields): ?BaseModel
{
$select = $this->prepFindByFields($fields);
return $this->fetchOne($select);
}
/**
* Fetch one record. Optionally, pass in query object to filter on.
*
* @param Query|null $select
* @return BaseModel|null
* @throws ServerFailureException|ServiceContainer\NotFoundException
*/
public function fetchOne(Query $select = null): ?BaseModel
{
$select = $select ?? $this->getQueryBase();
$select->limit(1);
/** @var BaseModel|null */
return $this->fetchAll($select)->first();
}
/**
* Fetch all record. Optionally, pass in query object to filter on.
*
* @param Query|null $select
* @return Set
* @throws ServerFailureException|ServiceContainer\NotFoundException|Exception
*/
public function fetchAll(Query $select = null): Set
{
$rows = [];
$select = $select ?? $this->getQueryBase();
$statement = $select->execute();
$dataTypes = di(DatabaseDetailsInterface::class)->getDataTypesForTable(
(string)static::TABLE_NAME,
(string)static::CONNECTION
);
// map each row to an object.
while ($row = $statement->fetch(PDO::FETCH_ASSOC)) {
$rows[] = $this->map($row, $dataTypes);
}
return new Set((string)static::OBJECT_NAME, $rows, preValidated: true);
}
public function getEscapedFieldName(string $field): string
{
return $this->connection->getEscapedIdentifier($field);
}
/**
* Save model to database.
*
* @param BaseModel $record
* @param bool $forceUpdate
* @throws Exception
*/
public function save(BaseModel $record, bool $forceUpdate = false): void
{
$recordArray = $this->getFieldsForSave($record);
if (count($recordArray) == 0) {
return;
}
/** @var string $primaryKey */
$primaryKey = static::PRIMARY_KEY;
/** @var string|int|null $recordPrimaryKey */
$recordPrimaryKey = $record->{$primaryKey} ?? null;
if (!empty($recordPrimaryKey) && (!empty($record->getOriginalModel()) || $forceUpdate)) {
unset($recordArray[$primaryKey]);
$update = $this->connection->update((string)static::TABLE_NAME, $recordArray)->where(
$this->getEscapedFieldName($primaryKey) . ' = ?',
$recordPrimaryKey
);
$update->execute();
$this->onSave($record, false);
} else {
$insert = $this->connection->insert((string)static::TABLE_NAME, $recordArray);
$insert->execute();
$lastInsert = $this->connection->lastInsertId((string)static::SEQUENCE_NAME);
if (empty($record->{$primaryKey})) {
$recordPrimaryKey = ctype_digit($lastInsert) && $lastInsert !== '0' ? (int)$lastInsert : $lastInsert;
$record->{$primaryKey} = $recordPrimaryKey;
}
$this->onSave($record);
}
$record->makeOriginalModel();
}
/**
* @param BaseModel $record
* @return array
*/
private function getFieldsForSave(BaseModel $record): array
{
$originalObject = $record->getOriginalModel();
$fields = get_object_vars($record);
if ($originalObject === null) {
return $this->buildFieldDataForSave(null, $fields);
}
$original = get_object_vars($originalObject);
unset($original[chr(0) . '*' . chr(0) . 'originalModel']);
if ($original === $fields) {
return [];
}
return $this->buildFieldDataForSave($originalObject, $fields);
}
protected function buildFieldDataForSave(BaseModel|null $originalObject, array $fields): array
{
$return = [];
/**
* @var string $field
* @var int|string|Date|null|stdClass|array $val
*/
foreach ($fields as $field => $val) {
if ($originalObject !== null && $originalObject->$field === $val) {
continue;
}
if ($val instanceof Date) {
$val = $val->getFormattedDate();
}
if ($val instanceof stdClass || is_array($val)) {
$val = json_encode($val);
}
$return[$this->getEscapedFieldName($field)] = $val;
}
return $return;
}
/**
* Delete database records by field.
*
* @param string $field
* @param string|int|null $value
* @return int Count of deleted records.
* @throws Exception
*/
public function deleteByField(string $field, null|string|int $value): int
{
return $this->deleteByFields(
[
$field => $value
]
);
}
/**
* Delete database records by fields in key => value format.
*
* @param array $fields
* @return int Count of deleted records.
* @throws Exception
*/
public function deleteByFields(array $fields): int
{
if (empty($fields)) {
return 0;
}
$sql = $this->connection->delete((string)static::TABLE_NAME);
/**
* @var string $key
* @var string|int|Date|null $value
*/
foreach ($fields as $key => $value) {
if ($value !== null && $value !== self::NOT_NULL) {
$sql->where($key . ' = ?', $value);
} elseif ($value == self::NOT_NULL) {
$sql->where($key . ' IS NOT NULL');
} else {
$sql->where($key . ' IS NULL');
}
}
$statement = $sql->execute();
return $statement->rowCount();
}
/**
* Delete record by Model. Uses primary key.
*
* @param BaseModel $record
* @return int
* @throws Exception
*/
public function delete(BaseModel $record): int
{
/** @var string $primaryKey */
$primaryKey = static::PRIMARY_KEY;
/** @var string|int|null $recordPrimaryKey */
$recordPrimaryKey = $record->$primaryKey ?? null;
if ($recordPrimaryKey !== null) {
$update = $this->connection->delete((string)static::TABLE_NAME)->where(
$this->getEscapedFieldName($primaryKey) . ' = ?',
$recordPrimaryKey
);
$statement = $update->execute();
$this->onDelete($record);
return $statement->rowCount();
}
return 0;
}
/**
* This method is called when a Model is saved.
*
* Override this in the mapper to call actions on save.
*
* @param BaseModel $record
* @param bool $new
*/
protected function onSave(BaseModel $record, bool $new = true): void
{
}
/**
* This method is called when a Model is deleted.
*
* Override this in the mapper to call actions on deletion.
*
* @param BaseModel $record
*/
protected function onDelete(BaseModel $record): void
{
}
}