record.php
4.9 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
<?php
/**
* Base class for models
*
* @author Pavel Kulbakin <p.kulbakin@gmail.com>
*/
class PMXE_Model_Record extends PMXE_Model {
/**
* Initialize model
* @param array[optional] $data Array of record data to initialize object with
*/
public function __construct($data = array()) {
parent::__construct();
if (! is_array($data)) {
throw new Exception("Array expected as paramenter for " . get_class($this) . "::" . __METHOD__);
}
$data and $this->set($data);
}
/**
* @see PMXE_Model::getBy()
* @return PMXE_Model_Record
*/
public function getBy($field = NULL, $value = NULL) {
if (is_null($field)) {
throw new Exception("Field parameter is expected at " . get_class($this) . "::" . __METHOD__);
}
$sql = "SELECT * FROM $this->table WHERE " . $this->buildWhere($field, $value);
$result = $this->wpdb->get_row($sql, ARRAY_A);
if (is_array($result)) {
foreach ($result as $k => $v) {
if (is_serialized($v)) {
$result[$k] = unserialize($v);
}
}
$this->exchangeArray($result);
} else {
$this->clear();
}
return $this;
}
/**
* Ger records related to current one
* @param string $model Class name of model of related records
* @param array[optoinal] $keyAssoc
* @return PMXE_Model_List
*/
public function getRelated($model, $keyAssoc = NULL) {
$related = new $model();
if ( ! empty($this->id)) {
if (is_null($keyAssoc)) {
$defaultPrefix = strtolower(preg_replace('%^' . strtoupper(PMXE_Plugin::PREFIX) . '|_Record$%', '', get_class($this)));
$keyAssoc = array();
foreach ($this->primary as $key) {
$keyAssoc = array($defaultPrefix . '_' . $key => $key);
}
}
foreach ($keyAssoc as $foreign => $local) {
$keyAssoc[$foreign] = $this->$local;
}
$related->getBy($keyAssoc);
}
return $related instanceof PMXE_Model_List ? $related->convertRecords() : $related;
}
/**
* Saves currently set object data as database record
* @return PMXE_Model_Record
*/
public function insert() {
if ($this->wpdb->insert($this->table, $this->toArray(TRUE))) {
if (isset($this->auto_increment)) {
$this[$this->primary[0]] = $this->wpdb->insert_id;
}
return $this;
} else {
throw new Exception($this->wpdb->last_error);
}
}
/**
* Update record in database
* @return PMXE_Model_Record
*/
public function update() {
$record = $this->toArray(TRUE);
$this->wpdb->update($this->table, $record, array_intersect_key($record, array_flip($this->primary)));
if ($this->wpdb->last_error) {
throw new Exception($this->wpdb->last_error);
}
return $this;
}
/**
* Delete record form database
* @return PMXE_Model_Record
*/
public function delete() {
if ($this->wpdb->query("DELETE FROM $this->table WHERE " . $this->buildWhere(array_intersect_key($this->toArray(TRUE), array_flip($this->primary))))) {
return $this;
} elseif ($this->wpdb->last_error) {
throw new Exception($this->wpdb->last_error);
}
}
/**
* Insert or Update the record
* WARNING: function doesn't check actual record presents in database, it simply tries to insert if no primary key specified and update otherwise
* @return PMXE_Model_Record
*/
public function save() {
if (array_intersect_key($this->toArray(TRUE), array_flip($this->primary))) {
$this->update();
} else {
$this->insert();
}
return $this;
}
/**
* Set record data
* When 1st parameter is an array, it expected to be an associative array of field => value pairs
* If 2 parameters are set, first one is expected to be a field name and second - it's value
*
* @param string|array $field
* @param mixed[optional] $value
* @return PMXE_Model_Record
*/
public function set($field, $value = NULL) {
if (is_array($field) and ( ! is_null($value) or 0 == count($field))) {
throw new Exception(__CLASS__ . "::set method expects either not empty associative array as the only paramter or field name and it's value as two seperate parameters.");
}
if (is_array($field)) {
$this->exchangeArray(array_merge($this->toArray(), $field));
} else {
$this[$field] = $value;
}
return $this;
}
/**
* Magic method to resolved object-like request to record values in format $obj->%FIELD_NAME%
* @param string $field
* @return mixed
*/
public function __get($field) {
if ( ! $this->offsetExists($field)) {
throw new Exception("Undefined field $field.");
}
return $this[$field];
}
/**
* Magic method to assign values to record fields in format $obj->%FIELD_NAME = value
* @param string $field
* @param mixed $value
*/
public function __set($field, $value) {
$this[$field] = $value;
}
/**
* Magic method to check wether some record fields are set
* @param string $field
* @return bool
*/
public function __isset($field) {
return $this->offsetExists($field);
}
/**
* Magic method to unset record fields
* @param string $field
*/
public function __unset($field) {
$this->offsetUnset($field);
}
}