-
Notifications
You must be signed in to change notification settings - Fork 0
/
pdo.php
228 lines (213 loc) · 5.83 KB
/
pdo.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
<?php
/**
* Class PdoAdapter
*
* General class for connecting to database
*/
class PdoAdapter extends Model
{
/**
* Pdo class instance
*
* @var PDO|null
*/
protected static $_pdo = null;
/**
* Get instance
*/
public static function getInstance()
{
if (!self::$_pdo) {
self::$_pdo = self::getPdo('localhost', 'elena', 'root', '');
}
return self::$_pdo;
}
/**
* Constructor
*/
public function __construct()
{
}
/**
* Clone
*/
private function __clone()
{
}
public function getPdo($host, $dbName, $userName, $password)
{
try{
return new PDO('mysql:host='.$host.';dbname='.$dbName, $userName, $password);
} catch (PDOException $e) {
echo 'Could not connect to the database';
}
}
/**
* Get select
*
* Condition should be formed like 'condition' => 'value'
*
* @param array $conditionArray
* @return array
*/
public function selectByCondition($conditionArray = null)
{
$pdo = self::getInstance();
$className = $this->getTableName();
if($conditionArray){
$condition = $className . ' ' . $this->formCondition($conditionArray);
$sql = "SELECT * FROM $condition";
} else {
$sql = "SELECT * FROM $className";
}
try{
$pdo->beginTransaction();
$stmt = $pdo->prepare($sql);
$stmt->execute($conditionArray);
$resultData = $stmt->fetchAll();
$pdo->commit();
if ($resultData){
return $resultData;
} else {
return null;
}
} catch (PDOException $e) {
$pdo->rollBack();
echo $e->getMessage();
}
}
/**
* String condition forming by array
*
* @param array $conditionArray
* @return string
*/
public function formCondition($conditionArray)
{
$condition = 'WHERE ';
foreach ($conditionArray as $key => $value) {
$condition .= "$key=:$key AND ";
}
return substr($condition, 0, -4);
}
/**
* Get table name of model, which is uses
*
* @return string
*/
public function getTableName()
{
return strtolower(get_called_class());
}
/**
* Insert function
*
* @param array $valuesArray
* @return string
*/
public function insert($valuesArray)
{
$pdo = self::getInstance();
$fields = $this->generateValuesForInsert(array_keys($valuesArray));
$preparedValues = $this->generateValuesForInsert(array_keys($valuesArray),true);
$tableName = $this->getTableName();
$sql = "INSERT INTO $tableName $fields VALUES $preparedValues";
try{
$pdo->beginTransaction();
$stmt = $pdo->prepare($sql);
$stmt->execute($valuesArray);
$lastInsertId = $pdo->lastInsertId();
$pdo->commit();
return $lastInsertId;
} catch (PDOException $e) {
$pdo->rollBack();
echo $e->getMessage();
}
}
/**
* Generates values string for insert query
*
* @param array $valuesArray
* @param null|bool $isPrepare
* @return string
*/
public function generateValuesForInsert($valuesArray, $isPrepare = null)
{
$resultString = '(';
if ($isPrepare) {
foreach($valuesArray as $value){
$resultString .= ':' . $value . ', ';
}
} else {
foreach($valuesArray as $value){
$resultString .= $value . ', ';
}
}
$resultString = substr($resultString, 0, -2);
return $resultString . ')';
}
/**
* Generate SET part of query in update from array ('field' => 'value')
*
* @param array $valuesToChange
* @return string
*/
public function generateSetCondition($valuesToChange)
{
$condition = 'SET ';
foreach ($valuesToChange as $key => $value) {
$condition .= "$key=:$key" . "1, ";
}
return substr($condition, 0, -2);
}
/**
* Update function
*
* Arrays should be formed like 'field' => 'value'
*
* @param array $valuesToChange
* @param array $condition
*/
public function update($valuesToChange, $condition)
{
$pdo = self::getInstance();
$tableName = $this->getTableName();
$setCondition = $this->generateSetCondition($valuesToChange);
foreach($valuesToChange as $key => $val) {
$valuesToChange[$key . '1'] = $valuesToChange[$key];
unset($valuesToChange[$key]);
}
$whereCondition = $this->formCondition($condition);
$sql = "UPDATE $tableName $setCondition $whereCondition";
try{
$pdo->beginTransaction();
$stmt = $pdo->prepare($sql);
$stmt->execute(array_merge($valuesToChange, $condition));
$pdo->commit();
} catch (PDOException $e) {
$pdo->rollBack();
echo $e->getMessage();
}
}
/**
* Delete data from the database by condition
*
* @param array $conditionArray
*/
public function delete($conditionArray)
{
$pdo = self::getInstance();
$tableName = $this->getTableName();
$condition = $tableName . ' ' . $this->formCondition($conditionArray);
$sql = "DELETE FROM $condition";
try{
$pdo->beginTransaction();
$stmt = $pdo->prepare($sql);
$stmt->execute($conditionArray);
$pdo->commit();
} catch (PDOException $e) {
$pdo->rollBack();
echo $e->getMessage();
}
}
}