-
Notifications
You must be signed in to change notification settings - Fork 1
/
dbfeature.php
450 lines (377 loc) · 9.3 KB
/
dbfeature.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
/* Author Bawyka T.P.
* site https://github.com/Bawyka/dbfeature
* version 2.0
* License Free
*/
# ДРАЙВЕР ДЛЯ РАБОТЫ С БАЗОЙ ДАННЫХ
class DBFeature {
protected $DB_HOST = "localhost";
protected $DB_NAME = "test";
protected $DB_USER = "root";
protected $DB_PASS = "";
public $CHARSET = "UTF-8";
protected $id = false;
protected $has_many = false;
protected $belongs_to = false;
protected $has_one = false;
// current table
protected $tbl = false;
function __construct(){
try
{
$this->pdo = new PDO("mysql:host=".$this->DB_HOST.";dbname=".$this->DB_NAME.";charset=".$this->CHARSET,$this->DB_USER,$this->DB_PASS);
}
catch(PDOException $e)
{
die("Error ". $e->getMessage());
}
}
// __call установит таблицу
public function __call( $method, $param )
{
$tables = array();
if ($result = $this->pdo->query("SHOW TABLES"))
{
while ($row = $result->fetch(PDO::FETCH_NUM))
{
$tables[] = $row[0];
}
}
if (in_array($method,$tables))
{
$this->tbl = $method;
// Параметр $param (array) по умолчанию является массивом
if (isset($param) and count($param)>0)
{
// Если задан только 1 параметр и он является числом, т.е. id
if (is_numeric($param[0]))
{
$this->id = intval($param[0]);
}
// Если введен массив с ключем id
if (is_array($param[0]) and array_key_exists('id',$param[0]))
{
$this->id = intval($param[0]['id']);
// # ОДИН КО МНОГИМ # has_many
if (isset($param[0]['has_many']) and !empty($param[0]['has_many']))
{
// По дефолту ключ таблица_id
$key = (!isset($param[0]['key'])) ? $key = $this->tbl.'_id' : $param[0]['key'];
$this->has_many = array(
'table'=>$param[0]['has_many'],
'key'=>$key,
);
}
// # ОДИН К ОДНОМУ # has_one
if (isset($param[0]['has_one']) and !empty($param[0]['has_one']))
{
// По дефолту ключ таблица_id
$key = (!isset($param[0]['key'])) ? $key = $param[0]['has_one'].'_id' : $param[0]['key'];
$this->has_one = array(
'table'=>$param[0]['has_one'],
'key'=>$key,
);
}
}
}
}
else
{
echo "Table $method doesn't exists! <br />";
}
return $this;
}
// Loading as Object
public function Load()
{
// Existance Check
if ($this->id and $this->ExistsRow('id',$this->id))
{
return (object)$this->GetOne('*','id',$this->id);
}
return false;
}
/* Query
* @param $query (string)
* @return bool
*/
public function Query($query)
{
if ($result = $this->pdo->query($query))
{
return true;
}
else
{
return false;
}
}
/* getting all data from table
* out @return (associative array) $data
*/
public function GetData()
{
if (!$this->tbl) return false;
if (is_array($this->has_many))
{
if ($result = $this->pdo->prepare("SELECT * FROM ".$this->has_many['table']." WHERE ".$this->has_many['key']."=:id"))
{
$result->bindValue(':id',$this->id,PDO::PARAM_INT);
$result->execute();
$data = $result->fetchAll(PDO::FETCH_ASSOC);
return $data;
}
}
if ($result = $this->pdo->prepare("SELECT * FROM ".$this->tbl.""))
{
$result->execute();
$data = $result->fetchAll(PDO::FETCH_ASSOC);
return $data;
}
}
/* Delete One Record
* @param (int) $idn - identifier of record
* @param $val - value of the identifier
* @return bool
*/
public function DelOne($clm, $val)
{
if (!$this->tbl) return false;
if ($result = $this->pdo->prepare("DELETE FROM `".$this->tbl."` WHERE `".$clm."`=:val LIMIT 1"))
{
$result->bindValue(":val",$val);
$result->execute();
}
if ($result = $this->pdo->prepare("SELECT COUNT(*) FROM `".$this->tbl."` WHERE `".$clm."`=:val"))
{
$result->bindValue(":val",$val);
$result->execute();
$nRows = $result->fetchColumn();
if ($nRows === "0" or $nRows===0)
{
return TRUE;
}
else
{
return FALSE;
}
}
return FALSE;
}
/* Checking if the Row exists in the table or No.
* @param (string) $clm - column name
* @param (string/int) $rc - record value
*/
public function ExistsRow($clm,$rc)
{
if (!$this->tbl) return false;
if ($result = $this->pdo->prepare("SELECT COUNT(*) as c FROM `".$this->tbl."` WHERE `".$clm."`=:rc LIMIT 1"))
{
$result->bindValue(":rc",$rc);
$result->execute();
$nRows = $result->fetchColumn();
if ($nRows==="0" or $nRows===0)
{
return FALSE;
}
else
{
return TRUE;
}
}
return FALSE;
}
/* Update One Record
* @param (string) $clm - Column Name
* @param (string/int) $val - value
* @return bool
*/
public function UpdOne($clm,$upd,$idn,$val)
{
if (!$this->tbl) return false;
if ($result = $this->pdo->prepare("UPDATE `".$this->tbl."` SET `".$clm."`=:upd WHERE `".$idn."`=:val LIMIT 1"))
{
$result->bindValue(":upd",$upd);
$result->bindValue(":val",$val);
$result->execute();
$count = $result->rowCount();
if ($count===0)
{
return FALSE;
}
else
{
return TRUE;
}
}
return FALSE;
}
/* Get One Data
* @param (string) $clm - column of wanted data
* @param $idn - identifier of WHERE
* @param $val - identifier value
* @return $data
*/
public function GetOne($clm=NULL,$idn=NULL,$val=NULL)
{
if (!$this->tbl) return false;
// Если есть связь has_one
if (is_array($this->has_one))
{
// Сначала ключ узнаем
if ($result = $this->pdo->prepare("SELECT ".$this->has_one['key']." as `key` FROM ".$this->tbl." WHERE id=:id LIMIT 1"))
{
$result->bindValue(':id',$this->id);
$result->execute();
$key = $result->fetch(PDO::FETCH_ASSOC)['key'];
}
if (isset($key) and is_numeric($key))
{
// Связь has_one использует `id`
if ($result = $this->pdo->prepare("SELECT * FROM ".$this->has_one['table']." WHERE `id`=:key LIMIT 1"))
{
$result->bindValue(':key',$key,PDO::PARAM_INT);
$result->execute();
$data = $result->fetchAll(PDO::FETCH_ASSOC);
return $data;
}
}
}
if ($result = $this->pdo->prepare("SELECT ".$clm." FROM `".$this->tbl."` WHERE `".$idn."`=:val LIMIT 1"))
{
$result->bindValue(":val",$val);
$result->execute();
$assoc = $result->fetch(PDO::FETCH_ASSOC);
return $assoc;
}
return FALSE;
}
/* count some rows
* @param (string) $clm - requested column
* @param $idn - identifier of row
* @param $val - value of row
* @return (int) $count
*/
public function CountRows($clm,$idn,$val)
{
if (!$this->tbl) return false;
if ($result = $this->pdo->prepare("SELECT `".$clm."` FROM `".$this->tbl."` WHERE `".$idn."`=:val"))
{
$result->bindValue(":val",$val);
$result->execute();
$count = $result->rowCount();
return $count;
}
return FALSE;
}
/* fetch whole row
* @param $idn - identifier
* @param $val - value of identifier
*/
public function GetRec($idn,$val)
{
if (!$this->tbl) return false;
if ($result = $this->pdo->prepare("SELECT * FROM `".$this->tbl."` WHERE `".$idn."`=:val LIMIT 1"))
{
$result->bindValue(":val",$val);
$result->execute();
$data = $result->fetch(PDO::FETCH_ASSOC);
if (is_array($data))
{
return $data;
}
else
{
return FALSE;
}
}
return FALSE;
}
/* Get Every Record
* @param (string) $clm - name of the requested column
* @param (string) $idn - identifier
* @param (string) $val - value of identifier
* @return (associative array) $data
*/
public function GetEvery($clm,$idn,$val)
{
if (!$this->tbl) return false;
if ($result = $this->pdo->prepare("SELECT `".$clm."` FROM `".$this->tbl."` WHERE `".$idn."`=:val"))
{
$result->bindValue(":val",$val);
$result->execute();
$data = $result->fetchAll(PDO::FETCH_ASSOC);
if (is_array($data))
{
return $data;
}
else
{
return FALSE;
}
}
return FALSE;
}
/* Insertion
* @param (array) $params - array like "field"=>"value"
* @return (int) lastinserted identifier $lId
*/
public function PutData($params = array())
{
if (!$this->tbl) return false;
$f = "("; $v = "("; $q = "";
foreach ($params as $key => $val)
{
$f.=$key.",";
$v.=$val.",";
$q.="?,";
}
$f = substr_replace($f ,"",-1);
$v = substr_replace($v ,"",-1);
$q = substr_replace($q ,"",-1);
$sql = "INSERT INTO `".$this->tbl."`".$f.") VALUES ($q)";
$i = 1;
if ($result = $this->pdo->prepare($sql))
{
foreach ($params as $key => $val)
{
$result->bindValue($i,$val);
$i++;
}
$result->execute();
$lId = $this->pdo->lastInsertId();
return $lId;
}
}
/*
* Checking is Empty Table
*/
public function isEmpty()
{
if (!$this->tbl) return false;
if ($result = $this->pdo->query("SELECT COUNT(*) as c FROM ".$this->tbl))
{
$result->execute();
$empty = $result->fetch(PDO::FETCH_ASSOC);
}
if ($empty['c']==="0" or $empty['c']===0)
return true;
else
return false;
}
/* Set table
* @param (int) $t - table name
*/
public function SetTable( $t )
{
if (!empty($t))
{
$this->tbl = $t;
}
else
{
return FALSE;
}
}
}