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
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
|
<?php defined('SYSPATH') or die('No direct script access.');
/**
* Object Relational Mapping (ORM) is a method of abstracting database
* access to standard PHP calls. All table rows are represented as a model.
*
* @see http://en.wikipedia.org/wiki/Active_record
* @see http://en.wikipedia.org/wiki/Object-relational_mapping
*
* $Id$
*
* @package Core
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
*/
class ORM_Core {
// Current relationships
protected $has_one = array();
protected $belongs_to = array();
protected $has_many = array();
protected $has_and_belongs_to_many = array();
// Current object
protected $object = array();
protected $changed = array();
protected $loaded = FALSE;
protected $saved = FALSE;
protected $sorting = array('id' => 'asc');
// Related objects
protected $related = array();
// Model table information
protected $object_name;
protected $table_name;
protected $table_columns;
protected $ignored_columns;
// Table primary key and value
protected $primary_key = 'id';
protected $primary_val = 'name';
// Model configuration
protected $table_names_plural = TRUE;
protected $reload_on_wakeup = TRUE;
// Database configuration
protected $db = 'default';
protected $db_applied = array();
/**
* Creates and returns a new model.
*
* @chainable
* @param string model name
* @param mixed parameter for find()
* @return ORM
*/
public static function factory($model, $id = NULL)
{
// Set class name
$model = ucfirst($model).'_Model';
return new $model($id);
}
/**
* Prepares the model database connection and loads the object.
*
* @param mixed parameter for find or object to load
* @return void
*/
public function __construct($id = NULL)
{
// Set the object name
$this->object_name = strtolower(substr(get_class($this), 0, -6));
// Initialize database
$this->__initialize();
if ($id === NULL OR $id === '')
{
// Clear the object
$this->clear();
}
elseif (is_object($id))
{
// Object is loaded and saved
$this->loaded = $this->saved = TRUE;
// Load an object
$this->load_values((array) $id);
}
else
{
// Find an object
$this->find($id);
}
}
/**
* Prepares the model database connection, determines the table name,
* and loads column information.
*
* @return void
*/
public function __initialize()
{
if ( ! is_object($this->db))
{
// Get database instance
$this->db = Database::instance($this->db);
}
if (empty($this->table_name))
{
// Table name is the same as the object name
$this->table_name = $this->object_name;
if ($this->table_names_plural === TRUE)
{
// Make the table name plural
$this->table_name = inflector::plural($this->table_name);
}
}
if (is_array($this->ignored_columns))
{
// Make the ignored columns mirrored = mirrored
$this->ignored_columns = array_combine($this->ignored_columns, $this->ignored_columns);
}
// Load column information
$this->reload_columns();
}
/**
* Allows serialization of only the object data and state, to prevent
* "stale" objects being unserialized, which also requires less memory.
*
* @return array
*/
public function __sleep()
{
// Store only information about the object
return array('object_name', 'object', 'changed', 'loaded', 'saved', 'sorting');
}
/**
* Prepares the database connection and reloads the object.
*
* @return void
*/
public function __wakeup()
{
// Initialize database
$this->__initialize();
if ($this->reload_on_wakeup === TRUE)
{
// Reload the object
$this->reload();
}
}
/**
* Handles pass-through to database methods. Calls to query methods
* (query, get, insert, update) are not allowed. Query builder methods
* are chainable.
*
* @param string method name
* @param array method arguments
* @return mixed
*/
public function __call($method, array $args)
{
if (method_exists($this->db, $method))
{
if (in_array($method, array('query', 'get', 'insert', 'update', 'delete')))
throw new Kohana_Exception('orm.query_methods_not_allowed');
// Method has been applied to the database
$this->db_applied[$method] = $method;
// Number of arguments passed
$num_args = count($args);
if ($method === 'select' AND $num_args > 3)
{
// Call select() manually to avoid call_user_func_array
$this->db->select($args);
}
else
{
// We use switch here to manually call the database methods. This is
// done for speed: call_user_func_array can take over 300% longer to
// make calls. Mose database methods are 4 arguments or less, so this
// avoids almost any calls to call_user_func_array.
switch ($num_args)
{
case 0:
// Support for things like reset_select, reset_write, list_tables
return $this->db->$method();
break;
case 1:
$this->db->$method($args[0]);
break;
case 2:
$this->db->$method($args[0], $args[1]);
break;
case 3:
$this->db->$method($args[0], $args[1], $args[2]);
break;
case 4:
$this->db->$method($args[0], $args[1], $args[2], $args[3]);
break;
default:
// Here comes the snail...
call_user_func_array(array($this->db, $method), $args);
break;
}
}
return $this;
}
else
{
throw new Kohana_Exception('core.invalid_method', $method, get_class($this));
}
}
/**
* Handles retrieval of all model values, relationships, and metadata.
*
* @param string column name
* @return mixed
*/
public function __get($column)
{
if (isset($this->ignored_columns[$column]))
{
return NULL;
}
elseif (isset($this->object[$column]) OR array_key_exists($column, $this->object))
{
return $this->object[$column];
}
elseif (isset($this->related[$column]))
{
return $this->related[$column];
}
elseif ($column === 'primary_key_value')
{
return $this->object[$this->primary_key];
}
elseif (($owner = isset($this->has_one[$column])) OR isset($this->belongs_to[$column]))
{
// Determine the model name
$model = ($owner === TRUE) ? $this->has_one[$column] : $this->belongs_to[$column];
// Load model
$model = ORM::factory($model);
if (isset($this->object[$column.'_'.$model->primary_key]))
{
// Use the FK that exists in this model as the PK
$where = array($model->primary_key => $this->object[$column.'_'.$model->primary_key]);
}
else
{
// Use this model PK as the FK
$where = array($this->foreign_key() => $this->object[$this->primary_key]);
}
// one<>alias:one relationship
return $this->related[$column] = $model->find($where);
}
elseif (in_array($column, $this->has_one) OR in_array($column, $this->belongs_to))
{
$model = ORM::factory($column);
if (isset($this->object[$column.'_'.$model->primary_key]))
{
// Use the FK that exists in this model as the PK
$where = array($model->primary_key => $this->object[$column.'_'.$model->primary_key]);
}
else
{
// Use this model PK as the FK
$where = array($this->foreign_key() => $this->object[$this->primary_key]);
}
// one<>one relationship
return $this->related[$column] = ORM::factory($column, $where);
}
elseif (isset($this->has_many[$column]))
{
// Load the "middle" model
$through = ORM::factory(inflector::singular($this->has_many[$column]));
// Load the "end" model
$model = ORM::factory(inflector::singular($column));
// Load JOIN info
$join_table = $through->table_name;
$join_col1 = $model->foreign_key(NULL, $join_table);
$join_col2 = $model->foreign_key(TRUE);
// one<>alias:many relationship
return $this->related[$column] = $model
->join($join_table, $join_col1, $join_col2)
->where($this->foreign_key(NULL, $join_table), $this->object[$this->primary_key])
->find_all();
}
elseif (in_array($column, $this->has_many))
{
// one<>many relationship
return $this->related[$column] = ORM::factory(inflector::singular($column))
->where($this->foreign_key($column), $this->object[$this->primary_key])
->find_all();
}
elseif (in_array($column, $this->has_and_belongs_to_many))
{
// Load the remote model, always singular
$model = ORM::factory(inflector::singular($column));
// Load JOIN info
$join_table = $model->join_table($this->table_name);
$join_col1 = $model->foreign_key(NULL, $join_table);
$join_col2 = $model->foreign_key(TRUE);
// many<>many relationship
return $this->related[$column] = $model
->join($join_table, $join_col1, $join_col2)
->where($this->foreign_key(NULL, $join_table), $this->object[$this->primary_key])
->find_all();
}
elseif (in_array($column, array
(
'object_name', // Object
'primary_key', 'primary_val', 'table_name', 'table_columns', // Table
'loaded', 'saved', // Status
'has_one', 'belongs_to', 'has_many', 'has_and_belongs_to_many', // Relationships
)))
{
// Model meta information
return $this->$column;
}
else
{
throw new Kohana_Exception('core.invalid_property', $column, get_class($this));
}
}
/**
* Handles setting of all model values, and tracks changes between values.
*
* @param string column name
* @param mixed column value
* @return void
*/
public function __set($column, $value)
{
if (isset($this->ignored_columns[$column]))
{
return NULL;
}
elseif (isset($this->object[$column]) OR array_key_exists($column, $this->object))
{
if (isset($this->table_columns[$column]))
{
// Data has changed
$this->changed[$column] = $column;
// Object is no longer saved
$this->saved = FALSE;
}
$this->object[$column] = $this->load_type($column, $value);
}
else
{
throw new Kohana_Exception('core.invalid_property', $column, get_class($this));
}
}
/**
* Checks if object data is set.
*
* @param string column name
* @return boolean
*/
public function __isset($column)
{
return (isset($this->object[$column]) OR isset($this->related[$column]));
}
/**
* Unsets object data.
*
* @param string column name
* @return void
*/
public function __unset($column)
{
unset($this->object[$column], $this->changed[$column], $this->related[$column]);
}
/**
* Displays the primary key of a model when it is converted to a string.
*
* @return string
*/
public function __toString()
{
return (string) $this->object[$this->primary_key];
}
/**
* Returns the values of this object as an array.
*
* @return array
*/
public function as_array()
{
return $this->object;
}
/**
* Finds and loads a single database row into the object.
*
* @chainable
* @param mixed primary key or an array of clauses
* @return ORM
*/
public function find($id = NULL)
{
if ($id !== NULL)
{
if (is_array($id))
{
// Search for all clauses
$this->db->where($id);
}
else
{
// Search for a specific column
$this->db->where($this->unique_key($id), $id);
}
}
return $this->load_result();
}
/**
* Finds multiple database rows and returns an iterator of the rows found.
*
* @chainable
* @param integer SQL limit
* @param integer SQL offset
* @return ORM_Iterator
*/
public function find_all($limit = NULL, $offset = 0)
{
if ($limit !== NULL)
{
// Set limit
$this->db->limit($limit);
}
if ($offset !== NULL)
{
// Set offset
$this->db->offset($offset);
}
if ( ! isset($this->db_applied['orderby']))
{
// Apply sorting
$this->db->orderby($this->sorting);
}
return $this->load_result(TRUE);
}
/**
* Creates a key/value array from all of the objects available. Uses find_all
* to find the objects.
*
* @param string key column
* @param string value column
* @return array
*/
public function select_list($key, $val)
{
// Return a select list from the results
return $this->select($key, $val)->find_all()->select_list($key, $val);
}
/**
* Validates the current object. This method should generally be called
* via the model, after the $_POST Validation object has been created.
*
* @param object Validation array
* @return boolean
*/
public function validate(Validation $array, $save = FALSE)
{
if ( ! $array->submitted())
{
$safe_array = $array->safe_array();
foreach ($safe_array as $key => $val)
{
// Pre-fill data
$array[$key] = $this->$key;
}
}
// Validate the array
if ($status = $array->validate())
{
$safe_array = $array->safe_array();
foreach ($safe_array as $key => $val)
{
// Set new data
$this->$key = $val;
}
if ($save === TRUE OR is_string($save))
{
// Save this object
$this->save();
if (is_string($save))
{
// Redirect to the saved page
url::redirect($save);
}
}
}
// Return validation status
return $status;
}
/**
* Saves the current object. If the object is new, it will be reloaded
* after being saved.
*
* @chainable
* @return ORM
*/
public function save()
{
if (empty($this->changed))
return $this;
$data = array();
foreach ($this->changed as $column)
{
// Compile changed data
$data[$column] = $this->object[$column];
}
if ($this->loaded === TRUE)
{
$query = $this->db
->where($this->primary_key, $this->object[$this->primary_key])
->update($this->table_name, $data);
// Object has been saved
$this->saved = TRUE;
// Nothing has been changed
$this->changed = array();
}
else
{
$query = $this->db
->insert($this->table_name, $data);
if ($query->count() > 0)
{
if (empty($this->object[$this->primary_key]))
{
// Load the insert id as the primary key
$this->object[$this->primary_key] = $query->insert_id();
}
// Reload the object
$this->reload();
}
}
return $this;
}
/**
* Deletes the current object from the database. This does NOT destroy
* relationships that have been created with other objects.
*
* @chainable
* @return ORM
*/
public function delete($id = NULL)
{
if ($id === NULL AND $this->loaded)
{
// Use the the primary key value
$id = $this->object[$this->primary_key];
}
// Delete this object
$this->db->where($this->primary_key, $id)->delete($this->table_name);
return $this->clear();
}
/**
* Delete all objects in the associated table. This does NOT destroy
* relationships that have been created with other objects.
*
* @chainable
* @param array ids to delete
* @return ORM
*/
public function delete_all($ids = NULL)
{
if (is_array($ids))
{
// Delete only given ids
$this->db->in($this->primary_key, $ids);
}
else
{
// Delete all records
$this->db->where(TRUE);
}
// Delete all objects
$this->db->delete($this->table_name);
return $this->clear();
}
/**
* Unloads the current object and clears the status.
*
* @chainable
* @return ORM
*/
public function clear()
{
// Object is no longer loaded or saved
$this->loaded = $this->saved = FALSE;
// Nothing has been changed
$this->changed = array();
// Replace the current object with an empty one
$this->load_values(array());
return $this;
}
/**
* Reloads the current object from the database.
*
* @chainable
* @return ORM
*/
public function reload()
{
return $this->find($this->object[$this->primary_key]);
}
/**
* Reload column definitions.
*
* @chainable
* @param boolean force reloading
* @return ORM
*/
public function reload_columns($force = FALSE)
{
if ($force === TRUE OR empty($this->table_columns))
{
// Load table columns
$this->table_columns = $this->db->list_fields($this->table_name);
if (empty($this->table_columns))
throw new Kohana_Exception('database.table_not_found', $this->table);
}
return $this;
}
/**
* Tests if this object has a relationship to a different model.
*
* @param object related ORM model
* @return boolean
*/
public function has(ORM $model)
{
if ( ! $this->loaded)
return FALSE;
if (($join_table = array_search(inflector::plural($model->object_name), $this->has_and_belongs_to_many)) === FALSE)
return FALSE;
if (is_int($join_table))
{
// No "through" table, load the default JOIN table
$join_table = $model->join_table($this->table_name);
}
if ($model->loaded)
{
// Select only objects of a specific id
$this->db->where($model->foreign_key(NULL, $join_table), $model->primary_key_value);
}
// Return the number of rows that exist
return $this->db
->where($this->foreign_key(NULL, $join_table), $this->object[$this->primary_key])
->count_records($join_table);
}
/**
* Adds a new relationship to between this model and another.
*
* @param object related ORM model
* @return boolean
*/
public function add(ORM $model)
{
if ( ! $this->loaded)
return FALSE;
if ($this->has($model))
return TRUE;
if (($join_table = array_search(inflector::plural($model->object_name), $this->has_and_belongs_to_many)) === FALSE)
return FALSE;
if (is_int($join_table))
{
// No "through" table, load the default JOIN table
$join_table = $model->join_table($this->table_name);
}
// Insert the new relationship
$this->db->insert($join_table, array
(
$this->foreign_key(NULL, $join_table) => $this->object[$this->primary_key],
$model->foreign_key(NULL, $join_table) => $model->primary_key_value,
));
return TRUE;
}
/**
* Adds a new relationship to between this model and another.
*
* @param object related ORM model
* @return boolean
*/
public function remove(ORM $model)
{
if ( ! $this->has($model))
return FALSE;
if (($join_table = array_search(inflector::plural($model->object_name), $this->has_and_belongs_to_many)) === FALSE)
return FALSE;
if (is_int($join_table))
{
// No "through" table, load the default JOIN table
$join_table = $model->join_table($this->table_name);
}
if ($model->loaded)
{
// Delete only a specific object
$this->db->where($model->foreign_key(NULL, $join_table), $model->primary_key_value);
}
// Return the number of rows deleted
return $this->db
->where($this->foreign_key(NULL, $join_table), $this->object[$this->primary_key])
->delete($join_table)
->count();
}
/**
* Count the number of records in the table.
*
* @return integer
*/
public function count_all()
{
// Return the total number of records in a table
return $this->db->count_records($this->table_name);
}
/**
* Count the number of records in the last query, without LIMIT or OFFSET applied.
*
* @return integer
*/
public function count_last_query()
{
if ($sql = $this->db->last_query())
{
if (stripos($sql, 'LIMIT') !== FALSE)
{
// Remove LIMIT from the SQL
$sql = preg_replace('/\bLIMIT\s+[^a-z]+/i', '', $sql);
}
if (stripos($sql, 'OFFSET') !== FALSE)
{
// Remove OFFSET from the SQL
$sql = preg_replace('/\bOFFSET\s+\d+/i', '', $sql);
}
// Get the total rows from the last query executed
$result = $this->db->query
(
'SELECT COUNT(*) AS '.$this->db->escape_column('total_rows').' '.
'FROM ('.trim($sql).') AS '.$this->db->escape_table('counted_results')
);
if ($result->count())
{
// Return the total number of rows from the query
return (int) $result->current()->total_rows;
}
}
return FALSE;
}
/**
* Proxy method to Database list_fields.
*
* @param string table name
* @return array
*/
public function list_fields($table)
{
// Proxy to database
return $this->db->list_fields($table);
}
/**
* Proxy method to Database field_data.
*
* @param string table name
* @return array
*/
public function field_data($table)
{
// Proxy to database
return $this->db->field_data($table);
}
/**
* Proxy method to Database last_query.
*
* @return string
*/
public function last_query()
{
// Proxy to database
return $this->db->last_query();
}
/**
* Proxy method to Database field_data.
*
* @chainable
* @param string SQL query to clear
* @return ORM
*/
public function clear_cache($sql = NULL)
{
// Proxy to database
$this->db->clear_cache($sql);
return $this;
}
/**
* Returns the unique key for a specific value. This method is expected
* to be overloaded in models if the model has other unique columns.
*
* @param mixed unique value
* @return string
*/
public function unique_key($id)
{
return $this->primary_key;
}
/**
* Determines the name of a foreign key for a specific table.
*
* @param string related table name
* @param string prefix table name (used for JOINs)
* @return string
*/
public function foreign_key($table = NULL, $prefix_table = NULL)
{
if ($table === TRUE)
{
// Return the name of this tables PK
return $this->table_name.'.'.$this->primary_key;
}
if (is_string($prefix_table))
{
// Add a period for prefix_table.column support
$prefix_table .= '.';
}
if ( ! is_string($table) OR ! isset($this->object[$table.'_'.$this->primary_key]))
{
// Use this table
$table = $this->table_name;
if ($this->table_names_plural === TRUE)
{
// Make the key name singular
$table = inflector::singular($table);
}
}
return $prefix_table.$table.'_'.$this->primary_key;
}
/**
* This uses alphabetical comparison to choose the name of the table.
*
* Example: The joining table of users and roles would be roles_users,
* because "r" comes before "u". Joining products and categories would
* result in categories_prouducts, because "c" comes before "p".
*
* Example: zoo > zebra > robber > ocean > angel > aardvark
*
* @param string table name
* @return string
*/
public function join_table($table)
{
if ($this->table_name > $table)
{
$table = $table.'_'.$this->table_name;
}
else
{
$table = $this->table_name.'_'.$table;
}
return $table;
}
/**
* Loads a value according to the types defined by the column metadata.
*
* @param string column name
* @param mixed value to load
* @return mixed
*/
protected function load_type($column, $value)
{
if (is_object($value) OR is_array($value) OR ! isset($this->table_columns[$column]))
return $value;
// Load column data
$column = $this->table_columns[$column];
if ($value === NULL AND ! empty($column['null']))
return $value;
if ( ! empty($column['binary']) AND ! empty($column['exact']) AND (int) $column['length'] === 1)
{
// Use boolean for BINARY(1) fields
$column['type'] = 'boolean';
}
switch ($column['type'])
{
case 'int':
$value = ($value === '' AND ! empty($data['null'])) ? NULL : (int) $value;
break;
case 'float':
$value = (float) $value;
break;
case 'boolean':
$value = (bool) $value;
break;
case 'string':
$value = (string) $value;
break;
}
return $value;
}
/**
* Loads an array of values into into the current object.
*
* @chainable
* @param array values to load
* @return ORM
*/
protected function load_values(array $values)
{
// Get the table columns
$columns = array_keys($this->table_columns);
// Make sure all the columns are defined
$this->object += array_combine($columns, array_fill(0, count($columns), NULL));
foreach ($columns as $column)
{
// Value for this column
$value = isset($values[$column]) ? $values[$column] : NULL;
// Set value manually, to avoid triggering changes
$this->object[$column] = $this->load_type($column, $value);
}
return $this;
}
/**
* Loads a database result, either as a new object for this model, or as
* an iterator for multiple rows.
*
* @chainable
* @param boolean return an iterator or load a single row
* @return ORM for single rows
* @return ORM_Iterator for multiple rows
*/
protected function load_result($array = FALSE)
{
if ($array === FALSE)
{
// Only fetch 1 record
$this->db->limit(1);
}
if ( ! isset($this->db_applied['select']))
{
// Selete all columns by default
$this->db->select($this->table_name.'.*');
}
// Load the result
$result = $this->db->get($this->table_name);
if ($array === TRUE)
{
// Return an iterated result
return new ORM_Iterator($this, $result);
}
if ($result->count() === 1)
{
// Model is loaded and saved
$this->loaded = $this->saved = TRUE;
// Clear relationships and changed values
$this->related = $this->changed = array();
// Load object values
$this->load_values($result->result(FALSE)->current());
}
else
{
// Clear the object, nothing was found
$this->clear();
}
return $this;
}
} // End ORM
|