-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathActiveRecord.php
421 lines (420 loc) · 18.4 KB
/
ActiveRecord.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
<?php
/**
* Created on Nov 26, 2013
* @author Lloyd Zhou
* @email [email protected]
*/
/**
* Simple implement of active record in PHP.<br />
* Using magic function to implement more smarty functions.<br />
* Can using chain method calls, to build concise and compactness program.<br />
*/
abstract class ActiveRecord extends Base {
/**
* @var PDO static property to connect database.
*/
public static $db;
/**
* @var array maping the function name and the operator, to build Expressions in WHERE condition.
* <pre>user can call it like this:
* $user->isnotnull()->eq('id', 1);
* will create Expressions can explain to SQL:
* WHERE user.id IS NOT NULL AND user.id = :ph1</pre>
*/
public static $operators = array(
'equal' => '=', 'eq' => '=',
'notequal' => '<>', 'ne' => '<>',
'greaterthan' => '>', 'gt' => '>',
'lessthan' => '<', 'lt' => '<',
'greaterthanorequal' => '>=', 'ge' => '>=','gte' => '>=',
'lessthanorequal' => '<=', 'le' => '<=','lte' => '<=',
'between' => 'BETWEEN',
'like' => 'LIKE',
'in' => 'IN',
'notin' => 'NOT IN',
'isnull' => 'IS NULL',
'isnotnull' => 'IS NOT NULL', 'notnull' => 'IS NOT NULL',
);
/**
* @var array Part of SQL, maping the function name and the operator to build SQL Part.
* <pre>call function like this:
* $user->order('id desc', 'name asc')->limit(2,1);
* can explain to SQL:
* ORDER BY id desc, name asc limit 2,1</pre>
*/
public static $sqlParts = array(
'select' => 'SELECT',
'from' => 'FROM',
'set' => 'SET',
'where' => 'WHERE',
'group' => 'GROUP BY','groupby' => 'GROUP BY',
'having' => 'HAVING',
'order' => 'ORDER BY','orderby' => 'ORDER BY',
'limit' => 'limit',
'top' => 'TOP',
);
/**
* @var array Static property to stored the default Sql Expressions values.
*/
public static $defaultSqlExpressions = array('expressions' => array(), 'wrap' => false,
'select'=>null, 'insert'=>null, 'update'=>null, 'set' => null, 'delete'=>'DELETE ', 'join' => null,
'from'=>null, 'values' => null, 'where'=>null, 'having'=>null, 'limit'=>null, 'order'=>null, 'group' => null);
/**
* @var array Stored the Expressions of the SQL.
*/
protected $sqlExpressions = array();
/**
* @var string The table name in database.
*/
public $table;
/**
* @var string The primary key of this ActiveRecord, just suport single primary key.
*/
public $primaryKey = 'id';
/**
* @var array Stored the drity data of this object, when call "insert" or "update" function, will write this data into database.
*/
public $dirty = array();
/**
* @var array Stored the params will bind to SQL when call PDOStatement::execute(),
*/
public $params = array();
const BELONGS_TO = 'belongs_to';
const HAS_MANY = 'has_many';
const HAS_ONE = 'has_one';
/**
* @var array Stored the configure of the relation, or target of the relation.
*/
public $relations = array();
/**
* @var int The count of bind params, using this count and const "PREFIX" (:ph) to generate place holder in SQL.
*/
public static $count = 0;
const PREFIX = ':ph';
/**
* function to reset the $params and $sqlExpressions.
* @return ActiveRecord return $this, can using chain method calls.
*/
public function reset() {
$this->params = array();
$this->sqlExpressions = array();
return $this;
}
/**
* function to SET or RESET the dirty data.
* @param array $dirty The dirty data will be set, or empty array to reset the dirty data.
* @return ActiveRecord return $this, can using chain method calls.
*/
public function dirty($dirty = array()){
$this->data = array_merge($this->data, $this->dirty = $dirty);
return $this;
}
/**
* set the DB connection.
* @param PDO $db
*/
public static function setDb($db) {
self::$db = $db;
}
/**
* function to find one record and assign in to current object.
* @param int $id If call this function using this param, will find record by using this id. If not set, just find the first record in database.
* @return bool|ActiveRecord if find record, assign in to current object and return it, other wise return "false".
*/
public function find($id = null) {
if ($id) $this->reset()->eq($this->primaryKey, $id);
return self::_query($this->limit(1)->_buildSql(array('select', 'from', 'join', 'where', 'group', 'having', 'order', 'limit')), $this->params, $this->reset(), true);
}
/**
* function to find all records in database.
* @return array return array of ActiveRecord
*/
public function findAll() {
return self::_query($this->_buildSql(array('select', 'from', 'join', 'where', 'group', 'having', 'order', 'limit')), $this->params, $this->reset());
}
/**
* function to delete current record in database.
* @return bool
*/
public function delete() {
return self::execute($this->eq($this->primaryKey, $this->{$this->primaryKey})->_buildSql(array('delete', 'from', 'where')), $this->params);
}
/**
* function to build update SQL, and update current record in database, just write the dirty data into database.
* @return bool|ActiveRecord if update success return current object, other wise return false.
*/
public function update() {
if (count($this->dirty) == 0) return true;
foreach($this->dirty as $field => $value) $this->addCondition($field, '=', $value, ',' , 'set');
if(self::execute($this->eq($this->primaryKey, $this->{$this->primaryKey})->_buildSql(array('update', 'set', 'where')), $this->params))
return $this->dirty()->reset();
return false;
}
/**
* function to build insert SQL, and insert current record into database.
* @return bool|ActiveRecord if insert success return current object, other wise return false.
*/
public function insert() {
if (count($this->dirty) == 0) return true;
$value = $this->_filterParam($this->dirty);
$this->insert = new Expressions(array('operator'=> 'INSERT INTO '. $this->table,
'target' => new WrapExpressions(array('target' => array_keys($this->dirty)))));
$this->values = new Expressions(array('operator'=> 'VALUES', 'target' => new WrapExpressions(array('target' => $value))));
if (self::execute($this->_buildSql(array('insert', 'values')), $this->params)) {
$this->{$this->primaryKey} = self::$db->lastInsertId();
return $this->dirty()->reset();
}
return false;
}
/**
* helper function to exec sql.
* @param string $sql The SQL need to be execute.
* @param array $param The param will be bind to PDOStatement.
* @return bool
*/
public static function execute($sql, $param = array()) {
$res = (($sth = self::$db->prepare($sql)) && $sth->execute($param));
if (!$res) throw new Exception($sth->errorInfo()[2]);
return $res;
}
/**
* helper function to query one record by sql and params.
* @param string $sql The SQL to find record.
* @param array $param The param will be bind to PDOStatement.
* @param ActiveRecord $obj The object, if find record in database, will assign the attributes in to this object.
* @param bool $single if set to true, will find record and fetch in current object, otherwise will find all records.
* @return bool|ActiveRecord|array
*/
public static function _query($sql, $param = array(), $obj = null, $single=false) {
if ($sth = self::$db->prepare($sql)) {
$called_class = get_called_class();
$sth->setFetchMode( PDO::FETCH_INTO , ($obj ? $obj : new $called_class ));
$sth->execute($param);
if ($single) return $sth->fetch( PDO::FETCH_INTO ) ? $obj->dirty() : false;
$result = array();
while ($obj = $sth->fetch( PDO::FETCH_INTO )) $result[] = clone $obj->dirty();
return $result;
}
return false;
}
/**
* helper function to get relation of this object.
* There was three types of relations: {BELONGS_TO, HAS_ONE, HAS_MANY}
* @param string $name The name of the relation, the array key when defind the relation.
* @return mixed
*/
protected function & getRelation($name) {
$relation = $this->relations[$name];
if ($relation instanceof self || (is_array($relation) && $relation[0] instanceof self))
return $relation;
$this->relations[$name] = $obj = new $relation[1];
if (isset($relation[3]) && is_array($relation[3]))
foreach((array)$relation[3] as $func => $args)
call_user_func_array(array($obj, $func), (array)$args);
$backref = isset($relation[4]) ? $relation[4] : '';
if ((!$relation instanceof self) && self::HAS_ONE == $relation[0])
$obj->eq($relation[2], $this->{$this->primaryKey})->find() && $backref && $obj->__set($backref, $this);
elseif (is_array($relation) && self::HAS_MANY == $relation[0]) {
$this->relations[$name] = $obj->eq($relation[2], $this->{$this->primaryKey})->findAll();
if ($backref)
foreach($this->relations[$name] as $o)
$o->__set($backref, $this);
} elseif ((!$relation instanceof self) && self::BELONGS_TO == $relation[0])
$obj->eq($obj->primaryKey, $this->{$relation[2]})->find() && $backref && $obj->__set($backref, $this);
else throw new Exception("Relation $name not found.");
return $this->relations[$name];
}
/**
* helper function to build SQL with sql parts.
* @param string $n The SQL part will be build.
* @param int $i The index of $n in $sqls array.
* @param ActiveRecord $o The refrence to $this
* @return string
*/
private function _buildSqlCallback(&$n, $i, $o){
if ('select' === $n && null == $o->$n) $n = strtoupper($n). ' '.$o->table.'.*';
elseif (('update' === $n||'from' === $n) && null == $o->$n) $n = strtoupper($n).' '. $o->table;
elseif ('delete' === $n) $n = strtoupper($n). ' ';
else $n = (null !== $o->$n) ? $o->$n. ' ' : '';
}
/**
* helper function to build SQL with sql parts.
* @param array $sqls The SQL part will be build.
* @return string
*/
protected function _buildSql($sqls = array()) {
array_walk($sqls, array($this, '_buildSqlCallback'), $this);
//this code to debug info.
//echo 'SQL: ', implode(' ', $sqls), "\n", "PARAMS: ", implode(', ', $this->params), "\n";
return implode(' ', $sqls);
}
/**
* magic function to make calls witch in function mapping stored in $operators and $sqlPart.
* also can call function of PDO object.
* @param string $name function name
* @param array $args The arguments of the function.
* @return mixed Return the result of callback or the current object to make chain method calls.
*/
public function __call($name, $args) {
if (is_callable($callback = array(self::$db,$name)))
return call_user_func_array($callback, $args);
if (in_array($name = strtolower($name), array_keys(self::$operators)))
$this->addCondition($args[0], self::$operators[$name], isset($args[1]) ? $args[1] : null, (is_string(end($args)) && 'or' === strtolower(end($args))) ? 'OR' : 'AND');
else if (in_array($name= str_replace('by', '', $name), array_keys(self::$sqlParts)))
$this->$name = new Expressions(array('operator'=>self::$sqlParts[$name], 'target' => implode(', ', $args)));
else throw new Exception("Method $name not exist.");
return $this;
}
/**
* make wrap when build the SQL expressions of WHWRE.
* @param string $op If give this param will build one WrapExpressions include the stored expressions add into WHWRE. otherwise wil stored the expressions into array.
* @return ActiveRecord return $this, can using chain method calls.
*/
public function wrap($op = null) {
if (1 === func_num_args()){
$this->wrap = false;
if (is_array($this->expressions) && count($this->expressions) > 0)
$this->_addCondition(new WrapExpressions(array('delimiter' => ' ','target'=>$this->expressions)), 'or' === strtolower($op) ? 'OR' : 'AND');
$this->expressions = array();
} else $this->wrap = true;
return $this;
}
/**
* helper function to build place holder when make SQL expressions.
* @param mixed $value the value will bind to SQL, just store it in $this->params.
* @return mixed $value
*/
protected function _filterParam($value) {
if (is_array($value)) foreach($value as $key => $val) $this->params[$value[$key] = self::PREFIX. ++self::$count] = $val;
else if (is_string($value)){
$this->params[$ph = self::PREFIX. ++self::$count] = $value;
$value = $ph;
}
return $value;
}
/**
* helper function to add condition into WHERE.
* create the SQL Expressions.
* @param string $field The field name, the source of Expressions
* @param string $operator
* @param mixed $value the target of the Expressions
* @param string $op the operator to concat this Expressions into WHERE or SET statment.
* @param string $name The Expression will contact to.
*/
public function addCondition($field, $operator, $value, $op = 'AND', $name = 'where') {
$value = $this->_filterParam($value);
if ($exp = new Expressions(array('source'=>('where' == $name? $this->table.'.' : '' ) .$field, 'operator'=>$operator, 'target'=>(is_array($value)
? new WrapExpressions('between' === strtolower($operator)
? array('target' => $value, 'start' => ' ', 'end' => ' ', 'delimiter' => ' AND ')
: array('target' => $value)
) : $value)))) {
if (!$this->wrap)
$this->_addCondition($exp, $op, $name);
else
$this->_addExpression($exp, $op);
}
}
/**
* helper function to add condition into JOIN.
* create the SQL Expressions.
* @param string $table The join table name
* @param string $on The condition of ON
* @param string $type The join type, like "LEFT", "INNER", "OUTER"
*/
public function join($table, $on, $type='LEFT'){
$this->join = new Expressions(array('source' => $this->join ?: '', 'operator' => $type. ' JOIN', 'target' => new Expressions(
array('source' => $table, 'operator' => 'ON', 'target' => $on)
)));
return $this;
}
/**
* helper function to make wrapper. Stored the expression in to array.
* @param Expressions $exp The expression will be stored.
* @param string $operator The operator to concat this Expressions into WHERE statment.
*/
protected function _addExpression($exp, $operator) {
if (!is_array($this->expressions) || count($this->expressions) == 0)
$this->expressions = array($exp);
else
$this->expressions[] = new Expressions(array('operator'=>$operator, 'target'=>$exp));
}
/**
* helper function to add condition into WHERE.
* @param Expressions $exp The expression will be concat into WHERE or SET statment.
* @param string $operator the operator to concat this Expressions into WHERE or SET statment.
* @param string $name The Expression will contact to.
*/
protected function _addCondition($exp, $operator, $name ='where' ) {
if (!$this->$name)
$this->$name = new Expressions(array('operator'=>strtoupper($name) , 'target'=>$exp));
else
$this->$name->target = new Expressions(array('source'=>$this->$name->target, 'operator'=>$operator, 'target'=>$exp));
}
/**
* magic function to SET values of the current object.
*/
public function __set($var, $val) {
if (array_key_exists($var, $this->sqlExpressions) || array_key_exists($var, self::$defaultSqlExpressions))
$this->sqlExpressions[$var] = $val;
else if (array_key_exists($var, $this->relations) && $val instanceof self)
$this->relations[$var] = $val;
else $this->dirty[$var] = $this->data[$var] = $val;
}
/**
* magic function to UNSET values of the current object.
*/
public function __unset($var) {
if (array_key_exists($var, $this->sqlExpressions)) unset($this->sqlExpressions[$var]);
if(isset($this->data[$var])) unset($this->data[$var]);
if(isset($this->dirty[$var])) unset($this->dirty[$var]);
}
/**
* magic function to GET the values of current object.
*/
public function & __get($var) {
if (array_key_exists($var, $this->sqlExpressions)) return $this->sqlExpressions[$var];
else if (array_key_exists($var, $this->relations)) return $this->getRelation($var);
else return parent::__get($var);
}
}
/**
* base class to stord attributes in one array.
*/
abstract class Base {
/**
* @var array Stored the attributes of the current object
*/
public $data = array();
public function __construct($config = array()) {
foreach($config as $key => $val) $this->$key = $val;
}
public function __set($var, $val) {
$this->data[$var] = $val;
}
public function & __get($var) {
$result = isset($this->data[$var]) ? $this->data[$var] : null;
return $result;
}
}
/**
* Class Expressions, part of SQL.
* Every SQL can be split into multiple expressions.
* Each expression contains three parts:
* @property string|Expressions $source of this expression, (option)
* @property string $operator (required)
* @property string|Expressions $target of this expression (required)
* Just implement one function __toString.
*/
class Expressions extends Base {
public function __toString() {
return $this->source. ' '. $this->operator. ' '. $this->target;
}
}
/**
* Class WrapExpressions
*/
class WrapExpressions extends Expressions {
public function __toString() {
return ($this->start ? $this->start: '('). implode(($this->delimiter ? $this->delimiter: ','), $this->target). ($this->end?$this->end:')');
}
}