This repository has been archived by the owner on Jan 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathJsonRenderer.php
243 lines (220 loc) · 7.04 KB
/
JsonRenderer.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
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace Zend\View\Renderer;
use JsonSerializable;
use Traversable;
use Zend\Json\Json;
use Zend\Stdlib\ArrayUtils;
use Zend\View\Exception;
use Zend\View\Model\JsonModel;
use Zend\View\Model\ModelInterface as Model;
use Zend\View\Renderer\RendererInterface as Renderer;
use Zend\View\Resolver\ResolverInterface as Resolver;
/**
* JSON renderer
*/
class JsonRenderer implements Renderer, TreeRendererInterface
{
/**
* Whether or not to merge child models with no capture-to value set
* @var bool
*/
protected $mergeUnnamedChildren = false;
/**
* @var Resolver
*/
protected $resolver;
/**
* JSONP callback (if set, wraps the return in a function call)
*
* @var string
*/
protected $jsonpCallback = null;
/**
* Return the template engine object, if any
*
* If using a third-party template engine, such as Smarty, patTemplate,
* phplib, etc, return the template engine object. Useful for calling
* methods on these objects, such as for setting filters, modifiers, etc.
*
* @return mixed
*/
public function getEngine()
{
return $this;
}
/**
* Set the resolver used to map a template name to a resource the renderer may consume.
*
* @todo Determine use case for resolvers when rendering JSON
* @param Resolver $resolver
* @return Renderer
*/
public function setResolver(Resolver $resolver)
{
$this->resolver = $resolver;
}
/**
* Set flag indicating whether or not to merge unnamed children
*
* @param bool $mergeUnnamedChildren
* @return JsonRenderer
*/
public function setMergeUnnamedChildren($mergeUnnamedChildren)
{
$this->mergeUnnamedChildren = (bool) $mergeUnnamedChildren;
return $this;
}
/**
* Set the JSONP callback function name
*
* @param string $callback
* @return JsonRenderer
*/
public function setJsonpCallback($callback)
{
$callback = (string) $callback;
if (! empty($callback)) {
$this->jsonpCallback = $callback;
}
return $this;
}
/**
* Returns whether or not the jsonpCallback has been set
*
* @return bool
*/
public function hasJsonpCallback()
{
return (null !== $this->jsonpCallback);
}
/**
* Should we merge unnamed children?
*
* @return bool
*/
public function mergeUnnamedChildren()
{
return $this->mergeUnnamedChildren;
}
/**
* Renders values as JSON
*
* @todo Determine what use case exists for accepting both $nameOrModel and $values
* @param string|Model $nameOrModel The script/resource process, or a view model
* @param null|array|\ArrayAccess $values Values to use during rendering
* @throws Exception\DomainException
* @return string The script output.
*/
public function render($nameOrModel, $values = null)
{
// use case 1: View Models
// Serialize variables in view model
if ($nameOrModel instanceof Model) {
if ($nameOrModel instanceof JsonModel) {
$children = $this->recurseModel($nameOrModel, false);
$this->injectChildren($nameOrModel, $children);
$values = $nameOrModel->serialize();
} else {
$values = $this->recurseModel($nameOrModel);
$values = Json::encode($values);
}
if ($this->hasJsonpCallback()) {
$values = $this->jsonpCallback . '(' . $values . ');';
}
return $values;
}
// use case 2: $nameOrModel is populated, $values is not
// Serialize $nameOrModel
if (null === $values) {
if (! is_object($nameOrModel) || $nameOrModel instanceof JsonSerializable) {
$return = Json::encode($nameOrModel);
} elseif ($nameOrModel instanceof Traversable) {
$nameOrModel = ArrayUtils::iteratorToArray($nameOrModel);
$return = Json::encode($nameOrModel);
} else {
$return = Json::encode(get_object_vars($nameOrModel));
}
if ($this->hasJsonpCallback()) {
$return = $this->jsonpCallback . '(' . $return . ');';
}
return $return;
}
// use case 3: Both $nameOrModel and $values are populated
throw new Exception\DomainException(sprintf(
'%s: Do not know how to handle operation when both $nameOrModel and $values are populated',
__METHOD__
));
}
/**
* Can this renderer render trees of view models?
*
* Yes.
*
* @return true
*/
public function canRenderTrees()
{
return true;
}
/**
* Retrieve values from a model and recurse its children to build a data structure
*
* @param Model $model
* @param bool $mergeWithVariables Whether or not to merge children with
* the variables of the $model
* @return array
*/
protected function recurseModel(Model $model, $mergeWithVariables = true)
{
$values = [];
if ($mergeWithVariables) {
$values = $model->getVariables();
}
if ($values instanceof Traversable) {
$values = ArrayUtils::iteratorToArray($values);
}
if (! $model->hasChildren()) {
return $values;
}
$mergeChildren = $this->mergeUnnamedChildren();
foreach ($model as $child) {
$captureTo = $child->captureTo();
if (! $captureTo && ! $mergeChildren) {
// We don't want to do anything with this child
continue;
}
$childValues = $this->recurseModel($child);
if ($captureTo) {
// Capturing to a specific key
// TODO please complete if append is true. must change old
// value to array and append to array?
$values[$captureTo] = $childValues;
} elseif ($mergeChildren) {
// Merging values with parent
$values = array_replace_recursive($values, $childValues);
}
}
return $values;
}
/**
* Inject discovered child model values into parent model
*
* @todo detect collisions and decide whether to append and/or aggregate?
* @param Model $model
* @param array $children
*/
protected function injectChildren(Model $model, array $children)
{
foreach ($children as $child => $value) {
// TODO detect collisions and decide whether to append and/or aggregate?
$model->setVariable($child, $value);
}
}
}