forked from phly/PhlyRestfully
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule.php
218 lines (194 loc) · 7.39 KB
/
Module.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
<?php
/**
* @link https://github.com/weierophinney/PhlyRestfully for the canonical source repository
* @copyright Copyright (c) 2013 Matthew Weier O'Phinney
* @license http://opensource.org/licenses/BSD-2-Clause BSD-2-Clause
* @package PhlyRestfully
*/
namespace PhlyRestfully;
use Zend\Stdlib\Hydrator\HydratorInterface;
/**
* ZF2 module
*/
class Module
{
/**
* Retrieve autoloader configuration
*
* @return array
*/
public function getAutoloaderConfig()
{
return array('Zend\Loader\StandardAutoloader' => array('namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
)));
}
/**
* Retrieve module configuration
*
* @return array
*/
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
/**
* Retrieve Service Manager configuration
*
* Defines PhlyRestfully\RestfulJsonStrategy service factory.
*
* @return array
*/
public function getServiceConfig()
{
return array('factories' => array(
'PhlyRestfully\ApiProblemListener' => function ($services) {
$config = array();
if ($services->has('config')) {
$config = $services->get('config');
}
$filter = null;
if (isset($config['phlyrestfully'])
&& isset($config['phlyrestfully']['accept_filter'])
) {
$filter = $config['phlyrestfully']['accept_filter'];
}
return new Listener\ApiProblemListener($filter);
},
'PhlyRestfully\JsonRenderer' => function ($services) {
$helpers = $services->get('ViewHelperManager');
$config = $services->get('Config');
$displayExceptions = false;
if (isset($config['view_manager'])
&& isset($config['view_manager']['display_exceptions'])
) {
$displayExceptions = (bool) $config['view_manager']['display_exceptions'];
}
$renderer = new View\RestfulJsonRenderer();
$renderer->setHelperPluginManager($helpers);
$renderer->setDisplayExceptions($displayExceptions);
return $renderer;
},
'PhlyRestfully\RestfulJsonStrategy' => function ($services) {
$renderer = $services->get('PhlyRestfully\JsonRenderer');
return new View\RestfulJsonStrategy($renderer);
},
));
}
/**
* Define factories for controller plugins
*
* Defines the "HalLinks" plugin.
*
* @return array
*/
public function getControllerPluginConfig()
{
return array('factories' => array(
'HalLinks' => function ($plugins) {
$services = $plugins->getServiceLocator();
$helpers = $services->get('ViewHelperManager');
return $helpers->get('HalLinks');
},
));
}
/**
* Defines the "HalLinks" view helper
*
* @return array
*/
public function getViewHelperConfig()
{
return array('factories' => array(
'HalLinks' => function ($helpers) {
$serverUrlHelper = $helpers->get('ServerUrl');
$urlHelper = $helpers->get('Url');
$services = $helpers->getServiceLocator();
$config = $services->get('Config');
$helper = new Plugin\HalLinks();
$helper->setServerUrlHelper($serverUrlHelper);
$helper->setUrlHelper($urlHelper);
if (isset($config['phlyrestfully'])
&& isset($config['phlyrestfully']['renderer'])
) {
$config = $config['phlyrestfully']['renderer'];
if (isset($config['default_hydrator'])) {
$hydratorServiceName = $config['default_hydrator'];
$hydrator = $services->get($hydratorServiceName);
if ($hydrator instanceof HydratorInterface) {
$helper->setDefaultHydrator($hydrator);
} else {
throw new Exception\DomainException(
sprintf(
'Hydrator %s must implement the Zend\Stdlib\Hydrator\HydratorInterface' .
'to be used as the default hydrator.',
get_class($hydrator)
)
);
}
}
if (isset($config['hydrators']) && is_array($config['hydrators'])) {
$hydratorMap = $config['hydrators'];
foreach ($hydratorMap as $class => $hydratorServiceName) {
$hydrator = $services->get($hydratorServiceName);
if ($hydrator instanceof HydratorInterface) {
$helper->addHydrator($class, $hydrator);
} else {
throw new Exception\DomainException(
sprintf(
'Hydrator %s for class %s must implement the' .
'Zend\Stdlib\Hydrator\HydratorInterface',
get_class($hydrator), $class
)
);
}
}
}
}
return $helper;
}
));
}
/**
* Listener for bootstrap event
*
* Attaches a render event.
*
* @param \Zend\Mvc\MvcEvent $e
*/
public function onBootstrap($e)
{
$app = $e->getTarget();
$services = $app->getServiceManager();
$events = $app->getEventManager();
$events->attach('render', array($this, 'onRender'), 100);
$sharedEvents = $events->getSharedManager();
$sharedEvents->attach('PhlyRestfully\ResourceController', 'dispatch', function($e) use ($services) {
$eventManager = $e->getApplication()->getEventManager();
$eventManager->attach($services->get('PhlyRestfully\ApiProblemListener'));
}, 300);
$sharedEvents->attachAggregate($services->get('PhlyRestfully\ResourceParametersListener'));
}
/**
* Listener for the render event
*
* Attaches a rendering/response strategy to the View.
*
* @param \Zend\Mvc\MvcEvent $e
*/
public function onRender($e)
{
$result = $e->getResult();
if (!$result instanceof View\RestfulJsonModel) {
return;
}
$app = $e->getTarget();
$services = $app->getServiceManager();
$view = $services->get('View');
$restfulJsonStrategy = $services->get('PhlyRestfully\RestfulJsonStrategy');
$events = $view->getEventManager();
// register at high priority, to "beat" normal json strategy registered
// via view manager
$events->attach($restfulJsonStrategy, 200);
}
}