-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathJSONAPIExtension.php
127 lines (110 loc) · 3.8 KB
/
JSONAPIExtension.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
<?php
/**
* JSON API extension for Bolt. Forked from the JSONAccess extension.
*
* @author Tobias Dammers <tobias@twokings.nl>
* @author Bob den Otter <bob@twokings.nl>
* @author Xiao-Hu Tai <xiao@twokings.nl>
* @author Dennis Snijder <Dennissnijder97@gmail.com>
*/
namespace Bolt\Extension\Bolt\JsonApi;
use Bolt\Controller\Zone;
use Bolt\Extension\Bolt\JsonApi\Controllers\ContentController;
use Bolt\Extension\Bolt\JsonApi\Exception\ApiException;
use Bolt\Extension\Bolt\JsonApi\Exception\FrontendDisabledException;
use Bolt\Extension\Bolt\JsonApi\Provider\APIProvider;
use Bolt\Extension\Bolt\JsonApi\Response\ApiErrorResponse;
use Bolt\Extension\SimpleExtension;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Event\FilterControllerEvent;
use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;
use Symfony\Component\HttpKernel\Exception\HttpException;
use Symfony\Component\HttpKernel\KernelEvents;
/**
* This extension tries to return JSON responses according to the specifications
* on jsonapi.org as much as possible. This extension is originally based on the
* `bolt/jsonaccess` extension.
*/
class JSONAPIExtension extends SimpleExtension
{
/**
* @return array
*/
public function getServiceProviders()
{
return [
$this,
new APIProvider($this->getConfig()),
];
}
/**
* @return array
*/
protected function registerFrontendControllers()
{
$container = $this->getContainer();
//You can't mount the same route twice, because it will be overwritten in the array.
return [
$container['jsonapi.config']->getBase() =>
new ContentController($container['jsonapi.config']),
];
}
/**
* @return array
*/
public static function getSubscribedEvents()
{
$parentEvents = parent::getSubscribedEvents();
//Priority must be greater than 515 or otherwise skipped by Bolts Exception handler
$localEvents = [
KernelEvents::EXCEPTION => [
['error', 515],
],
KernelEvents::CONTROLLER => [
['disableFrontend', 10]
]
];
return $parentEvents + $localEvents;
}
public function disableFrontend(FilterControllerEvent $event)
{
$request = $event->getRequest();
$container = $this->getContainer();
$routeName = $request->get('_route');
//Check if request is NOT to frontend
if (! Zone::isFrontend($request)) {
return;
}
//Check if we should disable frontend based upon the configuration
if (! $container['jsonapi.config']->isDisableFrontend()) {
return;
}
//Only disable frontend routes, don't disable json routes
if (strpos($routeName, 'jsonapi') === false) {
$event->setController(
function() {
throw new HttpException(Response::HTTP_FORBIDDEN, "Front-end is disabled by JSON API extension.");
}
);
}
}
/**
* Listener to handle all exceptions thrown of type ApiException. It converts
* the exception into an ApiErrorResponse.
*
* @param GetResponseForExceptionEvent $response
*/
public function error(GetResponseForExceptionEvent $response)
{
$exception = $response->getException();
if ($exception instanceof ApiException) {
$container = $this->getContainer();
$response->setResponse(new ApiErrorResponse(
$exception->getStatusCode(),
Response::$statusTexts[$exception->getStatusCode()],
['details' => $exception->getMessage()],
$container['jsonapi.config']
));
}
}
}