-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLudoJS.php
More file actions
282 lines (258 loc) · 7.47 KB
/
LudoJS.php
File metadata and controls
282 lines (258 loc) · 7.47 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
<?php
/**
* Comment pending.
* User: Alf Magne Kalleland
* Date: 13.04.13
* Time: 15:59
* @package LudoDB
* @author Alf Magne Kalleland <post@dhtmlgoodies.com>
*/
/**
* LudoJS service class. This class outputs LudoJS config objects for LudoDB instances
*
* Example where LudoJS config for LudoDBModel Person is returned with values of Person with id equals 1:
*
* <code>
* $handler = new LudoDBRequestHandler();
* echo $handler->handle('LudoJS/Person/1/form');
* </code>
*
* This will return the config as a JSON string.
*
* @package LudoDB
* @author Alf Magne Kalleland <post@dhtmlgoodies.com>
*/
class LudoJS implements LudoDBService
{
/**
* Reference to the LudoDBObject to handle
* @var LudoDBObject
*/
private $resource;
/**
* Construct new instance
*/
public function __construct()
{
$this->arguments = func_get_args();
}
/**
* Return "form" as only valid service
* @return array
*/
public function getValidServices()
{
return array("form");
}
/**
* Accepted number of arguments is 1 or 2 (second argument is optional "id" of resource)
* @param String $service
* @param Array $arguments
* @return bool
*/
public function validateArguments($service, $arguments)
{
if (count($arguments) === 2) return is_numeric($arguments[1]);
return count($arguments) > 0;
}
/**
* No data is allowed to this service
* @param string $service
* @param array $data
* @return bool
*/
public function validateServiceData($service, $data)
{
return empty($data);
}
/**
* No caching
* @param string $service
* @return bool
*/
public function shouldCache($service)
{
return false;
}
/**
* Returns empty string as on success message for service
* @param String $service
* @return String
*/
public function getOnSuccessMessageFor($service)
{
return "";
}
/**
* "form" service
* @return array
*/
public function form()
{
$this->resource = $this->getModelResource();
$children = $this->resource->configParser()->getLudoJSConfig();
$children = $this->setMissingProperties($children);
$children = $this->setChildValues($children);
$children = $this->createDataSources($children);
$children = $this->addValidation($children);
$children = array_values($children);
$children = $this->getChildrenInRightOrder($children);
return array(
'children' => $children,
'form' => array(
'resource' => $this->arguments[0]
)
);
}
/**
* Update child array with default properties when not specified in config, example "label"
* @param $children
* @return mixed
*/
private function setMissingProperties($children)
{
foreach ($children as $col => &$def) {
if (!isset($child['label'])) {
$def['label'] = isset($def['label']) ? $def['label'] : ucfirst($col);
}
}
return $children;
}
/**
* Create dataSource objects for children.
* @param $children
* @return mixed
*/
private function createDataSources($children)
{
foreach ($children as &$def) {
if (isset($def['dataSource'])) {
$def['dataSource'] = $this->getDataSourceConfig($def['dataSource']);
}
}
return $children;
}
/**
* Return data source config with values for columns.
* @param $source
* @return array
*/
private function getDataSourceConfig($source)
{
if (!is_array($source)) {
$source = array('name' => $source);
}
$cl = $this->getReflectionClass($source['name']);
if (isset($source['args'])) {
$args = is_array($source['args']) ? $source['args'] : array($source['args']);
$resource = $cl->newInstanceArgs($args);
} else {
$resource = $cl->newInstance();
}
return array(
'data' => $resource->getValues()
);
}
/**
* Return childrne in correct order according to "order" attribute
* @param array $children
* @return array
*/
private function getChildrenInRightOrder($children)
{
for ($i = 0, $count = count($children); $i < $count; $i++) {
if (!isset($children[$i]['order'])) {
$children[$i]['order'] = $i + 100;
}
}
usort($children, function ($a, $b) {
return $a['order'] > $b['order'] ? 1 : -1;
});
foreach ($children as & $child) {
unset($child['order']);
}
return $children;
}
/**
* Add "value" properties to children.
* @param $children
* @return mixed
*/
private function setChildValues($children)
{
if (isset($this->arguments[1])) {
$values = $this->resource->getValues();
foreach ($values as $key => $value) {
if (isset($children[$key])) {
$children[$key]['value'] = $value;
}
}
}
return $children;
}
/**
* Add validation properties to LudoJS column
* @param $children
* @return mixed
*/
private function addValidation($children)
{
$validations = $this->resource->configParser()->getColumnsToValidate();
foreach ($validations as $col => $validation) {
foreach ($validation as $key => $value) {
switch ($key) {
case "regex":
$tokens = explode("/", $value);
$flag = array_pop($tokens);
if($this->isRegexFlag($flag)){
$flag= str_replace("s", "g", $flag);
}
$tokens[] = $flag;
$children[$col][$key] = implode("/",$tokens);
break;
default:
$children[$col][$key] = $value;
}
}
}
return $children;
}
/**
* Returns true if given string matches pattern for a regex flag/modifiers
* @param $token
* @return int
*/
private function isRegexFlag($token){
return preg_match("/^[si]+?$/", $token);
}
/**
* Return model resource to handle
* @return LudoDBObject
* @throws LudoDBClassNotFoundException
*/
private function getModelResource()
{
if (!class_exists($this->arguments[0])) {
throw new LudoDBClassNotFoundException("Class " . $this->arguments[0] . " does not exists.");
}
$resource = $this->getReflectionClass($this->arguments[0]);
if (isset($this->arguments[1])) {
return $resource->newInstanceArgs(array($this->arguments[1]));
}
return $resource->newInstance();
}
/**
* Use Reflection to get instance of resource class
* @param $className
* @return ReflectionClass
* @throws LudoDBClassNotFoundException
*/
private function getReflectionClass($className)
{
$cl = new ReflectionClass($className);
if (!$cl->implementsInterface('LudoDBService')) {
throw new LudoDBClassNotFoundException($className . " is not an instance of LudoDBService");
}
return $cl;
}
}