1 | <?php |
||
28 | class Configuration implements ConfigurationInterface |
||
29 | { |
||
30 | /** |
||
31 | * Whether to use the debug mode. |
||
32 | * |
||
33 | * @see https://github.com/doctrine/DoctrineBundle/blob/v1.5.2/DependencyInjection/Configuration.php#L31-L41 |
||
34 | * |
||
35 | * @var bool |
||
36 | */ |
||
37 | private $debug; |
||
38 | |||
39 | /** |
||
40 | * @param bool $debug |
||
41 | */ |
||
42 | 23 | public function __construct($debug) |
|
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | 23 | public function getConfigTreeBuilder() |
|
51 | { |
||
52 | 23 | $treeBuilder = new TreeBuilder(); |
|
53 | 23 | $rootNode = $treeBuilder->root('httplug'); |
|
54 | |||
55 | 23 | $this->configureClients($rootNode); |
|
56 | 23 | $this->configureSharedPlugins($rootNode); |
|
57 | |||
58 | $rootNode |
||
59 | 23 | ->validate() |
|
60 | 23 | ->ifTrue(function ($v) { |
|
61 | 19 | return !empty($v['classes']['client']) |
|
62 | 16 | || !empty($v['classes']['message_factory']) |
|
63 | 16 | || !empty($v['classes']['uri_factory']) |
|
64 | 19 | || !empty($v['classes']['stream_factory']); |
|
65 | 23 | }) |
|
66 | 23 | ->then(function ($v) { |
|
67 | 3 | foreach ($v['classes'] as $key => $class) { |
|
68 | 3 | if (null !== $class && !class_exists($class)) { |
|
69 | 1 | throw new InvalidConfigurationException(sprintf( |
|
70 | 1 | 'Class %s specified for httplug.classes.%s does not exist.', |
|
71 | 1 | $class, |
|
72 | 3 | $key |
|
73 | )); |
||
74 | } |
||
75 | } |
||
76 | |||
77 | 2 | return $v; |
|
78 | 23 | }) |
|
79 | 23 | ->end() |
|
80 | 23 | ->beforeNormalization() |
|
81 | 23 | ->ifTrue(function ($v) { |
|
82 | 23 | return is_array($v) && array_key_exists('toolbar', $v) && is_array($v['toolbar']); |
|
83 | 23 | }) |
|
84 | 23 | ->then(function ($v) { |
|
85 | 3 | if (array_key_exists('profiling', $v)) { |
|
86 | 1 | throw new InvalidConfigurationException('Can\'t configure both "toolbar" and "profiling" section. The "toolbar" config is deprecated as of version 1.3.0, please only use "profiling".'); |
|
87 | } |
||
88 | |||
89 | 2 | @trigger_error('"httplug.toolbar" config is deprecated since version 1.3 and will be removed in 2.0. Use "httplug.profiling" instead.', E_USER_DEPRECATED); |
|
90 | |||
91 | 2 | if (array_key_exists('enabled', $v['toolbar']) && 'auto' === $v['toolbar']['enabled']) { |
|
92 | 1 | @trigger_error('"auto" value in "httplug.toolbar" config is deprecated since version 1.3 and will be removed in 2.0. Use a boolean value instead.', E_USER_DEPRECATED); |
|
93 | 1 | $v['toolbar']['enabled'] = $this->debug; |
|
94 | } |
||
95 | |||
96 | 2 | $v['profiling'] = $v['toolbar']; |
|
97 | |||
98 | 2 | unset($v['toolbar']); |
|
99 | |||
100 | 2 | return $v; |
|
101 | 23 | }) |
|
102 | 23 | ->end() |
|
103 | 23 | ->fixXmlConfig('client') |
|
104 | 23 | ->children() |
|
105 | 23 | ->arrayNode('main_alias') |
|
106 | 23 | ->addDefaultsIfNotSet() |
|
107 | 23 | ->info('Configure which service the main alias point to.') |
|
108 | 23 | ->children() |
|
109 | 23 | ->scalarNode('client')->defaultValue('httplug.client.default')->end() |
|
110 | 23 | ->scalarNode('message_factory')->defaultValue('httplug.message_factory.default')->end() |
|
111 | 23 | ->scalarNode('uri_factory')->defaultValue('httplug.uri_factory.default')->end() |
|
112 | 23 | ->scalarNode('stream_factory')->defaultValue('httplug.stream_factory.default')->end() |
|
113 | 23 | ->end() |
|
114 | 23 | ->end() |
|
115 | 23 | ->arrayNode('classes') |
|
116 | 23 | ->addDefaultsIfNotSet() |
|
117 | 23 | ->info('Overwrite a service class instead of using the discovery mechanism.') |
|
118 | 23 | ->children() |
|
119 | 23 | ->scalarNode('client')->defaultNull()->end() |
|
120 | 23 | ->scalarNode('message_factory')->defaultNull()->end() |
|
121 | 23 | ->scalarNode('uri_factory')->defaultNull()->end() |
|
122 | 23 | ->scalarNode('stream_factory')->defaultNull()->end() |
|
123 | 23 | ->end() |
|
124 | 23 | ->end() |
|
125 | 23 | ->arrayNode('profiling') |
|
126 | 23 | ->addDefaultsIfNotSet() |
|
127 | 23 | ->treatFalseLike(['enabled' => false]) |
|
128 | 23 | ->treatTrueLike(['enabled' => true]) |
|
129 | 23 | ->treatNullLike(['enabled' => $this->debug]) |
|
130 | 23 | ->info('Extend the debug profiler with information about requests.') |
|
131 | 23 | ->children() |
|
132 | 23 | ->booleanNode('enabled') |
|
133 | 23 | ->info('Turn the toolbar on or off. Defaults to kernel debug mode.') |
|
134 | 23 | ->defaultValue($this->debug) |
|
135 | 23 | ->end() |
|
136 | 23 | ->scalarNode('formatter')->defaultNull()->end() |
|
137 | 23 | ->integerNode('captured_body_length') |
|
138 | 23 | ->defaultValue(0) |
|
139 | 23 | ->info('Limit long HTTP message bodies to x characters. If set to 0 we do not read the message body. Only available with the default formatter (FullHttpMessageFormatter).') |
|
140 | 23 | ->end() |
|
141 | 23 | ->end() |
|
142 | 23 | ->end() |
|
143 | 23 | ->arrayNode('discovery') |
|
144 | 23 | ->addDefaultsIfNotSet() |
|
145 | 23 | ->info('Control what clients should be found by the discovery.') |
|
146 | 23 | ->children() |
|
147 | 23 | ->scalarNode('client') |
|
148 | 23 | ->defaultValue('auto') |
|
149 | 23 | ->info('Set to "auto" to see auto discovered client in the web profiler. If provided a service id for a client then this client will be found by auto discovery.') |
|
150 | 23 | ->end() |
|
151 | 23 | ->scalarNode('async_client') |
|
152 | 23 | ->defaultNull() |
|
153 | 23 | ->info('Set to "auto" to see auto discovered client in the web profiler. If provided a service id for a client then this client will be found by auto discovery.') |
|
154 | 23 | ->end() |
|
155 | 23 | ->end() |
|
156 | 23 | ->end() |
|
157 | 23 | ->end(); |
|
158 | |||
159 | 23 | return $treeBuilder; |
|
160 | } |
||
161 | |||
162 | 23 | private function configureClients(ArrayNodeDefinition $root) |
|
163 | { |
||
164 | 23 | $root->children() |
|
165 | 23 | ->arrayNode('clients') |
|
166 | 23 | ->useAttributeAsKey('name') |
|
167 | 23 | ->prototype('array') |
|
168 | 23 | ->fixXmlConfig('plugin') |
|
169 | 23 | ->validate() |
|
170 | 23 | ->ifTrue(function ($config) { |
|
171 | // Make sure we only allow one of these to be true |
||
172 | 7 | return (bool) $config['flexible_client'] + (bool) $config['http_methods_client'] + (bool) $config['batch_client'] >= 2; |
|
173 | 23 | }) |
|
174 | 23 | ->thenInvalid('A http client can\'t be decorated with several of FlexibleHttpClient, HttpMethodsClient and BatchClient. Only one of the following options can be true. ("flexible_client", "http_methods_client", "batch_client")') |
|
175 | 23 | ->end() |
|
176 | 23 | ->validate() |
|
177 | 23 | ->ifTrue(function ($config) { |
|
178 | 7 | return 'httplug.factory.auto' === $config['factory'] && !empty($config['config']); |
|
179 | 23 | }) |
|
180 | 23 | ->thenInvalid('If you want to use the "config" key you must also specify a valid "factory".') |
|
181 | 23 | ->end() |
|
182 | 23 | ->children() |
|
183 | 23 | ->scalarNode('factory') |
|
184 | 23 | ->defaultValue('httplug.factory.auto') |
|
185 | 23 | ->cannotBeEmpty() |
|
186 | 23 | ->info('The service id of a factory to use when creating the adapter.') |
|
187 | 23 | ->end() |
|
188 | 23 | ->booleanNode('flexible_client') |
|
189 | 23 | ->defaultFalse() |
|
190 | 23 | ->info('Set to true to get the client wrapped in a FlexibleHttpClient which emulates async or sync behavior.') |
|
191 | 23 | ->end() |
|
192 | 23 | ->booleanNode('http_methods_client') |
|
193 | 23 | ->defaultFalse() |
|
194 | 23 | ->info('Set to true to get the client wrapped in a HttpMethodsClient which emulates provides functions for HTTP verbs.') |
|
195 | 23 | ->end() |
|
196 | 23 | ->booleanNode('batch_client') |
|
197 | 23 | ->defaultFalse() |
|
198 | 23 | ->info('Set to true to get the client wrapped in a BatchClient which allows you to send multiple request at the same time.') |
|
199 | 23 | ->end() |
|
200 | 23 | ->variableNode('config')->defaultValue([])->end() |
|
201 | 23 | ->append($this->createClientPluginNode()) |
|
202 | 23 | ->end() |
|
203 | 23 | ->end() |
|
204 | 23 | ->end(); |
|
205 | 23 | } |
|
206 | |||
207 | /** |
||
208 | * @param ArrayNodeDefinition $root |
||
209 | */ |
||
210 | 23 | private function configureSharedPlugins(ArrayNodeDefinition $root) |
|
211 | { |
||
212 | $pluginsNode = $root |
||
213 | 23 | ->children() |
|
214 | 23 | ->arrayNode('plugins') |
|
215 | 23 | ->info('Global plugin configuration. Plugins need to be explicitly added to clients.') |
|
216 | 23 | ->addDefaultsIfNotSet() |
|
217 | // don't call end to get the plugins node |
||
218 | ; |
||
219 | 23 | $this->addSharedPluginNodes($pluginsNode); |
|
220 | 23 | } |
|
221 | |||
222 | /** |
||
223 | * Createplugins node of a client. |
||
224 | * |
||
225 | * @return ArrayNodeDefinition The plugin node |
||
226 | */ |
||
227 | 23 | private function createClientPluginNode() |
|
228 | { |
||
229 | 23 | $builder = new TreeBuilder(); |
|
230 | 23 | $node = $builder->root('plugins'); |
|
231 | |||
232 | /** @var ArrayNodeDefinition $pluginList */ |
||
233 | $pluginList = $node |
||
234 | 23 | ->info('A list of plugin service ids and client specific plugin definitions. The order is important.') |
|
235 | 23 | ->prototype('array') |
|
236 | ; |
||
237 | $pluginList |
||
238 | // support having just a service id in the list |
||
239 | 23 | ->beforeNormalization() |
|
240 | 23 | ->always(function ($plugin) { |
|
241 | 8 | if (is_string($plugin)) { |
|
242 | return [ |
||
243 | 7 | 'reference' => [ |
|
244 | 'enabled' => true, |
||
245 | 7 | 'id' => $plugin, |
|
246 | ], |
||
247 | ]; |
||
248 | } |
||
249 | |||
250 | 7 | return $plugin; |
|
251 | 23 | }) |
|
252 | 23 | ->end() |
|
253 | |||
254 | 23 | ->validate() |
|
255 | 23 | ->always(function ($plugins) { |
|
256 | 7 | foreach ($plugins as $name => $definition) { |
|
257 | 7 | if ('authentication' === $name) { |
|
258 | 7 | if (!count($definition)) { |
|
259 | 7 | unset($plugins['authentication']); |
|
260 | } |
||
261 | 7 | } elseif (!$definition['enabled']) { |
|
262 | 7 | unset($plugins[$name]); |
|
263 | } |
||
264 | } |
||
265 | |||
266 | 7 | return $plugins; |
|
267 | 23 | }) |
|
268 | 23 | ->end() |
|
269 | ; |
||
270 | 23 | $this->addSharedPluginNodes($pluginList, true); |
|
271 | |||
272 | $pluginList |
||
273 | 23 | ->children() |
|
274 | 23 | ->arrayNode('reference') |
|
275 | 23 | ->canBeEnabled() |
|
276 | 23 | ->info('Reference to a plugin service') |
|
277 | 23 | ->children() |
|
278 | 23 | ->scalarNode('id') |
|
279 | 23 | ->info('Service id of a plugin') |
|
280 | 23 | ->isRequired() |
|
281 | 23 | ->cannotBeEmpty() |
|
282 | 23 | ->end() |
|
283 | 23 | ->end() |
|
284 | 23 | ->end() |
|
285 | 23 | ->arrayNode('add_host') |
|
286 | 23 | ->canBeEnabled() |
|
287 | 23 | ->addDefaultsIfNotSet() |
|
288 | 23 | ->info('Set scheme, host and port in the request URI.') |
|
289 | 23 | ->children() |
|
290 | 23 | ->scalarNode('host') |
|
291 | 23 | ->info('Host name including protocol and optionally the port number, e.g. https://api.local:8000') |
|
292 | 23 | ->isRequired() |
|
293 | 23 | ->cannotBeEmpty() |
|
294 | 23 | ->end() |
|
295 | 23 | ->scalarNode('replace') |
|
296 | 23 | ->info('Whether to replace the host if request already specifies one') |
|
297 | 23 | ->defaultValue(false) |
|
298 | 23 | ->end() |
|
299 | 23 | ->end() |
|
300 | 23 | ->end() |
|
301 | 23 | ->arrayNode('header_append') |
|
302 | 23 | ->canBeEnabled() |
|
303 | 23 | ->info('Append headers to the request. If the header already exists the value will be appended to the current value.') |
|
304 | 23 | ->fixXmlConfig('header') |
|
305 | 23 | ->children() |
|
306 | 23 | ->arrayNode('headers') |
|
307 | 23 | ->info('Keys are the header names, values the header values') |
|
308 | 23 | ->normalizeKeys(false) |
|
309 | 23 | ->useAttributeAsKey('name') |
|
310 | 23 | ->prototype('scalar')->end() |
|
311 | 23 | ->end() |
|
312 | 23 | ->end() |
|
313 | 23 | ->end() |
|
314 | 23 | ->arrayNode('header_defaults') |
|
315 | 23 | ->canBeEnabled() |
|
316 | 23 | ->info('Set header to default value if it does not exist.') |
|
317 | 23 | ->fixXmlConfig('header') |
|
318 | 23 | ->children() |
|
319 | 23 | ->arrayNode('headers') |
|
320 | 23 | ->info('Keys are the header names, values the header values') |
|
321 | 23 | ->normalizeKeys(false) |
|
322 | 23 | ->useAttributeAsKey('name') |
|
323 | 23 | ->prototype('scalar')->end() |
|
324 | 23 | ->end() |
|
325 | 23 | ->end() |
|
326 | 23 | ->end() |
|
327 | 23 | ->arrayNode('header_set') |
|
328 | 23 | ->canBeEnabled() |
|
329 | 23 | ->info('Set headers to requests. If the header does not exist it wil be set, if the header already exists it will be replaced.') |
|
330 | 23 | ->fixXmlConfig('header') |
|
331 | 23 | ->children() |
|
332 | 23 | ->arrayNode('headers') |
|
333 | 23 | ->info('Keys are the header names, values the header values') |
|
334 | 23 | ->normalizeKeys(false) |
|
335 | 23 | ->useAttributeAsKey('name') |
|
336 | 23 | ->prototype('scalar')->end() |
|
337 | 23 | ->end() |
|
338 | 23 | ->end() |
|
339 | 23 | ->end() |
|
340 | 23 | ->arrayNode('header_remove') |
|
341 | 23 | ->canBeEnabled() |
|
342 | 23 | ->info('Remove headers from requests.') |
|
343 | 23 | ->fixXmlConfig('header') |
|
344 | 23 | ->children() |
|
345 | 23 | ->arrayNode('headers') |
|
346 | 23 | ->info('List of header names to remove') |
|
347 | 23 | ->prototype('scalar')->end() |
|
348 | 23 | ->end() |
|
349 | 23 | ->end() |
|
350 | 23 | ->end() |
|
351 | 23 | ->end() |
|
352 | 23 | ->end(); |
|
353 | |||
354 | 23 | return $node; |
|
355 | } |
||
356 | |||
357 | /** |
||
358 | * Add the definitions for shared plugin configurations. |
||
359 | * |
||
360 | * @param ArrayNodeDefinition $pluginNode The node to add to. |
||
361 | * @param bool $disableAll Some shared plugins are enabled by default. On the client, all are disabled by default. |
||
362 | */ |
||
363 | 23 | private function addSharedPluginNodes(ArrayNodeDefinition $pluginNode, $disableAll = false) |
|
454 | |||
455 | /** |
||
456 | * Create configuration for authentication plugin. |
||
457 | * |
||
458 | * @return NodeDefinition Definition for the authentication node in the plugins list. |
||
459 | */ |
||
460 | 23 | private function createAuthenticationPluginNode() |
|
461 | { |
||
462 | 23 | $builder = new TreeBuilder(); |
|
463 | 23 | $node = $builder->root('authentication'); |
|
464 | $node |
||
465 | 23 | ->useAttributeAsKey('name') |
|
466 | 23 | ->prototype('array') |
|
467 | 23 | ->validate() |
|
468 | 23 | ->always() |
|
469 | 23 | ->then(function ($config) { |
|
470 | 7 | switch ($config['type']) { |
|
471 | case 'basic': |
||
472 | 6 | $this->validateAuthenticationType(['username', 'password'], $config, 'basic'); |
|
473 | |||
474 | 6 | break; |
|
475 | case 'bearer': |
||
476 | 1 | $this->validateAuthenticationType(['token'], $config, 'bearer'); |
|
477 | |||
478 | 1 | break; |
|
479 | case 'service': |
||
480 | 2 | $this->validateAuthenticationType(['service'], $config, 'service'); |
|
481 | |||
482 | 1 | break; |
|
483 | case 'wsse': |
||
484 | 1 | $this->validateAuthenticationType(['username', 'password'], $config, 'wsse'); |
|
485 | |||
486 | 1 | break; |
|
487 | } |
||
488 | |||
489 | 6 | return $config; |
|
490 | 23 | }) |
|
491 | 23 | ->end() |
|
492 | 23 | ->children() |
|
493 | 23 | ->enumNode('type') |
|
494 | 23 | ->values(['basic', 'bearer', 'wsse', 'service']) |
|
495 | 23 | ->isRequired() |
|
496 | 23 | ->cannotBeEmpty() |
|
497 | 23 | ->end() |
|
498 | 23 | ->scalarNode('username')->end() |
|
499 | 23 | ->scalarNode('password')->end() |
|
500 | 23 | ->scalarNode('token')->end() |
|
501 | 23 | ->scalarNode('service')->end() |
|
502 | 23 | ->end() |
|
503 | 23 | ->end() |
|
504 | 23 | ->end(); // End authentication plugin |
|
505 | |||
506 | 23 | return $node; |
|
507 | } |
||
508 | |||
509 | /** |
||
510 | * Validate that the configuration fragment has the specified keys and none other. |
||
511 | * |
||
512 | * @param array $expected Fields that must exist |
||
513 | * @param array $actual Actual configuration hashmap |
||
514 | * @param string $authName Name of authentication method for error messages |
||
515 | * |
||
516 | * @throws InvalidConfigurationException If $actual does not have exactly the keys specified in $expected (plus 'type') |
||
517 | */ |
||
518 | 7 | private function validateAuthenticationType(array $expected, array $actual, $authName) |
|
536 | |||
537 | /** |
||
538 | * Create configuration for cache plugin. |
||
539 | * |
||
540 | * @return NodeDefinition Definition for the cache node in the plugins list. |
||
541 | */ |
||
542 | 23 | private function createCachePluginNode() |
|
636 | } |
||
637 |