-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModel.php
More file actions
executable file
·399 lines (366 loc) · 10.1 KB
/
Copy pathModel.php
File metadata and controls
executable file
·399 lines (366 loc) · 10.1 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
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
<?php
namespace Pet\Model;
use Pet\DataBase\DB;
use Pet\DataBase\Delete;
use Pet\DataBase\Update;
use Pet\DataBase\Select;
use Pet\DataBase\Insert;
use Pet\Errors\AppException;
use Pet\Tools\Tools;
abstract class Model extends DB
{
use Select, Update, Delete, Insert;
public array $hidden = [];
/**
* @var bool Флаг проверки на множественный результат при загрузке модели.
* Если false (по умолчанию) — при нахождении нескольких строк берётся первая.
* Если true — выбрасывается исключение, если найдено более 1 строки.
*/
protected bool $allowMultiple = false;
/**
* @var string|null Имя подключения к БД для этой модели
*/
protected static ?string $connection = null;
/**
* @var string|null Таблица для модели (может быть переопределена в наследнике)
*/
protected static ?string $tableName = null;
public function __construct(array|int|string|null $data = null, bool $isNotExistCreate = false, ?string $connectionName = null)
{
// Если указано статическое подключение для модели
if ($connectionName !== null) {
$this->setConnection($connectionName);
} elseif (static::$connection !== null) {
$this->setConnection(static::$connection);
}
parent::__construct($data, $this->connectionName);
if (!$this->exist() && $isNotExistCreate) {
if (gettype($data) == 'integer') $data = ['id' => $data];
$this->create($data);
}
}
/**
* Устанавливает имя таблицы для модели.
*
* @param string $table
* @return static
*/
public function setTable(string $table): static
{
$this->table = $table;
return $this;
}
/**
* Устанавливает псевдоним таблицы.
*
* @param string $alias
* @return static
*/
public function setTableAlias(string $alias): static
{
$this->tableAlias = $alias;
return $this;
}
/**
* __get
*
* @param string $name
* @return mixed
*/
public function __get(string $name): mixed
{
return $this->info[$name] ?? null;
}
/**
* __set
*
* @param string $name
* @param string|float|int|bool|null $value
* @return void
*/
public function __set(string $name, string|float|int|bool|null $value): void
{
$this->set($name, $value);
}
/**
* find
*
* @param array|null $fields
* @param callable|null $callback
* @return array
*/
public function find(array|null $fields = null, callable|null $callback = null): array
{
$this->select();
if ($fields) {
$table = $this->tableAlias ?: $this->table;
$table = !empty($table) ? $table . "." : "";
$fields = Tools::filter($fields, fn($k, $v) => "{$table}$k = '$v' ");
$this->where(implode(' AND ', $fields));
}
if ($callback) {
$callback($this);
}
return $this->fetch();
}
/**
* findM
*
* @param mixed $fields
* @param mixed $callback
* @return array
*/
public function findM(array|null $fields = null, callable|null $callback = null): array
{
$results = $this->find($fields, $callback);
$class = $this::class;
return array_map(fn($data) => (new $class())->setInfo($data), $results);
}
/**
* findAll — получить все записи из таблицы.
*
* @return array
*/
public function findAll(): array
{
return $this->select()->fetch();
}
/**
* findBy — найти по полю и значению.
*
* @param string $field
* @param mixed $value
* @param string $sign
* @return array
*/
public function findBy(string $field, mixed $value, string $sign = '='): array
{
return $this->select()->where($field, $value, $sign)->fetch();
}
/**
* findByM — найти по полю и значению, вернуть массив моделей.
*
* @param string $field
* @param mixed $value
* @param string $sign
* @return array
*/
public function findByM(string $field, mixed $value, string $sign = '='): array
{
$results = $this->findBy($field, $value, $sign);
$class = $this::class;
return array_map(fn($data) => (new $class())->setInfo($data), $results);
}
/**
* pluck — получить массив значений одного поля.
*
* @param string $column
* @return array
*/
public function pluck(string $column): array
{
$results = $this->select($column)->fetch();
return array_map(fn($row) => $row[$column] ?? null, $results);
}
/**
* chunk — обработка записей частями.
*
* @param int $size
* @param callable $callback
* @return void
*/
public function chunk(int $size, callable $callback): void
{
$page = 1;
do {
$this->clearQuery();
$results = $this->select()->page($page, $size)->fetch();
if (empty($results)) break;
$callback($results);
$page++;
} while (count($results) === $size);
}
/**
* setInfo
*
* @param array $data
* @return Model
*/
private function setInfo(array $data): Model
{
$this->info = $data;
return $this;
}
/**
* isTable
*
* @return bool
*/
public function isTable(): bool
{
return !empty($this->q("SHOW TABLES FROM `" . $this->getDbName() . "` LIKE 'migrate' ; ")->fetch());
}
/**
* set
*
* @param array|string $data
* @param mixed $value Значение поля; null записывается в БД как NULL
* @return bool
*/
public function set(array|string $data, mixed $value = null): bool
{
if (is_string($data)) {
$data = [$data => $value];
}
if (!$this->isInfo() || empty($this->info['id'])) {
throw new AppException("not info in model or not id in info");
}
$ok = $this->update($data)->whereId($this->get('id'))->execute();
if ($ok) {
foreach ($data as $field => $val) {
$this->info[$field] = $val;
}
}
return $ok;
}
/**
* reboot
*
* @return Model
*/
public function reboot(): Model
{
if ($this->exist()) {
$this->setInfoId((int)$this->get('id'));
}
return $this;
}
/**
* exist
*
* @param array|null $data
* @return bool
*/
public function exist(?array $data = null): bool
{
if (!empty($data)) {
return !empty($this->find($data, function (Model $m) {
$m->limit('1');
}));
}
return $this->isInfo();
}
/**
* ifExistSetOrCreate
*
* @param array $data
* @param array|int|string|null $whereElseId
* @return Model
*/
public function ifExistSetOrCreate(array $data, array|int|string|null $whereElseId = null): Model
{
if (!empty($whereElseId)) {
$this->setInfoId($whereElseId);
} else {
if (($data['id'] ?? false)) {
$this->setInfoId((int)$data['id']);
unset($data['id']);
}
}
if ($this->exist()) {
$this->set($data);
} else {
$this->create($data);
}
return $this;
}
/**
* ifExistDelete
*
* @param array|null $whereElseId
* @return bool
*/
public function ifExistDelete(?array $whereElseId = null): bool
{
$many = [];
if (!empty($whereElseId)) {
$many = $this->findM($whereElseId);
}
$isBool = false;
foreach ($many as $model) {
if ($model->exist()) {
$model->delete();
$isBool = true;
}
}
return $isBool;
}
/**
* data
*
* @return array
*/
public function data(): array
{
$result = [];
if ($this->isInfo()) {
$result = Tools::is_assos($this->info) === 'assos' ? $this->info : $this->info[0];
foreach ($this->hidden as $col) {
unset($result[$col]);
}
}
return $result;
}
/**
* findDelete
*
* @param array $params
* @param callable|null $callback
* @return array
*/
public function findDelete(array $params, callable|null $callback = null): array
{
$result = $this->find($params, $callback);
foreach ($result as $r) {
$class = $this::class;
$model = (new $class(['id' => $r['id']]));
if ($model->exist()) {
$model->delete();
}
}
return $result;
}
/**
* fresh — обновить info из БД.
*
* @return static
*/
public function fresh(): static
{
if ($this->exist()) {
$this->setInfoId((int)$this->get('id'));
}
return $this;
}
/**
* toArray — преобразовать модель в массив.
*
* @return array
*/
public function toArray(): array
{
return $this->data();
}
/**
* Создаёт новую запись и возвращает модель.
*
* @param array $data
* @return static|null
*/
public static function createNew(array $data): ?static
{
$model = new static();
$id = $model->create($data);
return $id ? $model : null;
}
}