-
Notifications
You must be signed in to change notification settings - Fork 32
/
RestHandler.php
652 lines (579 loc) · 18.2 KB
/
RestHandler.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
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
<?php
namespace DreamFactory\Core\Components;
use DreamFactory\Core\Contracts\RequestHandlerInterface;
use DreamFactory\Core\Contracts\ResourceInterface;
use DreamFactory\Core\Contracts\ServiceResponseInterface;
use DreamFactory\Core\Contracts\ServiceRequestInterface;
use DreamFactory\Core\Enums\ApiOptions;
use DreamFactory\Core\Enums\Verbs;
use DreamFactory\Core\Enums\VerbsMask;
use DreamFactory\Core\Events\ApiEvent;
use DreamFactory\Core\Events\PostProcessApiEvent;
use DreamFactory\Core\Events\PreProcessApiEvent;
use DreamFactory\Core\Exceptions\BadRequestException;
use DreamFactory\Core\Exceptions\InternalServerErrorException;
use DreamFactory\Core\Exceptions\NotFoundException;
use DreamFactory\Core\Utility\ResourcesWrapper;
use DreamFactory\Core\Utility\ResponseFactory;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\StreamedResponse;
/**
* Class RestHandler
*
* @package DreamFactory\Core\Components
*/
abstract class RestHandler implements RequestHandlerInterface
{
use ExceptionResponse, HasApiDocs;
//*************************************************************************
// Constants
//*************************************************************************
/**
* @var string
*/
const ACTION_TOKEN = '{action}';
/**
* @var string The default pattern of dispatch methods. Action token embedded.
*/
const DEFAULT_HANDLER_PATTERN = 'handle{action}';
//*************************************************************************
// Members
//*************************************************************************
/**
* @var string API name
*/
protected $name;
/**
* @var string Description of this service
*/
protected $label;
/**
* @var string Description of this service
*/
protected $description;
/**
* @var string HTTP Action Verb
*/
protected $action = Verbs::GET;
/**
* @var string HTTP Action Verb
*/
protected $originalAction = null;
/**
* @var string Resource name.
*/
protected $resource;
/**
* @var mixed Resource ID.
*/
protected $resourceId;
/**
* @var string Resource Path.
*/
protected $resourcePath;
/**
* @var array Resource path exploded into array.
*/
protected $resourceArray;
/**
* @var bool If true, processRequest() dispatches a call to handle[Action]() methods if defined.
* For example, a GET request would be dispatched to handleGet().
*/
protected $autoDispatch = true;
/**
* @var string The pattern to search for dispatch methods.
* The string {action} will be replaced by the inbound action (i.e. Get, Put, Post, etc.)
*/
protected $autoDispatchPattern = self::DEFAULT_HANDLER_PATTERN;
/**
* @var bool|array Array of verb aliases. Has no effect if $autoDispatch !== true
*
* Example:
*
* $this->verbAliases = array(
* static::Put => static::Post,
* static::Patch => static::Post,
* static::Merge => static::Post,
*
* // Use a closure too!
* static::Get => function($resource){
* ...
* },
* );
*
* The result will be that processRequest() will dispatch a PUT, PATCH, or MERGE request to the POST handler.
*/
protected $verbAliases = [];
/**
* @var ServiceRequestInterface Request object implementing the ServiceRequestInterface.
*/
protected $request = null;
/**
* @var ServiceResponseInterface Response object implementing the ServiceResponseInterface.
*/
protected $response = null;
/**
* @param array $settings
*/
public function __construct($settings = [])
{
foreach ($settings as $key => $value) {
if (!property_exists($this, $key)) {
// try camel cased
$camel = camel_case($key);
if (property_exists($this, $camel)) {
$this->{$camel} = $value;
continue;
}
}
// set real and virtual
$this->{$key} = $value;
}
}
public function getName()
{
return $this->name;
}
public function getLabel()
{
return $this->label;
}
public function getDescription()
{
return $this->description;
}
/**
* @param ServiceRequestInterface $request
* @param string|null $resource
*
* @return \DreamFactory\Core\Contracts\ServiceResponseInterface
*/
public function handleRequest(ServiceRequestInterface $request, $resource = null)
{
$this->setRequest($request);
$this->setAction($request->getMethod());
$this->setResourceMembers($resource);
$this->response = null;
$resources = $this->getResourceHandlers();
if (!empty($resources) && !empty($this->resource)) {
try {
if (false === $this->response = $this->handleResource($resources)) {
$message = ucfirst($this->action) . " requests for resource '{$this->resourcePath}' are not currently supported by the '{$this->name}' service.";
throw new BadRequestException($message);
}
if (!($this->response instanceof ServiceResponseInterface ||
$this->response instanceof RedirectResponse ||
$this->response instanceof StreamedResponse
)
) {
$this->response = ResponseFactory::create($this->response);
}
} catch (\Exception $e) {
$this->response = static::exceptionToServiceResponse($e);
}
return $this->response;
}
try {
// Perform any pre-processing
$this->preProcess();
// pre-process can now create a response along with throw exceptions to circumvent the processRequest
if (null === $this->response) {
if (false === $this->response = $this->processRequest()) {
$message = ucfirst($this->action) . " requests without a resource are not currently supported by the '{$this->name}' service.";
throw new BadRequestException($message);
}
}
if (!($this->response instanceof ServiceResponseInterface ||
$this->response instanceof RedirectResponse ||
$this->response instanceof StreamedResponse
)
) {
$this->response = ResponseFactory::create($this->response);
}
} catch (\Exception $e) {
$this->response = static::exceptionToServiceResponse($e);
}
// Perform any post-processing
try {
$this->postProcess();
} catch (\Exception $e) {
// override the actual response with the exception
$this->response = static::exceptionToServiceResponse($e);
}
// Perform any response processing
return $this->respond();
}
/**
* @param array $resources
*
* @return bool|mixed
* @throws InternalServerErrorException
* @throws NotFoundException
*/
protected function handleResource(array $resources)
{
$found = array_by_key_value($resources, 'name', $this->resource);
if (!isset($found, $found['class_name'])) {
throw new NotFoundException("Resource '{$this->resource}' not found for service '{$this->name}'.");
}
$className = $found['class_name'];
if (!class_exists($className)) {
throw new InternalServerErrorException('Service configuration class name lookup failed for resource ' .
$this->resourcePath);
}
/** @var ResourceInterface $resource */
$resource = $this->instantiateResource($className, $found);
$newPath = $this->resourceArray;
array_shift($newPath);
$newPath = implode('/', $newPath);
return $resource->handleRequest($this->request, $newPath);
}
protected function instantiateResource($class, $info = [])
{
/** @var ResourceInterface $obj */
$obj = new $class($info);
$obj->setParent($this);
return $obj;
}
protected function getEventName()
{
return $this->name;
}
protected function getEventResource()
{
return $this->resourcePath;
}
/**
* Fires pre process event
* @param string|null $name Optional override for name
* @param string|null $resource Optional override for resource
*/
protected function firePreProcessEvent($name = null, $resource = null)
{
if (empty($name)) {
$name = $this->getEventName();
}
if (empty($resource)) {
$resource = $this->getEventResource();
}
$event = new PreProcessApiEvent($name, $this->request, $this->response, $resource);
/** @noinspection PhpUnusedLocalVariableInspection */
$results = \Event::fire($event);
$this->response = $event->response;
}
/**
* Runs pre processing tasks
*/
protected function preProcess()
{
$this->firePreProcessEvent();
}
/**
* @return bool|mixed
* @throws BadRequestException
*/
protected function processRequest()
{
// Now all actions must be HTTP verbs
if (!Verbs::contains($this->action)) {
throw new BadRequestException('The action "' . $this->action . '" is not supported.');
}
$methodToCall = false;
// Check verb aliases as closures
if (true === $this->autoDispatch && null !== ($alias = array_get($this->verbAliases, $this->action))) {
// A closure?
if (!in_array($alias, Verbs::getDefinedConstants()) && is_callable($alias)) {
$methodToCall = $alias;
}
}
// Not an alias, build a dispatch method if needed
if (!$methodToCall) {
// If we have a dedicated handler method, call it
$method = str_ireplace(static::ACTION_TOKEN, $this->action, $this->autoDispatchPattern);
if ($this->autoDispatch && method_exists($this, $method)) {
$methodToCall = [$this, $method];
}
}
if ($methodToCall) {
$result = call_user_func($methodToCall);
if (false === $result ||
$result instanceof ServiceResponseInterface ||
$result instanceof RedirectResponse ||
$result instanceof StreamedResponse
) {
return $result;
}
return ResponseFactory::create($result);
}
// Otherwise just return false
return false;
}
/**
* Fires post process event
* @param string|null $name Optional name to append
* @param string|null $resource Optional override for resource
*/
protected function firePostProcessEvent($name = null, $resource = null)
{
if (empty($name)) {
$name = $this->getEventName();
}
if (empty($resource)) {
$resource = $this->getEventResource();
}
/** @noinspection PhpUnusedLocalVariableInspection */
$results = \Event::fire(new PostProcessApiEvent($name, $this->request, $this->response, $resource));
}
/**
* Runs post process tasks
*/
protected function postProcess()
{
$this->firePostProcessEvent();
}
/**
* Fires last event before responding
* @param string|null $name Optional name to append
* @param string|null $resource Optional override for resource
*/
protected function fireFinalEvent($name = null, $resource = null)
{
if (empty($name)) {
$name = $this->getEventName();
}
if (empty($resource)) {
$resource = $this->getEventResource();
}
/** @noinspection PhpUnusedLocalVariableInspection */
$results = \Event::fire(new ApiEvent($name, $this->request, $this->response, $resource));
}
/**
* @return ServiceResponseInterface
*/
protected function respond()
{
if (!($this->response instanceof ServiceResponseInterface ||
$this->response instanceof RedirectResponse ||
$this->response instanceof StreamedResponse
)
) {
$this->response = ResponseFactory::create($this->response);
}
$this->fireFinalEvent();
return $this->response;
}
/**
* Sets the request object
*
* @param $request ServiceRequestInterface
*
* @return $this
*/
protected function setRequest(ServiceRequestInterface $request)
{
$this->request = $request;
return $this;
}
/**
* Sets the HTTP Action verb
*
* @param $action string
*
* @return $this
*/
protected function setAction($action)
{
$this->action = trim(strtoupper($action));
// Check verb aliases, set correct action allowing for closures
if (null !== ($alias = array_get($this->verbAliases, $this->action))) {
// A closure?
if (in_array($alias, Verbs::getDefinedConstants()) || !is_callable($alias)) {
// Set original and work with alias
$this->originalAction = $this->action;
$this->action = $alias;
}
}
return $this;
}
/**
* @return string The action actually requested
*/
public function getRequestedAction()
{
return $this->originalAction ?: $this->action;
}
/**
* @param string $action
*
* @return $this
*/
public function overrideAction($action)
{
$this->action = trim(strtoupper($action));
return $this;
}
/**
* @return string
*/
public function getOriginalAction()
{
return $this->originalAction;
}
/**
* @return string
*/
public function getAction()
{
return $this->action;
}
/**
* Apply the commonly used REST path members to the class.
*
* @param string $resourcePath
*
* @return $this
*/
protected function setResourceMembers($resourcePath = null)
{
// remove trailing slash here, override this function if you need it
$this->resourcePath = rtrim($resourcePath, '/');
$this->resourceArray = (!empty($this->resourcePath)) ? explode('/', $this->resourcePath) : [];
if (!empty($this->resourceArray)) {
$resource = array_get($this->resourceArray, 0);
if (!is_null($resource) && ('' !== $resource)) {
$this->resource = $resource;
}
$id = array_get($this->resourceArray, 1);
if (!is_null($id) && ('' !== $id)) {
$this->resourceId = $id;
}
}
return $this;
}
/**
* @param null $key
* @param null $default
*
* @return mixed
*/
protected function getPayloadData($key = null, $default = null)
{
$data = $this->request->getPayloadData($key, $default);
return $data;
}
/**
* Implement to return the resource configuration for this REST handling object
*
* @return array Empty when not implemented, otherwise the array of resource information
*/
public function getResources()
{
return [];
}
/**
* Implement to return the resource handler configuration for this REST handling object
*
* @return array Empty when not implemented, otherwise the array of resource handlers
*/
protected function getResourceHandlers()
{
return [];
}
/**
* Returns the identifier of the supported resources
*
* @return string
* @throws BadRequestException
*/
protected static function getResourceIdentifier()
{
throw new BadRequestException('No known identifier for resources.');
}
/**
* @param string $operation
* @param string $resource
*
* @return bool
*/
public function checkPermission(
/** @noinspection PhpUnusedParameterInspection */
$operation,
$resource = null
) {
return false;
}
/**
* @param string $resource
*
* @return string
*/
public function getPermissions(
/** @noinspection PhpUnusedParameterInspection */
$resource = null
) {
return false;
}
/**
* Handles GET action
*
* @return mixed
* @throws BadRequestException
*/
protected function handleGET()
{
$resources = $this->getResources();
if (is_array($resources)) {
$includeAccess = $this->request->getParameterAsBool(ApiOptions::INCLUDE_ACCESS);
$asList = $this->request->getParameterAsBool(ApiOptions::AS_LIST);
$idField = $this->request->getParameter(ApiOptions::ID_FIELD, static::getResourceIdentifier());
$fields = $this->request->getParameter(ApiOptions::FIELDS);
if (!$asList && $includeAccess) {
foreach ($resources as &$resource) {
if (is_array($resource)) {
$name = array_get($resource, $idField);
$resource['access'] =
VerbsMask::maskToArray($this->getPermissions($name));
}
}
}
return ResourcesWrapper::cleanResources($resources, $asList, $idField, $fields);
}
return $resources;
}
/**
* Handles POST action
*
* @return mixed
*/
protected function handlePOST()
{
return false;
}
/**
* Handles PUT action
*
* @return mixed
*/
protected function handlePUT()
{
return false;
}
/**
* Handles PATCH action
*
* @return mixed
*/
protected function handlePATCH()
{
return false;
}
/**
* Handles DELETE action
*
* @return mixed
*/
protected function handleDELETE()
{
return false;
}
}