This repository has been archived by the owner on Jan 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathAbstractResourceListener.php
296 lines (266 loc) · 8.01 KB
/
AbstractResourceListener.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
<?php
/**
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @copyright Copyright (c) 2014 Zend Technologies USA Inc. (http://www.zend.com)
*/
namespace ZF\Rest;
use Zend\EventManager\ListenerAggregateInterface;
use Zend\EventManager\ListenerAggregateTrait;
use Zend\EventManager\EventManagerInterface;
use ZF\ApiProblem\ApiProblem;
abstract class AbstractResourceListener implements ListenerAggregateInterface
{
use ListenerAggregateTrait;
/**
* @var ResourceEvent
*/
protected $event;
/**
* The entity_class config for the calling controller zf-rest config
*/
protected $entityClass;
/**
* The collection_class config for the calling controller zf-rest config
*/
protected $collectionClass;
/**
* Current identity, if discovered in the resource event.
*
* @var \ZF\MvcAuth\Identity\IdentityInterface
*/
protected $identity;
/**
* Input filter, if discovered in the resource event.
*
* @var \Zend\InputFilter\InputFilterInterface
*/
protected $inputFilter;
/**
* Set the entity_class for the controller config calling this resource
*/
public function setEntityClass($className)
{
$this->entityClass = $className;
return $this;
}
public function getEntityClass()
{
return $this->entityClass;
}
public function setCollectionClass($className)
{
$this->collectionClass = $className;
return $this;
}
public function getCollectionClass()
{
return $this->collectionClass;
}
/**
* Retrieve the current resource event, if any
*
* @return ResourceEvent
*/
public function getEvent()
{
return $this->event;
}
/**
* Retrieve the identity, if any
*
* Proxies to the resource event to find the identity, if not already
* composed, and composes it.
*
* @return null|\ZF\MvcAuth\Identity\IdentityInterface
*/
public function getIdentity()
{
if ($this->identity) {
return $this->identity;
}
$event = $this->getEvent();
if (! $event instanceof ResourceEvent) {
return null;
}
$this->identity = $event->getIdentity();
return $this->identity;
}
/**
* Retrieve the input filter, if any
*
* Proxies to the resource event to find the input filter, if not already
* composed, and composes it.
*
* @return null|\Zend\InputFilter\InputFilterInterface
*/
public function getInputFilter()
{
if ($this->inputFilter) {
return $this->inputFilter;
}
$event = $this->getEvent();
if (! $event instanceof ResourceEvent) {
return null;
}
$this->inputFilter = $event->getInputFilter();
return $this->inputFilter;
}
/**
* Attach listeners for all Resource events
*
* @param EventManagerInterface $events
*/
public function attach(EventManagerInterface $events, $priority = 1)
{
$this->listeners[] = $events->attach('create', [$this, 'dispatch']);
$this->listeners[] = $events->attach('delete', [$this, 'dispatch']);
$this->listeners[] = $events->attach('deleteList', [$this, 'dispatch']);
$this->listeners[] = $events->attach('fetch', [$this, 'dispatch']);
$this->listeners[] = $events->attach('fetchAll', [$this, 'dispatch']);
$this->listeners[] = $events->attach('patch', [$this, 'dispatch']);
$this->listeners[] = $events->attach('patchList', [$this, 'dispatch']);
$this->listeners[] = $events->attach('replaceList', [$this, 'dispatch']);
$this->listeners[] = $events->attach('update', [$this, 'dispatch']);
}
/**
* Dispatch an incoming event to the appropriate method
*
* Marshals arguments from the event parameters.
*
* @param ResourceEvent $event
* @return mixed
*/
public function dispatch(ResourceEvent $event)
{
$this->event = $event;
switch ($event->getName()) {
case 'create':
$data = $event->getParam('data', []);
return $this->create($data);
case 'delete':
$id = $event->getParam('id', null);
return $this->delete($id);
case 'deleteList':
$data = $event->getParam('data', []);
return $this->deleteList($data);
case 'fetch':
$id = $event->getParam('id', null);
return $this->fetch($id);
case 'fetchAll':
$queryParams = $event->getQueryParams() ?: [];
return $this->fetchAll($queryParams);
case 'patch':
$id = $event->getParam('id', null);
$data = $event->getParam('data', []);
return $this->patch($id, $data);
case 'patchList':
$data = $event->getParam('data', []);
return $this->patchList($data);
case 'replaceList':
$data = $event->getParam('data', []);
return $this->replaceList($data);
case 'update':
$id = $event->getParam('id', null);
$data = $event->getParam('data', []);
return $this->update($id, $data);
default:
throw new Exception\RuntimeException(sprintf(
'%s has not been setup to handle the event "%s"',
__METHOD__,
$event->getName()
));
}
}
/**
* Create a resource
*
* @param mixed $data
* @return ApiProblem|mixed
*/
public function create($data)
{
return new ApiProblem(405, 'The POST method has not been defined');
}
/**
* Delete a resource
*
* @param mixed $id
* @return ApiProblem|mixed
*/
public function delete($id)
{
return new ApiProblem(405, 'The DELETE method has not been defined for individual resources');
}
/**
* Delete a collection, or members of a collection
*
* @param mixed $data
* @return ApiProblem|mixed
*/
public function deleteList($data)
{
return new ApiProblem(405, 'The DELETE method has not been defined for collections');
}
/**
* Fetch a resource
*
* @param mixed $id
* @return ApiProblem|mixed
*/
public function fetch($id)
{
return new ApiProblem(405, 'The GET method has not been defined for individual resources');
}
/**
* Fetch all or a subset of resources
*
* @param array $params
* @return ApiProblem|mixed
*/
public function fetchAll($params = [])
{
return new ApiProblem(405, 'The GET method has not been defined for collections');
}
/**
* Patch (partial in-place update) a resource
*
* @param mixed $id
* @param mixed $data
* @return ApiProblem|mixed
*/
public function patch($id, $data)
{
return new ApiProblem(405, 'The PATCH method has not been defined for individual resources');
}
/**
* Patch (partial in-place update) a collection or members of a collection
*
* @param mixed $data
* @return ApiProblem|mixed
*/
public function patchList($data)
{
return new ApiProblem(405, 'The PATCH method has not been defined for collections');
}
/**
* Replace a collection or members of a collection
*
* @param mixed $data
* @return ApiProblem|mixed
*/
public function replaceList($data)
{
return new ApiProblem(405, 'The PUT method has not been defined for collections');
}
/**
* Update a resource
*
* @param mixed $id
* @param mixed $data
* @return ApiProblem|mixed
*/
public function update($id, $data)
{
return new ApiProblem(405, 'The PUT method has not been defined for individual resources');
}
}