-
Notifications
You must be signed in to change notification settings - Fork 6
/
class.atkdatanode.inc
436 lines (384 loc) · 9.52 KB
/
class.atkdatanode.inc
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
<?php
/**
* This file is part of the Achievo ATK distribution.
* Detailed copyright and licensing information can be found
* in the doc/COPYRIGHT and doc/LICENSE files which should be
* included in the distribution.
*
* @package atk
*
* @copyright (c) 2007 Ibuildings.nl BV
* @license http://www.achievo.org/atk/licensing ATK Open Source License
*
* @version $Revision$
* $Id$
*/
/**
* The ATK data node can be used to create nodes that don't retrieve their
* data from the database.
*
* The data can either be provided using the setData method or the getData
* method (and possibly other methods) can be overriden to provide the
* data dynamically.
*
* @author Peter C. Verhage <[email protected]>
* @package atk
*/
class atkDataNode extends atkNode
{
/**
* Data.
*
* @var array
*/
private $m_data = array();
/**
* Constructor.
*
* @param string $type node type (by default the class name)
* @param int $flags node flags
*
* @return atkDataNode
*/
public function __construct($type='', $flags=0)
{
parent::__construct($type, $flags|NF_NO_ADD|NF_NO_EDIT);
$this->setTable($this->m_type);
}
/**
* Sets the data that this node should use.
*
* @param array $data data list
*/
public function setData($data)
{
$this->m_data = $data;
}
/**
* Returns the internal data.
*
* @param array $criteria criteria (can be ignored in which case filterData will filter the data)
*
* @return array data list
*/
protected function getData($criteria=null)
{
return $this->m_data;
}
/**
* Select records using the given criteria.
*
* @param string $selector selector string
* @param string $order order string
* @param array $limit limit array
*
* @return array selected records
*/
public function selectDb($selector=null, $order=null, $limit=null)
{
atkdebug(get_class($this).'::selectDb('.$selector.')');
if ($order == null)
{
$order = $this->getOrder();
}
$params = array(
'selector' => $selector,
'order' => $order,
'offset' => isset($limit['offset']) ? $limit['offset'] : 0,
'limit' => isset($limit['limit']) ? $limit['limit'] : -1,
'search' => isset($this->m_postvars['atksearch']) ? $this->m_postvars['atksearch'] : null
);
$result = $this->findData($params);
atkdebug('Result '.get_class($this).'::selectDb('.$selector.') => '.count($result).' row(s)');
return $result;
}
/**
* Returns how many records will be returned for the given selector.
*
* @param string $selector selector string
*
* @return int record count
*/
public function countDb($selector=null)
{
$params = array(
'selector' => $selector,
'search' => isset($this->m_postvars['atksearch']) ? $this->m_postvars['atksearch'] : null
);
return $this->countData($params);
}
/**
* Count "rows".
*
* Supported parameters are: selector, limit, offset and order.
*
* @param array $params parameters
*
* @return int number of "records"
*/
protected function countData($params=array())
{
return count($this->findData($params));
}
/**
* Find data using the given parameters.
* Supported parameters are: selector, limit, offset and order.
*
* @param array $params parameters
*
* @return array found data
*/
protected function findData($params=array())
{
$selector = @$params['selector'] ? $params['selector'] : '';
$limit = @$params['limit'] ? $params['limit'] : -1;
$offset = @$params['offset'] ? $params['offset'] : 0;
$order = @$params['order'] ? $params['order'] : null;
$search = @$params['search'] ? $params['search'] : array();
$selector = $this->getSelector($selector);
$criteria = $this->getCriteria($selector);
$data = $this->getData($criteria);
$data = $this->filterColumns($data);
$data = $this->filterData($data, $criteria, $search);
$data = $this->sortData($data, $order);
$data = $this->limitData($data, $limit, $offset);
return $data;
}
/**
* Filter invalid columns.
*
* @param array $data data
*
* @return data
*/
protected function filterColumns($data)
{
$result = array();
foreach ($data as $row)
{
foreach (array_keys($row) as $column)
{
if ($this->getAttribute($column) == null)
{
unset($row[$column]);
}
}
$result[] = $row;
}
return $result;
}
/**
* Returns the full selector including added filters.
*
* @param string $selector selector
*
* @return string full selector string
*/
protected function getSelector($selector)
{
$result = $selector;
foreach ($this->m_fuzzyFilters as $filter)
{
if (!empty($result))
{
$result .= ' AND ';
}
$result .= $filter;
}
return $result;
}
/**
* Translate the given selector to a criteria array
* which key/values can be used to filter data.
*
* @param string $selector selector string
*
* @return array criteria
*/
protected function getCriteria($selector)
{
$criteria = $this->m_filters;
if (empty($selector))
{
return $criteria;
}
$selectors = explode(") OR (", $selector);
foreach ($selectors as $selector)
{
$keyValueSet = decodeKeyValueSet($selector);
foreach ($keyValueSet as $column => $value)
{
$column = trim($column, ' ()');
$value = trim($value, ' ()');
if (strpos($column, '.') !== false)
{
list($table, $column) = explode('.', $column);
if ($table != $this->getTable()) continue;
}
$value = stripslashes(stripQuotes($value));
if (isset($criteria[$column]) && $criteria[$column] != $value)
{
$criteria[$column] = array_merge((array)$criteria[$column], (array)$value);
}
else
{
$criteria[$column] = $value;
}
}
}
return $criteria;
}
/**
* Filter data using the given selector.
*
* @param array $data data list
* @param array $criteria selector criteria list
* @param array $search search fields / values
*
* @return array filtered data
*/
protected function filterData($data, $criteria, $search)
{
$result = array();
foreach ($data as $record)
{
if ($this->isValidRecord($record, $criteria, $search))
{
$result[] = $record;
}
}
return $result;
}
/**
* Check if record is valid using the given selector criteria and search params.
*
* @param array $record record
* @param array $criteria selector criteria list
* @param array $search search fields / values
*
* @return boolean is valid?
*/
protected function isValidRecord($record, $criteria, $search)
{
foreach ($criteria as $key => $value)
{
if ($record[$key] != $value) return false;
}
foreach ($search as $key => $value)
{
if (!empty($value) && stripos($record[$key], $value) === false) return false;
}
return true;
}
/**
* Parse the order to something we can use. If the order
* is invalid false is returned.
*
* @param string $order order string
* @return array|boolean array 1st element column, 2nd element ascending? or false
*/
protected function translateOrder($order)
{
if (empty($order)) return false;
list($column, $direction) = preg_split('/[ ]+/', $order);
if (strpos($column, '.') !== false)
{
list($table,$column) = explode('.', $column);
if ($table != $this->getTable())
{
return false;
}
}
$column = trim($column);
$direction = strtolower(trim($direction));
$asc = $direction != 'desc';
if ($this->getAttribute($column) != null)
{
return array($column, $asc);
}
return false;
}
/**
* Sort data by the given order string.
*
* @param array $data data list
* @param string $order order string
*
* @return array data list
*/
protected function sortData($data, $order)
{
list($column, $asc) = $this->translateOrder($order);
if ($column != false)
{
$attr = $this->getAttribute($column);
if ($attr instanceof atkNumberAttribute)
{
usort($data, create_function('$a, $b', 'return $a["'.$column.'"] == $b["'.$column.'"] ? 0 : ($a["'.$column.'"] < $b["'.$column.'"] ? -1 : 1);'));
}
else
{
usort($data, create_function('$a, $b', 'return strcasecmp($a["'.$column.'"], $b["'.$column.'"]);'));
}
if (!$asc)
{
$data = array_reverse($data);
}
}
return $data;
}
/**
* Limit data using the given limit and offset.
*
* @param array $data data list
* @param int $limit limit
* @param int $offset offset
*
* @return array limitted data
*/
protected function limitData($data, $limit=-1, $offset=0)
{
if ($limit >= 0)
{
$data = array_slice($data, $offset, $limit);
}
else
{
$data = array_slice($data, $offset);
}
return $data;
}
/**
* Add is not supported.
*
* @return boolean false
*/
public function addDb()
{
return false;
}
/**
* Update is not supported.
*
* @return boolean false
*/
public function updateDb()
{
return false;
}
/**
* Delete is not supported.
*
* @return boolean false
*/
public function deleteDb()
{
return false;
}
/**
* Don't fetch meta data.
*/
public function setAttribSizes()
{
}
}