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 | 26 | public function __construct($debug) |
|
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | 26 | public function getConfigTreeBuilder() |
|
51 | { |
||
52 | 26 | $treeBuilder = new TreeBuilder(); |
|
53 | 26 | $rootNode = $treeBuilder->root('httplug'); |
|
54 | |||
55 | 26 | $this->configureClients($rootNode); |
|
56 | 26 | $this->configureSharedPlugins($rootNode); |
|
57 | |||
58 | $rootNode |
||
59 | 26 | ->validate() |
|
60 | ->ifTrue(function ($v) { |
||
61 | 22 | return !empty($v['classes']['client']) |
|
62 | 19 | || !empty($v['classes']['message_factory']) |
|
63 | 19 | || !empty($v['classes']['uri_factory']) |
|
64 | 22 | || !empty($v['classes']['stream_factory']); |
|
65 | 26 | }) |
|
66 | ->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 | 26 | }) |
|
79 | 26 | ->end() |
|
80 | 26 | ->beforeNormalization() |
|
81 | ->ifTrue(function ($v) { |
||
82 | 26 | return is_array($v) && array_key_exists('toolbar', $v) && is_array($v['toolbar']); |
|
83 | 26 | }) |
|
84 | ->then(function ($v) { |
||
85 | 4 | 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 | 3 | @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 | 3 | 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 | 3 | $v['profiling'] = $v['toolbar']; |
|
97 | |||
98 | 3 | unset($v['toolbar']); |
|
99 | |||
100 | 3 | return $v; |
|
101 | 26 | }) |
|
102 | 26 | ->end() |
|
103 | 26 | ->fixXmlConfig('client') |
|
104 | 26 | ->children() |
|
105 | 26 | ->arrayNode('main_alias') |
|
106 | 26 | ->addDefaultsIfNotSet() |
|
107 | 26 | ->info('Configure which service the main alias point to.') |
|
108 | 26 | ->children() |
|
109 | 26 | ->scalarNode('client')->defaultValue('httplug.client.default')->end() |
|
110 | 26 | ->scalarNode('message_factory')->defaultValue('httplug.message_factory.default')->end() |
|
111 | 26 | ->scalarNode('uri_factory')->defaultValue('httplug.uri_factory.default')->end() |
|
112 | 26 | ->scalarNode('stream_factory')->defaultValue('httplug.stream_factory.default')->end() |
|
113 | 26 | ->end() |
|
114 | 26 | ->end() |
|
115 | 26 | ->arrayNode('classes') |
|
116 | 26 | ->addDefaultsIfNotSet() |
|
117 | 26 | ->info('Overwrite a service class instead of using the discovery mechanism.') |
|
118 | 26 | ->children() |
|
119 | 26 | ->scalarNode('client')->defaultNull()->end() |
|
120 | 26 | ->scalarNode('message_factory')->defaultNull()->end() |
|
121 | 26 | ->scalarNode('uri_factory')->defaultNull()->end() |
|
122 | 26 | ->scalarNode('stream_factory')->defaultNull()->end() |
|
123 | 26 | ->end() |
|
124 | 26 | ->end() |
|
125 | 26 | ->arrayNode('profiling') |
|
126 | 26 | ->addDefaultsIfNotSet() |
|
127 | 26 | ->treatFalseLike(['enabled' => false]) |
|
128 | 26 | ->treatTrueLike(['enabled' => true]) |
|
129 | 26 | ->treatNullLike(['enabled' => $this->debug]) |
|
130 | 26 | ->info('Extend the debug profiler with information about requests.') |
|
131 | 26 | ->children() |
|
132 | 26 | ->booleanNode('enabled') |
|
133 | 26 | ->info('Turn the toolbar on or off. Defaults to kernel debug mode.') |
|
134 | 26 | ->defaultValue($this->debug) |
|
135 | 26 | ->end() |
|
136 | 26 | ->scalarNode('formatter')->defaultNull()->end() |
|
137 | 26 | ->integerNode('captured_body_length') |
|
138 | 26 | ->defaultValue(0) |
|
139 | 26 | ->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 | 26 | ->end() |
|
141 | 26 | ->end() |
|
142 | 26 | ->end() |
|
143 | 26 | ->arrayNode('discovery') |
|
144 | 26 | ->addDefaultsIfNotSet() |
|
145 | 26 | ->info('Control what clients should be found by the discovery.') |
|
146 | 26 | ->children() |
|
147 | 26 | ->scalarNode('client') |
|
148 | 26 | ->defaultValue('auto') |
|
149 | 26 | ->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 | 26 | ->end() |
|
151 | 26 | ->scalarNode('async_client') |
|
152 | 26 | ->defaultNull() |
|
153 | 26 | ->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 | 26 | ->end() |
|
155 | 26 | ->end() |
|
156 | 26 | ->end() |
|
157 | 26 | ->end(); |
|
158 | |||
159 | 26 | return $treeBuilder; |
|
160 | } |
||
161 | |||
162 | 26 | private function configureClients(ArrayNodeDefinition $root) |
|
206 | |||
207 | /** |
||
208 | * @param ArrayNodeDefinition $root |
||
209 | */ |
||
210 | 26 | private function configureSharedPlugins(ArrayNodeDefinition $root) |
|
211 | { |
||
212 | $pluginsNode = $root |
||
213 | 26 | ->children() |
|
214 | 26 | ->arrayNode('plugins') |
|
215 | 26 | ->info('Global plugin configuration. Plugins need to be explicitly added to clients.') |
|
216 | 26 | ->addDefaultsIfNotSet() |
|
217 | // don't call end to get the plugins node |
||
218 | ; |
||
219 | 26 | $this->addSharedPluginNodes($pluginsNode); |
|
220 | 26 | } |
|
221 | |||
222 | /** |
||
223 | * Createplugins node of a client. |
||
224 | * |
||
225 | * @return ArrayNodeDefinition The plugin node |
||
226 | */ |
||
227 | 26 | private function createClientPluginNode() |
|
228 | { |
||
229 | 26 | $builder = new TreeBuilder(); |
|
230 | 26 | $node = $builder->root('plugins'); |
|
231 | |||
232 | /** @var ArrayNodeDefinition $pluginList */ |
||
233 | $pluginList = $node |
||
234 | 26 | ->info('A list of plugin service ids and client specific plugin definitions. The order is important.') |
|
235 | 26 | ->prototype('array') |
|
236 | ; |
||
237 | $pluginList |
||
238 | // support having just a service id in the list |
||
239 | 26 | ->beforeNormalization() |
|
240 | ->always(function ($plugin) { |
||
241 | 10 | if (is_string($plugin)) { |
|
242 | return [ |
||
243 | 9 | 'reference' => [ |
|
244 | 'enabled' => true, |
||
245 | 9 | 'id' => $plugin, |
|
246 | ], |
||
247 | ]; |
||
248 | } |
||
249 | |||
250 | 7 | return $plugin; |
|
251 | 26 | }) |
|
252 | 26 | ->end() |
|
253 | |||
254 | 26 | ->validate() |
|
255 | ->always(function ($plugins) { |
||
256 | 9 | foreach ($plugins as $name => $definition) { |
|
257 | 9 | if ('authentication' === $name) { |
|
258 | 9 | if (!count($definition)) { |
|
259 | 9 | unset($plugins['authentication']); |
|
260 | } |
||
261 | 9 | } elseif (!$definition['enabled']) { |
|
262 | 9 | unset($plugins[$name]); |
|
263 | } |
||
264 | } |
||
265 | |||
266 | 9 | return $plugins; |
|
267 | 26 | }) |
|
268 | 26 | ->end() |
|
269 | ; |
||
270 | 26 | $this->addSharedPluginNodes($pluginList, true); |
|
271 | |||
272 | $pluginList |
||
273 | 26 | ->children() |
|
274 | 26 | ->arrayNode('reference') |
|
275 | 26 | ->canBeEnabled() |
|
276 | 26 | ->info('Reference to a plugin service') |
|
277 | 26 | ->children() |
|
278 | 26 | ->scalarNode('id') |
|
279 | 26 | ->info('Service id of a plugin') |
|
280 | 26 | ->isRequired() |
|
281 | 26 | ->cannotBeEmpty() |
|
282 | 26 | ->end() |
|
283 | 26 | ->end() |
|
284 | 26 | ->end() |
|
285 | 26 | ->arrayNode('add_host') |
|
286 | 26 | ->canBeEnabled() |
|
287 | 26 | ->addDefaultsIfNotSet() |
|
288 | 26 | ->info('Set scheme, host and port in the request URI.') |
|
289 | 26 | ->children() |
|
290 | 26 | ->scalarNode('host') |
|
291 | 26 | ->info('Host name including protocol and optionally the port number, e.g. https://api.local:8000') |
|
292 | 26 | ->isRequired() |
|
293 | 26 | ->cannotBeEmpty() |
|
294 | 26 | ->end() |
|
295 | 26 | ->scalarNode('replace') |
|
296 | 26 | ->info('Whether to replace the host if request already specifies one') |
|
297 | 26 | ->defaultValue(false) |
|
298 | 26 | ->end() |
|
299 | 26 | ->end() |
|
300 | 26 | ->end() |
|
301 | 26 | ->arrayNode('header_append') |
|
302 | 26 | ->canBeEnabled() |
|
303 | 26 | ->info('Append headers to the request. If the header already exists the value will be appended to the current value.') |
|
304 | 26 | ->fixXmlConfig('header') |
|
305 | 26 | ->children() |
|
306 | 26 | ->arrayNode('headers') |
|
307 | 26 | ->info('Keys are the header names, values the header values') |
|
308 | 26 | ->normalizeKeys(false) |
|
309 | 26 | ->useAttributeAsKey('name') |
|
310 | 26 | ->prototype('scalar')->end() |
|
311 | 26 | ->end() |
|
312 | 26 | ->end() |
|
313 | 26 | ->end() |
|
314 | 26 | ->arrayNode('header_defaults') |
|
315 | 26 | ->canBeEnabled() |
|
316 | 26 | ->info('Set header to default value if it does not exist.') |
|
317 | 26 | ->fixXmlConfig('header') |
|
318 | 26 | ->children() |
|
319 | 26 | ->arrayNode('headers') |
|
320 | 26 | ->info('Keys are the header names, values the header values') |
|
321 | 26 | ->normalizeKeys(false) |
|
322 | 26 | ->useAttributeAsKey('name') |
|
323 | 26 | ->prototype('scalar')->end() |
|
324 | 26 | ->end() |
|
325 | 26 | ->end() |
|
326 | 26 | ->end() |
|
327 | 26 | ->arrayNode('header_set') |
|
328 | 26 | ->canBeEnabled() |
|
329 | 26 | ->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 | 26 | ->fixXmlConfig('header') |
|
331 | 26 | ->children() |
|
332 | 26 | ->arrayNode('headers') |
|
333 | 26 | ->info('Keys are the header names, values the header values') |
|
334 | 26 | ->normalizeKeys(false) |
|
335 | 26 | ->useAttributeAsKey('name') |
|
336 | 26 | ->prototype('scalar')->end() |
|
337 | 26 | ->end() |
|
338 | 26 | ->end() |
|
339 | 26 | ->end() |
|
340 | 26 | ->arrayNode('header_remove') |
|
341 | 26 | ->canBeEnabled() |
|
342 | 26 | ->info('Remove headers from requests.') |
|
343 | 26 | ->fixXmlConfig('header') |
|
344 | 26 | ->children() |
|
345 | 26 | ->arrayNode('headers') |
|
346 | 26 | ->info('List of header names to remove') |
|
347 | 26 | ->prototype('scalar')->end() |
|
348 | 26 | ->end() |
|
349 | 26 | ->end() |
|
350 | 26 | ->end() |
|
351 | 26 | ->end() |
|
352 | 26 | ->end(); |
|
353 | |||
354 | 26 | 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 | 26 | 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 | 26 | private function createAuthenticationPluginNode() |
|
461 | { |
||
462 | 26 | $builder = new TreeBuilder(); |
|
463 | 26 | $node = $builder->root('authentication'); |
|
464 | $node |
||
465 | 26 | ->useAttributeAsKey('name') |
|
466 | 26 | ->prototype('array') |
|
467 | 26 | ->validate() |
|
468 | 26 | ->always() |
|
469 | ->then(function ($config) { |
||
470 | 7 | switch ($config['type']) { |
|
471 | 7 | case 'basic': |
|
472 | 6 | $this->validateAuthenticationType(['username', 'password'], $config, 'basic'); |
|
473 | |||
474 | 6 | break; |
|
475 | 2 | case 'bearer': |
|
476 | 1 | $this->validateAuthenticationType(['token'], $config, 'bearer'); |
|
477 | |||
478 | 1 | break; |
|
479 | 2 | case 'service': |
|
480 | 2 | $this->validateAuthenticationType(['service'], $config, 'service'); |
|
481 | |||
482 | 1 | break; |
|
483 | 1 | case 'wsse': |
|
484 | 1 | $this->validateAuthenticationType(['username', 'password'], $config, 'wsse'); |
|
485 | |||
486 | 1 | break; |
|
487 | } |
||
488 | |||
489 | 6 | return $config; |
|
490 | 26 | }) |
|
491 | 26 | ->end() |
|
492 | 26 | ->children() |
|
493 | 26 | ->enumNode('type') |
|
494 | 26 | ->values(['basic', 'bearer', 'wsse', 'service']) |
|
495 | 26 | ->isRequired() |
|
496 | 26 | ->cannotBeEmpty() |
|
497 | 26 | ->end() |
|
498 | 26 | ->scalarNode('username')->end() |
|
499 | 26 | ->scalarNode('password')->end() |
|
500 | 26 | ->scalarNode('token')->end() |
|
501 | 26 | ->scalarNode('service')->end() |
|
502 | 26 | ->end() |
|
503 | 26 | ->end() |
|
504 | 26 | ->end(); // End authentication plugin |
|
505 | |||
506 | 26 | 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) |
|
519 | { |
||
520 | 7 | unset($actual['type']); |
|
521 | 7 | $actual = array_keys($actual); |
|
522 | 7 | sort($actual); |
|
523 | 7 | sort($expected); |
|
524 | |||
525 | 7 | if ($expected === $actual) { |
|
526 | 6 | return; |
|
527 | } |
||
528 | |||
529 | 1 | throw new InvalidConfigurationException(sprintf( |
|
530 | 1 | 'Authentication "%s" requires %s but got %s', |
|
531 | 1 | $authName, |
|
532 | 1 | implode(', ', $expected), |
|
533 | 1 | implode(', ', $actual) |
|
534 | )); |
||
535 | } |
||
536 | |||
537 | /** |
||
538 | * Create configuration for cache plugin. |
||
539 | * |
||
540 | * @return NodeDefinition Definition for the cache node in the plugins list. |
||
541 | */ |
||
542 | 26 | private function createCachePluginNode() |
|
636 | } |
||
637 |