-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWPCData.php
executable file
·330 lines (253 loc) · 9.89 KB
/
WPCData.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
<?php
/**
* The base class for generic records or relations
*
* It applies a filter of the form "wpc_format_$type_$key" when a
* property is asked for. If this filter is not set, it simply calls
* "wpc_format_$type" or simply "wpc_format".
* For qtranslate to handle quicktags, etc. you can just add
* "qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage".
*/
abstract class WPCData {
protected $id;
/**
* a short name for the type of the data
*/
protected $typeslug;
/*
* the data as associative array
*/
protected $data;
protected $data_keys = array();
protected $data_to_update = array();
/*
* the meta data as associative array
*/
protected $meta;
protected $meta_keys = array();
protected $meta_to_update = array();
/*
* an associative array. keys are the connected types.
*/
protected $connected_cache = array();
protected $formatted_string_cache = array();
protected $write_ro = null;
/**
* constructor for a Record.
*
* If $data and $meta are set, use them (for when they are already fetched one way or another).
* Both must be an associative array.
*/
protected function __construct($data=null, $meta=null) {
$this->data = $data;
$this->meta = $meta;
}
/**
* lookup $key in data, meta data or connected things.
*
* return multiple meta values with the same key as array if requested with prefix "all_" and first value otherwise.
* with prefix "formatted_" return a formatted string. see above for the filters to use.
* with prefix "connected_" return the connected items of a specific type.
*/
function __get($attribute) {
return $this->get($attribute);
}
function get_plain($attribute) {
if ($attribute === "id")
return $this->id;
if (empty($this->data))
$this->load_data();
if (empty($this->meta))
$this->load_meta();
if (isset($this->meta[$attribute]))
return $this->meta[$attribute];
if (isset($this->data[$attribute]))
return $this->data[$attribute];
}
function get($attribute) {
if ($attribute === "id")
return $this->id;
if (empty($this->data))
$this->load_data();
if (empty($this->meta))
$this->load_meta();
if (strpos($attribute, "all_") === 0 && isset($this->meta[$attribute]))
return $this->meta[$attribute];
if (isset($this->meta[$attribute])) {
$field_type = $this->get_field_type($attribute);
$content = $this->meta[$attribute];
if ($field_type == "RichTextField") {
$content = stripcslashes($content);
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
}
if ($field_type == "TextAreaField") {
$content = stripcslashes($content);
$content = preg_replace('/[\n\r]+/', '<br>', $content);
}
if ($field_type == "TextField") {
$content = stripcslashes($content);
}
return $content;
}
if (isset($this->data[$attribute]))
return $this->data[$attribute];
if (strpos($attribute, "connected_") === 0)
return $this->get_connected(substr($attribute, strlen("connected_")), false);
if (strpos($attribute, "reverse_connected_") === 0) {
return $this->get_connected(substr($attribute, strlen("reverse_connected_")), true);
}
$formatted_string = $this->formatted_string($attribute);
if ( !empty( $formatted_string ) )
return $formatted_string;
// ButterLog::debug(get_class($this)." does not have attribute '$attribute'.");
// return empty string for non-existing attributes.
return "";
}
function __isset($attribute) {
if (! isset($this->data))
$this->load_data();
if (! isset($this->meta))
$this->load_meta();
if (isset($this->data[$attribute]) || isset($this->meta["$attribute"]))
return true;
if (strpos($attribute, "connected_") === 0
&& $this->exist_connected(substr($attribute, strlen("connected_")), false))
return true;
if (strpos($attribute, "reverse_connected_") === 0
&& $this->exist_connected(substr($attribute, strlen("reverse_connected_")), true))
return true;
if (strpos($attribute, "all_") === 0)
return isset($this->meta["$attribute"]);
if (strpos($attribute, "formatted_") === 0)
return (isset($this->data[$attribute]) || isset($this->meta["$attribute"]));
return false;
}
function __set($key, $val) {
$this->set($key, $val);
}
function set($key, $val) {
if (in_array($key, $this->data_keys)) {
$this->data_to_update[$key] = $val;
// update internal state before commit
$this->data[$key] = $val;
} else if (in_array($key, $this->meta_keys)) {
$this->meta_to_update[$key] = $val;
// update internal state before commit
$this->meta[$key] = $val;
} else
ButterLog::warn("Cannot update \"$key\": Not a registered key.");
return $this;
}
function as_array() {
if (! isset($this->data))
$this->load_data();
if (! isset($this->meta))
$this->load_meta();
return array_merge($this->meta, $this->data);
}
abstract function delete();
abstract function commit($write_ro=false, $write_wo_change=false);
abstract protected function load_data();
abstract protected function load_meta();
abstract protected function get_field_type($field_key);
protected function get_connected($other_type, $reverse) {
$cahce_id = ($reverse ? "reverse_" : "") . "$other_type";
if (! isset($this->connected_cache[$cahce_id])) {
$connection = $this->connected_by_id($other_type, $reverse);
if ($connection)
$this->connected_cache[$cahce_id] = $connection;
if (empty($connection)) {
ButterLog::warn("No connected ".$other_type."s found for $this->typeslug.");
return;
}
}
return $this->connected_cache[$cahce_id];
}
/**
* checks, whether there exist connected thingies
*
* always returns false. Overwrite for connected thingies.
*/
protected function exist_connected($other_type, $reverse) {
return false;
}
/**
* returns connected thingies of type $other_type.
*
* always returns null, Overwrite for connected types.
*/
protected function connected_for_type($other_type, $reverse) {
return null;
}
protected function connected_by_id($db_typeslug, $reverse) {
return null;
}
function formatted_string ($key, $uncached = false) {
// shortcut if it is already cached
if ( !$uncached && isset($this->formatted_string_cache[$key]))
return $this->formatted_string_cache[$key];
// default to empty string
$value = '';
// apply the following filters in order
$filters = array("wpc_format_".$this->typeslug."_$key",
"wpc_format_$this->typeslug",
"wpc_format");
foreach ($filters as $filter) {
if (has_filter($filter)) {
$value = apply_filters($filter, $value, $this);
}
}
$this->formatted_string_cache[$key] = $value;
return $value;
}
/**
* constructs a subclass of a specific type.
*/
static function make_specific_class ($name, $typeslug="") {
if (class_exists($name))
return;
if ($typeslug == "")
$typeslug = strtolower($name);
$classdef = "class $name extends ".get_called_class()." {
protected \$typeslug = '$typeslug';
}";
eval($classdef);
}
protected function sub_dump($key, $val) {
$type = gettype($key);
switch (gettype($val)) {
case 'string':
?><tr><td><span class="var_name"><?php echo $key ?></span> <span class="var_type"><?php echo $type ?></span></td><td><?php echo substr($val, 0, 100); if (strlen($val) > 100) echo "<span class='var_ellipsis'>...</span>" ?></td></tr><?php
break;
default:
?><tr><td><span class="var_name"><?php echo $key ?></span> <span class="var_type"><?php echo $type ?></span></td><td><?php $str_val = (string)$val; echo substr($str_val, 0, 100); if (strlen($str_val) > 100) echo "<span class='var_ellipsis'>...</span>" ?></td></tr><?php
break;
}
}
public function dump() {
if (empty($this->data))
$this->load_data();
if (empty($this->meta))
$this->load_meta();
?>
<a class="var_dump_toggle" href="#" onclick="jQuery(this).next().toggle(); return false;"><span class="var_typeslug"><?php echo ucfirst($this->typeslug) ?> <span class="var_count">(<?php echo count($this->data)+count($this->meta) ?>)</span></a>
<div class="var_dump" style="display: none;">
<table border="0" cellspacing="5" cellpadding="5" class="var_dump">
<tr class="var_dump_heading"><td>Data <span class="var_count">(<?php echo count($this->data) ?>)</td><td></td></tr>
<?php foreach ($this->data as $key => $value) {
$this->sub_dump($key, $value);
} ?>
<tr class="var_dump_heading"><td>Meta <span class="var_count">(<?php echo count($this->meta) ?>)</td><td></td></tr>
<?php foreach ($this->meta as $key => $value) {
$this->sub_dump($key, $value);
} ?>
</table>
<div><?php
}
function write_ro($write_ro) {
$this->write_ro = $write_ro;
return $this;
}
}
?>