-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModernPDO.php
168 lines (148 loc) · 3.79 KB
/
ModernPDO.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
<?php
namespace ModernPDO;
use ModernPDO\Actions\AlterTable;
use ModernPDO\Actions\CreateTable;
use ModernPDO\Actions\Delete;
use ModernPDO\Actions\DropTable;
use ModernPDO\Actions\Insert;
use ModernPDO\Actions\Select;
use ModernPDO\Actions\Update;
/**
* Wrapper over PDO.
*/
class ModernPDO
{
/**
* @var \PDO pdo object
*/
private \PDO $pdo;
/**
* @var Escaper escaper object
*/
private Escaper $escaper;
/**
* @var Factory factory object
*/
private Factory $factory;
/**
* ModernPDO constructor.
*
* @param \PDO $pdo PDO object
* @param class-string<Escaper> $escaper Full escaper class name
* @param class-string<Factory> $factory Full factory class name
*/
public function __construct(
\PDO $pdo,
string $escaper = Escaper::class,
string $factory = Factory::class,
) {
$this->pdo = $pdo;
$this->escaper = new $escaper($pdo);
$this->factory = new $factory($pdo, $this);
}
/**
* Returns Escaper object.
*/
public function escaper(): Escaper
{
return $this->escaper;
}
/**
* Returns Transaction object.
*/
public function transaction(): Transaction
{
return $this->factory->transaction();
}
/**
* Execute an SQL statement and return the number of affected rows.
*
* @param string $query The SQL statement to execute
*
* @see https://www.php.net/manual/en/pdo.exec.php
*/
public function exec(string $query): int
{
try {
$count = $this->pdo->exec($query);
} catch (\Throwable $th) {
$count = false;
}
return $count !== false ? $count : 0;
}
/**
* Prepares and executes an SQL statement.
*
* @param string $query The SQL statement to prepare and execute
* @param mixed[] $values Placeholders that will replace '?'
*
* @see https://www.php.net/manual/en/pdo.query.php
* @see https://www.php.net/manual/en/pdo.prepare.php
* @see https://www.php.net/manual/en/pdostatement.execute.php
*/
public function query(string $query, array $values = []): Statement
{
try {
if (empty($values)) {
$statement = $this->pdo->query($query);
} else {
$statement = $this->pdo->prepare($query);
if ($statement !== false) {
$statement->execute($values);
}
}
} catch (\Throwable $th) {
$statement = false;
}
return $this->factory->statement($statement !== false ? $statement : null);
}
/**
* Returns CreateTable object.
*/
public function createTable(string $table): CreateTable
{
return $this->factory->createTable($table);
}
/**
* Returns AlterTable object.
*/
public function alterTable(string $table): AlterTable
{
return $this->factory->alterTable($table);
}
/**
* Returns DropTable object.
*/
public function dropTable(string $table): DropTable
{
return $this->factory->dropTable($table);
}
/**
* Returns Select object.
*/
public function select(string $table): Select
{
return $this->factory->select($table);
}
/**
* Returns Insert object.
*/
public function insert(string $table): Insert
{
return $this->factory->insert($table);
}
/**
* Returns Update object.
*/
public function update(string $table): Update
{
return $this->factory->update($table);
}
/**
* Returns Delete object.
*/
public function delete(string $table): Delete
{
return $this->factory->delete($table);
}
}