-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLudoDBModel.php
More file actions
666 lines (610 loc) · 16.8 KB
/
LudoDBModel.php
File metadata and controls
666 lines (610 loc) · 16.8 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
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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
<?php
/**
* Representation of a ludoDB table.
* @package LudoDB
* @author Alf Magne Kalleland <post@dhtmlgoodies.com>
*/
/**
* Abstract LudoDBModel class
* @package LudoDB
* @example examples/cities/DemoCity.php
*/
abstract class LudoDBModel extends LudoDBObject
{
/**
* Record data
* @var array
*/
protected $data = array();
/**
* Uncommited data
* @var array
*/
protected $updates;
/**
* Array of external class references
* @var array
*/
private $externalClasses = array();
/**
* True when commit has been disabled, i.e. no saving will be done
* for this object.
* @var
*/
private $commitDisabled;
/**
* True when object has been populated with data from db
* @var bool
*/
private $populated = false;
/**
* Risky delete table data or drop table sql query waiting for execution.
* @var string
*/
private $riskyQuery;
/**
* Populate with data from db
*/
protected function populate()
{
$this->populated = true;
$this->arguments = $this->getValidArguments($this->arguments);
$data = $this->db->one($this->sqlHandler()->getSql(), $this->sqlHandler()->getArguments());
if (isset($data)) {
$this->populateWith($data);
$this->setId($this->getValue($this->parser->getIdField()));
}
}
/**
* Validates constructor arguments.
* @param $params
* @return array
*/
private function getValidArguments($params)
{
$paramNames = $this->parser->getConstructorParams();
for ($i = 0, $count = count($params); $i < $count; $i++) {
$params[$i] = $this->getValidArgument($paramNames[$i], $params[$i]);
}
return $params;
}
/**
* Return valid value for argument with given name
* @param $key
* @param $value
* @return mixed
*/
protected function getValidArgument($key, $value)
{
return $value;
}
/**
* Populate model with these data
* @param array $data
*/
private function populateWith($data = array())
{
foreach ($data as $key => $value) {
$this->data[$key] = $value;
}
}
/**
* Return column value. This method will return
* * Uncommitted value if exists or value from db
* * Value from external models/collection
* * Value of static columns
* * Default values.
* Example:
* <code>
* public function getFirstname(){
* return $this->getValue('firstname');
* }
* </code>
* @param $column
* @return null
*/
protected function getValue($column)
{
$this->autoPopulate();
if($this->parser->isStaticColumn($column)){
return $this->parser->getStaticValue($column);
}
if ($this->parser->isExternalColumn($column)) {
return $this->getExternalValue($column);
}
if (isset($this->updates) && isset($this->updates[$column])) {
return $this->updates[$column] == LudoDBSql::DELETED ? null : $this->updates[$column];
}
return isset($this->data[$column]) ? $this->data[$column] : $this->parser->getDefaultValue($column);
}
/**
* Auto populate model with data from db.
*/
private function autoPopulate()
{
if (!$this->populated && !empty($this->arguments)) {
$this->populate();
}
}
/**
* Return external value
* @param $column
* @return mixed
*/
private function getExternalValue($column)
{
$method = $this->parser->getGetMethod($column);
return $this->getExternalClassFor($column)->$method();
}
/**
* Return external class reference for external column
* @param String $column
* @return LudoDBCollection table
*/
private function getExternalClassFor($column)
{
if (!isset($this->externalClasses[$column])) {
$class = $this->parser->externalClassNameFor($column);
$fk = $this->parser->foreignKeyFor($column);
if (isset($fk)) {
$val = $this->getValue($fk);
} else {
if (!$this->getId()) $this->commit();
$val = $this->getId();
}
$this->externalClasses[$column] = new $class($val);
}
return $this->externalClasses[$column];
}
/**
* Set a column value. This value will not be committed to db until
* a call to commit is made.
* Example:
* <code>
* public function setFirstName($name){
* $this->setValue('firstname', $name');
* }
* </code>
* @param $column
* @param $value
* @return null
*/
protected function setValue($column, $value)
{
if ($this->parser->isExternalColumn($column)) {
$this->setExternalValue($column, $value);
} else {
$value = $this->db->escapeString($value);
if (!isset($this->updates)) $this->updates = array();
$this->updates[$this->parser->getInternalColName($column)] = $value;
}
return null;
}
/**
* Update column value of external column
* @param $column
* @param $value
*/
private function setExternalValue($column, $value)
{
$method = $this->parser->getSetMethod($column);
if (isset($method)) {
$this->getExternalClassFor($column)->$method($value);
}
}
/**
* Disable commit for this object
*/
public function disableCommit()
{
$this->commitDisabled = true;
}
/**
* Enable commit for this object. commit is by default enabled
*/
public function enableCommit()
{
$this->commitDisabled = false;
}
/**
* Commit changes to the database.
* Example:
* <code>
* $person = new Person();
* $person->setFirstname('John');
* $person->setLastname('Johnson');
* $person->commit();
* echo $person->getId();
* </code>
* @return null|void
*/
public function commit()
{
if ($this->commitDisabled) return null;
if (!isset($this->updates)) {
if ($this->getId() || !$this->parser->isIdAutoIncremented()) {
return null;
}
}
if ($this->getId()) {
$this->update();
} else {
$this->insert();
}
if (isset($this->updates)) {
foreach ($this->updates as $key => $value) {
$this->data[$key] = $value === LudoDBSql::DELETED ? null : $value;
}
}
foreach ($this->externalClasses as $class) {
$this->commitExternal($class);
}
$this->updates = null;
return $this->getId();
}
/**
* Execute commit on classes for external columns.
* @param LudoDBObject $class
*/
private function commitExternal($class)
{
$class->commit();
}
/**
* Internal update method
*/
private function update()
{
LudoDBValidator::getInstance()->validateUpdate($this);
if ($this->isValid()) {
$this->beforeUpdate();
$this->clearCache();
$this->db->query($this->sqlHandler()->getUpdateSql(), isset($this->updates) ? array_values($this->updates) : null);
}
}
/**
* Return uncommited data
* @return array
*/
public function getUncommitted()
{
return $this->updates;
}
/**
* Private insert method
*/
private function insert()
{
LudoDBValidator::getInstance()->validateSave($this);
if ($this->isValid()) {
$this->beforeInsert();
$this->db->query($this->sqlHandler()->getInsertSQL(), isset($this->updates) ? array_values($this->updates) : null);
$this->setId($this->db->getInsertId());
}
}
/**
* Method executed before record is updated
*/
protected function beforeUpdate()
{
}
/**
* Method executed before new record is saved in db
*/
protected function beforeInsert()
{
}
/**
* Rollback updates
*/
public function rollback()
{
$this->updates = null;
}
/**
* Update id field
* @param $id
*/
protected function setId($id)
{
$field = $this->parser->getIdField();
if(!isset($this->data[$field])){
$this->data[$field] = $id;
$this->externalClasses = array();
}
}
/**
* Return id of current record.
* @return string|int|null
*/
public function getId()
{
$this->autoPopulate();
$field = $this->parser->getIdField();
return isset($this->data[$field]) ? $this->data[$field] : null;
}
/**
* Create DB table
*/
public function createTable()
{
$this->db->query($this->sqlHandler()->getCreateTableSql(), $this->parser->getDefaultValues());
$this->createIndexes();
$this->insertDefaultData();
}
public function getSQLCreate(){
$sql = $this->sqlHandler()->getCreateTableSql();
$params = $this->parser->getDefaultValues();
if(!empty($params)){
$sql = LudoDBSql::fromPrepared($sql, $params);
}
return $sql;
}
/**
* Returns true if database table exists.
* @return bool
*/
public function exists()
{
return $this->db->tableExists($this->parser->getTableName());
}
/**
* Drop database table. You need to call yesImSure afterwards.
* Example:
* <code>
* $person = new Person();
* $person->drop()->yesImSure();
* </code>
*/
public function drop()
{
if ($this->exists()) {
$this->riskyQuery = "drop table " . $this->parser->getTableName();
}
return $this;
}
/**
* Delete all data from this table. You need to call yesImSure afterwards.
* Example:
* <code>
* $person = new Person();
* $person->deleteTableData()->yesImSure();
* </code>
* @return LudoDBModel
*/
public function deleteTableData()
{
$this->riskyQuery = "delete from " . $this->parser->getTableName();
return $this;
}
/**
* Executes drop or deleteTableData
* @example
* $p = new Person();
* $p->drop()->yesImSure();
*/
public function yesImSure()
{
if (isset($this->riskyQuery)) {
$this->db->query($this->riskyQuery);
if ($this->shouldCache("read")) {
LudoDBCache::clearByClass(get_class($this));
$json = new LudoDBCache();
$json->deleteTableData()->yesImSure();
}
$this->riskyQuery = null;
}
}
/**
* Create database indexes defined in table config
*/
private function createIndexes()
{
$indexes = $this->parser->getIndexes();
if (!isset($indexes)) return;
foreach ($indexes as $index) {
$this->db->query("create index " . $this->getIndexName($index) . " on " . $this->parser->getTableName() . "(" . $index . ")");
}
}
/**
* Returns unique index name
* @param $field
* @return string
*/
private function getIndexName($field)
{
return 'IND_' . md5($this->parser->getTableName() . $field);
}
/**
* Populate database table with default data defined in table config
*/
protected function insertDefaultData()
{
$data = $this->parser->getDefaultData();
if (!isset($data)) return;
foreach ($data as $row) {
$cl = $this->getNewInstance();
foreach ($row as $key => $value) {
$cl->setValue($key, $value);
}
$cl->commit();
}
}
/**
* Return new instance of this LudoDBModel
* @return LudoDBModel class
*/
private function getNewInstance()
{
$className = get_class($this);
return new $className;
}
/**
* Return key-pair values with null values removed.
* @param array $keys
* @return array
*/
public function getSomeValuesFiltered(array $keys)
{
return $this->some($keys, true);
}
/**
* Return model values.
* @param array $keys
* @return array
*/
public function getSomeValues(array $keys)
{
return $this->some($keys, false);
}
/**
* Return values for these keys. When $filtered is true, onlye
* columns with values(not null) will be returned.
* @param array $keys
* @param bool $filtered
* @return array
*/
private function some(array $keys, $filtered = false)
{
$ret = array();
foreach ($keys as $key) {
$col = $this->parser->getPublicColumnName($key);
$val = $this->getValue($key);
if ($this->parser->canReadFrom($col)) {
if (!$filtered || isset($val)) $ret[$col] = $val;
}
}
return $ret;
}
/**
* Clear data from model.
*/
public function clearValues()
{
$this->data = array();
$this->updates = null;
}
/**
* Return value of public columns
* @return array
*/
public function getValues()
{
$this->autoPopulate();
$columns = $this->parser->getColumns();
$ret = array();
foreach ($columns as $column => $def) {
$colName = $this->parser->getPublicColumnName($column);
if ($this->parser->canReadFrom($colName)) {
$ret[$colName] = $this->getValue($column);
}
}
if($this->parser->hasStaticColumns()){
$ret = array_merge($ret, $this->parser->getStaticValues());
}
return array_merge($ret, $this->getJoinColumns());
}
/**
* Return values from joined columns.
* @return array
*/
private function getJoinColumns()
{
$ret = array();
if (isset($this->config['join'])) {
foreach ($this->config['join'] as $join) {
foreach ($join['columns'] as $col) {
$ret[$col] = $this->getValue($col);
}
}
}
return $ret;
}
/**
* Return true if update and save is allowed to run.
* @return bool
*/
public function isValid()
{
return true;
}
/**
* Creates magic get and set methods for columns. Example
* columns "firstname" will have it's own "getFirstname" and "setFirstname" method.
* @param $name
* @param $arguments
* @return null
* @throws Exception
*/
public function __call($name, $arguments)
{
if (substr($name, 0, 3) === 'set' && $name !== "setId") {
$col = $this->parser->getColumnByMethod($name);
if (isset($col) && $this->parser->canWriteTo($col)) {
return $this->setValue($col, $arguments[0]);
}
}
if (substr($name, 0, 3) === 'get') {
$col = $this->parser->getColumnByMethod($name);
if (isset($col) && $this->parser->canReadFrom($col)) {
return $this->getValue($col);
}
}
throw new Exception("Invalid method call " . $name);
}
/**
* Populate columns you can write to with these data
* @example:
* <code>
* $person = new Person(1);
* $person->populate(array(
* "firstname" => "Jane", "lastname" => "Johnson"
* ));
* $person->commit();
* </code>
* @param $data
* @return bool
*/
public function setValues($data)
{
$valuesSet = false;
foreach ($data as $column => $value) {
if ($this->parser->canWriteTo($column)) {
$this->setValue($column, $value);
$valuesSet = true;
}
}
return $valuesSet;
}
/**
* Populate and save data. Returns array "<idField>" => "<id>"
* Example:
* <code>
* $city = new City();
* $data = $city->save(array("city" => "Stavanger", "country" => "Norway"));
* var_dump($data);
* </code>
* @param $data
* @return array
*/
public function save($data)
{
if (empty($data)) return array();
$idField = $this->parser->getIdField();
if (isset($data[$idField])) $this->setId($data[$idField]);
$this->setValues($data);
$this->commit();
return array($idField => $this->getId());
}
/**
* Delete record
*/
public function delete()
{
if ($this->getId()) {
$this->db->query("delete from " . $this->parser->getTableName() . " where " . $this->parser->getIdField() . " = ?", $this->getId());
$this->clearCache();
$this->clearValues();
}
}
}