-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDB.php
More file actions
executable file
·400 lines (360 loc) · 10.7 KB
/
Copy pathDB.php
File metadata and controls
executable file
·400 lines (360 loc) · 10.7 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
400
<?php
namespace Pet\DataBase;
use Error;
use PDO;
use Exception;
use PDOException;
use PDOStatement;
use Pet\App;
use Pet\Command\Console\Console;
use Pet\DataBase\Config\DataBase;
use Pet\Debug\DebugBar;
use Pet\Errors\AppException;
use Pet\Tools\Tools;
abstract class DB
{
/**
* @var string Имя подключения к БД (для мульти-БД)
*/
protected string $connectionName = 'default';
/**
* @var string|null Тип БД (mysql, pgsql, sqlite) — определяется из конфига
*/
protected ?string $db_type = null;
/**
* @var string|null Хост
*/
protected ?string $db_host = null;
/**
* @var string Имя БД
*/
protected string $db_name = '';
/**
* @var string|int|null Порт
*/
protected string|int|null $db_port = null;
/**
* @var string|null Пользователь
*/
protected ?string $db_user = null;
/**
* @var string|null Пароль
*/
protected ?string $db_password = null;
protected string $strQuery = "";
protected string $strWhere = "";
protected string $strOrders = "";
protected string $strJoin = "";
protected string $strGroups = "";
protected string $strLimit = "";
protected string $strOffset = "";
protected $SUB = "";
protected $info = [];
/**
* @var bool Флаг проверки на множественный результат.
* Если false (по умолчанию) — при нахождении нескольких строк берётся первая.
* Если true — выбрасывается исключение, если найдено более 1 строки.
*/
protected bool $allowMultiple = false;
protected string $table = "";
protected string|false $tableAlias = false;
protected $column = [];
protected $error = [];
private PDO|null $DB = null;
/**
* Устанавливает имя подключения к БД.
* Позволяет переключаться между разными базами данных.
*
* @param string $name Имя подключения из конфига
* @return static
*/
public function setConnection(string $name): static
{
$this->connectionName = $name;
$this->DB = null; // Сбросим PDO, чтобы переподключиться
return $this;
}
/**
* Возвращает имя текущего подключения.
*
* @return string
*/
public function getConnectionName(): string
{
return $this->connectionName;
}
protected function pdo(): PDO
{
if ($this->DB === null) {
$this->DB = ConnectionManager::connection($this->connectionName);
// Синхронизируем свойства с конфигом
$config = DataBase::get($this->connectionName);
$this->db_type = $config['type'];
$this->db_host = $config['host'];
$this->db_name = $config['name'];
$this->db_port = $config['port'];
$this->db_user = $config['user'];
$this->db_password = $config['password'];
}
return $this->DB;
}
/**
* __construct
*
* @param array|int|string|null $id
* @param string|null $connectionName Имя подключения (для мульти-БД)
* @return void
*/
public function __construct(array|int|string|null $id = null, ?string $connectionName = null)
{
if ($connectionName !== null) {
$this->setConnection($connectionName);
}
$this->pdo(); // Инициализация подключения
$this->setInfoId($id);
}
/**
* fetch
*
* @return array
*/
public function fetch($many = true) : array
{
try {
$query = $this->toString();
$this->clearQuery();
$start = microtime(true);
if ($many) {
$result = $this->q($query)->fetchAll(PDO::FETCH_ASSOC) ?: [];
} else {
$result = $this->q($query)->fetch(PDO::FETCH_ASSOC) ?: [];
}
$this->logQuery($query, $start);
return $result;
} catch (PDOException|Exception $q) {
$this->error[] = $q->errorInfo ?? $q->getMessage();
throw new AppException($q->errorInfo[2] ?? $q->getMessage(), $q->errorInfo[1] ?? $q->getCode());
return [];
}
}
public function toString(): string
{
return $this->strQuery . $this->strJoin . $this->strWhere . $this->strGroups . $this->strOrders . $this->strLimit . $this->strOffset;
}
private function clearQuery(): void
{
$this->strQuery = $this->strJoin = $this->strWhere = $this->strGroups = $this->strOrders = $this->strOffset = $this->strLimit = '';
}
/**
* execute
*
* @return bool
*/
public function execute(): bool
{
try {
$query = $this->toString();
$this->clearQuery();
$start = microtime(true);
$result = $this->pdo()->prepare($query)->execute();
$this->logQuery($query, $start);
return $result;
} catch (PDOException $q) {
$this->error[] = $q->errorInfo;
throw new AppException($q->errorInfo[2] ?? $q->getMessage(), $q->errorInfo[1] ?? $q->getCode());
return false;
}
}
/**
* conn — больше не используется напрямую.
* Подключение управляется через ConnectionManager::connection()
*
* @deprecated Используйте $this->pdo()
*/
private function conn(): void
{
$this->pdo();
}
/**
* FromTable
*
* @param mixed $from
* @return string
*/
public function FromTable(string $from = "FROM"): string
{
return " $from `{$this->table}` ".($this->tableAlias ? " AS {$this->tableAlias} " : "");
}
public function getTableName(): string
{
return $this->table;
}
/**
* q
*
* @param mixed $query
* @return PDOStatement
*/
public function q(string $query): PDOStatement
{
$pdo = $this->pdo();
if (!$pdo) {
throw new AppException('NO CONNECT DB');
}
$start = microtime(true);
$result = $pdo->query($query, PDO::FETCH_ASSOC);
$this->logQuery($query, $start);
return $result;
}
/**
* setInfoId
*
* @param mixed $id
* @return void
*/
public function setInfoId(mixed $id): void
{
if (empty($id)) {
return;
}
$pdoStatment = null;
$query = '';
if (gettype($id) == 'string' || gettype($id) == 'integer') {
$query = "SELECT * FROM {$this->table} WHERE {$this->table}.id = '$id';";
$pdoStatment = $this->q($query);
}
if (gettype($id) == 'array') {
$data = implode(" AND ", Tools::filter($id, fn($k, $v) => "{$this->table}.$k = '$v' "));
$query = "SELECT * FROM {$this->table} WHERE $data LIMIT 2;";
$pdoStatment = $this->q($query);
}
$result = $pdoStatment ? $pdoStatment->fetchAll(PDO::FETCH_ASSOC) : [];
if (count($result) > 1) {
if ($this->allowMultiple) {
throw new AppException('Модель не может присвоить множество ваш запрос получает более 2 строк ' . $query);
}
// По умолчанию берём первую запись
$this->info = $result[0];
return;
}
$this->info = count($result) == 1 ? $result[0] : [];
}
/**
* isInfo
*
* @return bool
*/
public function isInfo(): bool
{
return !empty($this->info);
}
/**
* get
*
* @param string|int $field
* @return string|null
*/
public function get(string|int $field): string|null
{
if ($this->isInfo()) {
return $this->info[$field] ?? null;
}
return null;
}
/**
* Экранирует значения массива для SQL.
* null → NULL (без кавычек), остальные значения — через PDO::quote().
*
* @param array $array
* @return void
*/
public function arrayQuote(&$array): void
{
$pdo = $this->pdo();
foreach ($array as $i => $v) {
if ($v === null) {
$array[$i] = 'NULL';
continue;
}
$array[$i] = $pdo->quote((string) $v);
}
}
public function endError(): null
{
return $this->error[array_key_last($this->error)] ?? null;
}
public function getInfo(): array
{
return $this->info ?? [];
}
/**
* Возвращает lastInsertId от текущего PDO-подключения.
*
* @return string
*/
public function lastInsertId(): string
{
return $this->pdo()->lastInsertId();
}
/**
* Возвращает имя текущей БД.
*
* @return string
*/
public function getDbName(): string
{
return ConnectionManager::getDbName($this->connectionName);
}
/**
* Начинает транзакцию.
*
* @return bool
*/
public function beginTransaction(): bool
{
return $this->pdo()->beginTransaction();
}
/**
* Подтверждает транзакцию.
*
* @return bool
*/
public function commit(): bool
{
return $this->pdo()->commit();
}
/**
* Откатывает транзакцию.
*
* @return bool
*/
public function rollback(): bool
{
return $this->pdo()->rollBack();
}
/**
* Проверяет, активна ли транзакция.
*
* @return bool
*/
public function inTransaction(): bool
{
return $this->pdo()->inTransaction();
}
/**
* logQuery
*
* Логирует SQL-запрос в DebugBar, если включён режим отладки.
*
* @param string $query SQL-запрос
* @param float $start Время начала выполнения (microtime)
* @return void
*/
protected function logQuery(string $query, float $start): void
{
if (defined('PET_DEBUG') && PET_DEBUG === true) {
$time = microtime(true) - $start;
DebugBar::addQuery($query, $time);
}
}
}