public
Description: Git mirror of the CMS Made Simple 2.0 rewrite
Homepage: http://cmsmadesimple.org
Clone URL: git://github.com/tedkulp/cmsmadesimple-2-0.git
cmsmadesimple-2-0 / lib / classes / orm / class.cms_object_relational_mapping.php
100644 1333 lines (1170 sloc) 38.999 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
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
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
<?php // -*- mode:php; tab-width:4; indent-tabs-mode:t; c-basic-offset:4; -*-
#CMS - CMS Made Simple
#(c)2004-2007 by Ted Kulp (ted@cmsmadesimple.org)
#This project's homepage is: http://cmsmadesimple.org
#
#This program is free software; you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation; either version 2 of the License, or
#(at your option) any later version.
#
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#You should have received a copy of the GNU General Public License
#along with this program; if not, write to the Free Software
#Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#$Id$
 
/**
* Base class for all things ORM. All classes that want to be part of
* the ORM system need to extend this class. They also need to call the
* static register_orm_class() method after the class is defined in order
* to be reigstered for the system (and allow things like find_by_* to
* work).
*
* @author Ted Kulp
* @since 2.0
* @version $Revision$
* @modifiedby $LastChangedBy$
* @lastmodified $Date$
* @license GPL
**/
abstract class CmsObjectRelationalMapping extends CmsObject implements ArrayAccess
{
  /**
   * The ORM version number. This basically is a number that
   * should be incremented when an object has a major change.
   *
   * Adding or removing fields from the table doesn't really
   * constitute a change. It's more like changes to a table
   * name, enabling or disabling a sequence or changing the
   * name of an id field. Since some areas of CMSMS store
   * serialized versions of objects, there could be a
   * discrepency between the current version and the version
   * that was just unserialized. We can use the version number
   * to test to see if it's the same.
   *
   * If not set, then it defaults to 1. If you never really
   * change the object, then you shouldn't need to modify it.
   */
  var $orm_version = 1;
 
  /**
   * Used to define any default settings for this object. Not
   * all fields need to be defined, as they'll come out of the
   * database field names anyway.
   */
  var $params = array();
 
  /**
   * Used to define a variation between a database field and
   * what the property name should be. Takes a hash of
   * 'database field name' => 'property name'
   */
  var $field_maps = array();
  
  /**
   * Used to define a different table name for this object if it
   * doesn't match the predetermined name based on the object's class
   * name. The prefix in config.php will be applied automatically.
   */
  var $table = '';
  
  /**
   * Used to define an alternate field for the id. This basically says
   * whether or not we insert or update.
   */
  var $id_field = 'id';
  
  /**
   * Used to define a sequence to use for creating a new id to use. If
   * blank, then the auto increment for the database is used for the id.
   */
  var $sequence = '';
  
  /**
   * Used to store validation error messages if a save does not go as
   * expected.
   */
  var $validation_errors = array();
  
  /**
   * Used to store any association relationships.
   **/
  var $associations = array();
  
  /**
   * Used to define which field holds the record create date.
   */
  var $create_date_field = 'create_date';
  
  /**
   * Used to define which field holds the record modified date.
   */
  var $modified_date_field = 'modified_date';
  
  /**
   * Used to only update objects (not insert) that have changed
   * any of their properties. This means you should be using properites
   * ($obj->some_field or $obj->SetSomeField()) so that the dirty bit
   * gets flipped properly.
   */
  var $dirty = false;
  
  /**
   * Used in situations where we're doing a bit of polymorphism. The type
   * field will store the name of the class that this object currently is.
   * Then, when it's loaded, we will automatically instantiate that type of
   * object again and not just go by the name of the class that called the
   * find. If you want this functionality to not exist, make this variable
   * blank.
   */
  var $type_field = 'type';
  
  function __construct()
  {
    parent::__construct();
 
    //Setup the predefined fields in the $params array. Relax: The definitions are cached.
    $fields = $this->get_columns_in_table();
    if (count($fields) > 0) {
      foreach ($fields as $field=>$data) {
        if (array_key_exists($field, $this->field_maps)) $field = $this->field_maps[$field];
        if (!array_key_exists($field, $this->params)) {
          $this->params[$field] = '';
        }
      }
    }
    
    $this->setup(true);
  }
  
  public function __wakeup()
  {
    $this->setup();
  }
  
  /**
   * Method for setting up various pieces of the object. This is mainly used to setup
   * associations on objects that will be used in sessions so that they get properly setup
   * again after the object comes out of serialization.
   *
   * @param bool Whether or not this is the first time this was called from the constructor
   * @return void
   * @author Ted Kulp
   **/
  public function setup($first_time = false)
  {
  }
 
  /**
   * Used to create a has_many association. This should be called in the constructor of
   * the data object. Any associations are lazy loaded on the first call to them and are
   * cached for the life of the object.
   *
   * @param string The name of the association. It will then be called via
   * $obj->assication_name. Make sure it's not the same name as a
   * parameter, or it will never get called.
   * @param string The name of the class on the other end of the association. This should
   * be the name that would be used when calling from the orm (cmsms()->child_class_name).
   * @param string The name of the field in the association class that contains the matching id to
   * this object.
   * @param array Extra parameters that should be sent to the query. Allows for things like order by, joins,
   * etc when the association is queried.
   * @return void
   * @author Ted Kulp
   **/
  protected function create_has_many_association($association_name, $child_class_name, $child_field, $extra_params = array())
  {
    cms_orm()->create_has_many_association($this, $association_name, $child_class_name, $child_field, $extra_params);
  }
  
  /**
   * Used to create a has_one association. This should be called in the constructor of
   * the data object. Any associations are lazy loaded on the first call to them and are
   * cached for the life of the object.
   *
   * @param string The name of the association. It will then be called via
   * $obj->assication_name. Make sure it's not the same name as a
   * parameter, or it will never get called.
   * @param string The name of the class on the other end of the association. This should
   * be the name that would be used when calling from the orm (cmsms()->child_class_name).
   * @param string The name of the field in the association class that contains the matching id to
   * this object.
   * @param array Extra parameters that should be sent to the query. Allows for things like order by, joins,
   * etc when the association is queried.
   * @return void
   * @author Ted Kulp
   **/
  protected function create_has_one_association($association_name, $child_class_name, $child_field, $extra_params = array())
  {
    cms_orm()->create_has_one_association($this, $association_name, $child_class_name, $child_field, $extra_params);
  }
  
  /**
   * Used to create a belongs_to association. This should be called in the constructor of
   * the data object. Any associations are lazy loaded on the first call to them and are
   * cached for the life of the object.
   *
   * @param string The name of the association. It will then be called via
   * $obj->assication_name. Make sure it's not the same name as a
   * parameter, or it will never get called.
   * @param string The name of the class on the other end of the association. This should
   * be the name that would be used when calling from the orm (cmsms()->belongs_to_class_name).
   * @param string The name of the field in the this class that contains the matching id to
   * the given belongs_to_class_name.
   * @param array Extra parameters that should be sent to the query. Allows for things like order by, joins,
   * etc when the association is queried.
   * @return void
   * @author Ted Kulp
   **/
  protected function create_belongs_to_association($association_name, $belongs_to_class_name, $child_field, $extra_params = array())
  {
    cms_orm()->create_belongs_to_association($this, $association_name, $belongs_to_class_name, $child_field, $extra_params);
  }
  
  /**
   * Used to create a belongs_to association. This should be called in the constructor of
   * the data object. Any associations are lazy loaded on the first call to them and are
   * cached for the life of the object.
   *
   * @param string The name of the association. It will then be called via
   * $obj->assication_name. Make sure it's not the same name as a
   * parameter, or it will never get called.
   * @param string The name of the class on the other end of the association. This should
   * be the name that would be used when calling from the orm (cmsms()->belongs_to_class_name).
   * @param string The name of the field in the this class that contains the matching id to
   * the given belongs_to_class_name.
   * @param array Extra parameters that should be sent to the query. Allows for things like order by, joins,
   * etc when the association is queried.
   * @return void
   * @author Ted Kulp
   **/
  protected function create_has_and_belongs_to_many_association($association_name, $child_class, $join_table, $join_other_id_field, $join_this_id_field, $extra_params = array())
  {
    cms_orm()->create_has_and_belongs_to_many_association($this, $association_name, $child_class, $join_table, $join_other_id_field, $join_this_id_field, $extra_params);
  }
  
  /**
   * Used to see if an association has been cached on the object yet.
   *
   * @return boolean Whether or not the association has been cached
   * @author Ted Kulp
   **/
  public function has_association($name)
  {
    return array_key_exists($name, $this->associations);
  }
  
  /**
   * Get the association that has been previously cached on this object.
   *
   * @return mixed The array or object that was cached
   * @author Ted Kulp
   **/
  public function get_association($name)
  {
    return $this->associations[$name];
  }
  
  /**
   * Set the object or array to cache so we don't need a call to the database
   * if it's used again.
   *
   * @return void
   * @author Ted Kulp
   **/
  public function set_association($name, $value)
  {
    $this->associations[$name] = $value;
  }
  
  protected function assign_acts_as($name)
  {
    cms_orm()->create_acts_as($this, $name);
  }
 
  /**
   * Used for the ArrayAccessor implementation.
   *
   * @param string The key to set with the given value
   * @param mixed The value to set for the given key
   * @return void
   * @author Ted Kulp
   **/
  function offsetSet($key, $value)
  {
    if (array_key_exists($key, $this->field_maps)) $key = $this->field_maps[$key];
    $this->params[$key] = $value;
    $this->dirty = true;
  }
 
  /**
   * Used for the ArrayAccessor implementation.
   *
   * @param string The key to look up
   * @return mixed The value of the $obj['field']
   * @author Ted Kulp
   **/
  function offsetGet($key)
  {
    if (array_key_exists($key, $this->params))
    {
      return $this->params[$key];
    }
  }
 
  /**
   * Used for the ArrayAccessor implementation.
   *
   * @param string The key to unset
   * @return bool Whether or not it does exist
   * @author Ted Kulp
   **/
  function offsetUnset($key)
  {
    if (array_key_exists($key, $this->params))
    {
      unset($this->params[$key]);
    }
  }
 
  /**
   * Used for the ArrayAccessor implementation.
   *
   * @param string The key to lookup to see if it exists
   * @return bool Whether or not it does exist
   * @author Ted Kulp
   **/
  function offsetExists($offset)
  {
    return array_key_exists($offset, $this->params);
  }
  
  /**
   * "Static" method to register this class with the orm system. This must be called
   * right after an ORM class has been defined.
   *
   * @param $classname Name of the class to register with the ORM system
   * @return void
   * @author Ted Kulp
   */
  static function register_orm_class($classname)
  {
    global $gCms;
    $ormclasses =& $gCms->orm;
    
    $name = underscore($classname);
    $ormclasses[$name] = new $classname;
    
    return FALSE;
  }
  
  /**
   * Getter overload method. Called when an $obj->field and field
   * does not exist in the object's variable list.
   *
   * @param string The field to look up
   * @return mixed The value for that field, if it exists
   * @author Ted Kulp
   **/
  function __get($n)
  {
    if (array_key_exists($n, $this->params))
    {
      if (method_exists($this, 'get_' . $n))
        return call_user_func_array(array($this, 'get_'.$n), array($val));
      else
        return $this->params[$n];
    }
    
    if (cms_orm()->has_association($this, $n))
    {
      return cms_orm()->process_association($this, $n);
    }
  }
 
  /**
   * Setter overload method. Called when an $obj->field = '' and field
   * does not exist in the object's variable list.
   *
   * @param string The field to set
   * @param mixed The value to set for said field
   * @return void
   * @author Ted Kulp
   **/
  function __set($n, $val)
  {
    if (array_key_exists($n, $this->field_maps)) $n = $this->field_maps[$n];
    if (method_exists($this, 'set_' . $n))
      call_user_func_array(array($this, 'set_'.$n), array($val));
    else
      $this->params[$n] = $val;
    $this->dirty = true;
  }
  
  /**
   * Caller overload method. Called when an $obj->method() is called and
   * that method does not exist.
   *
   * @param string The name of the method called
   * @param array The parameters sent along with that method call
   * @return mixed The result of the method call
   * @author Ted Kulp
   **/
  function __call($function, $arguments)
  {
    $function_converted = underscore($function);
    if (array_key_exists($function, $this->field_maps)) $function_converted = $this->field_maps[$function];
 
    if (starts_with($function, 'find_by_'))
    {
      return $this->find_by_($function, $arguments);
    }
    else if (starts_with($function, 'find_all_by_'))
    {
      return $this->find_all_by_($function, $arguments);
    }
    else if (starts_with($function, 'find_count_by_'))
    {
      return $this->find_count_by_($function, $arguments);
    }
    else if (starts_with($function_converted, 'set_'))
    {
      #This handles the SetSomeParam() dynamic function calls
      return $this->__set(substr($function_converted, 4), $arguments[0]);
    }
    else
    {
      //It's possible an acts_as class has this method
      $acts_as_list = cms_orm()->get_acts_as($this);
      if (count($acts_as_list) > 0)
      {
        foreach ($acts_as_list as $one_acts_as)
        {
          if (method_exists($one_acts_as, $function))
          {
            return call_user_func_array(array($one_acts_as, $function), $arguments);
          }
        }
      }
 
      #This handles the SomeParam() dynamic function calls
      return $this->__get($function_converted);
    }
  }
  
  /**
   * Private helper function for processing dynaimc find_by methods. It essentially does several things...
   * 1. Split out any "and" or "or" clauses in a dynamic find method
   * 2. Pops the corresponding arguments off of the array so they don't get processed further
   * 3. Creates the conditions clause and returns it
   *
   * @param string The field (or fields in the case of an "and" or "or" lookup)
   * @param array Reference to the arguments passed to the method. The array is modified as necessary.
   * @return array Conditions clause after processing
   * @author Ted Kulp
   **/
  private function split_conditions($field, &$arguments)
  {
    //Figure out if we need to replace the field from the field mappings
    $new_map = array_flip($this->field_maps); //Flip the keys, since this is the reverse operation
    
    $numparams = 1;
    $params