2010-10-04 20:27:00 +02:00
|
|
|
<?php
|
2010-10-05 21:44:30 +02:00
|
|
|
/*
|
2011-07-18 22:43:12 +02:00
|
|
|
* This file is part of the BeSimpleSoapBundle.
|
2010-10-05 21:44:30 +02:00
|
|
|
*
|
|
|
|
* (c) Christian Kerl <christian-kerl@web.de>
|
|
|
|
*
|
|
|
|
* This source file is subject to the MIT license that is bundled
|
|
|
|
* with this source code in the file LICENSE.
|
|
|
|
*/
|
2010-10-04 20:27:00 +02:00
|
|
|
|
2011-07-18 22:43:12 +02:00
|
|
|
namespace BeSimple\SoapBundle\DependencyInjection;
|
2010-10-04 20:27:00 +02:00
|
|
|
|
2011-04-07 21:49:01 +02:00
|
|
|
use Symfony\Component\Config\Definition\Processor;
|
2011-07-17 10:46:54 +02:00
|
|
|
use Symfony\Component\Config\FileLocator;
|
2010-10-04 20:27:00 +02:00
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
2011-04-08 00:45:52 +02:00
|
|
|
use Symfony\Component\DependencyInjection\DefinitionDecorator;
|
|
|
|
use Symfony\Component\DependencyInjection\Reference;
|
2010-10-05 21:44:30 +02:00
|
|
|
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
|
2011-04-07 21:49:01 +02:00
|
|
|
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
|
|
|
|
|
2010-10-05 21:44:30 +02:00
|
|
|
/**
|
2011-07-18 22:43:12 +02:00
|
|
|
* BeSimpleSoapExtension.
|
2010-10-05 21:44:30 +02:00
|
|
|
*
|
|
|
|
* @author Christian Kerl <christian-kerl@web.de>
|
|
|
|
*/
|
2011-07-18 22:43:12 +02:00
|
|
|
class BeSimpleSoapExtension extends Extension
|
2010-10-04 20:27:00 +02:00
|
|
|
{
|
2011-07-18 22:59:20 +02:00
|
|
|
// maps config options to service suffix
|
2011-07-21 22:55:59 +02:00
|
|
|
private $bindingConfigToServiceSuffixMap = array(
|
|
|
|
'rpc-literal' => 'rpcliteral',
|
2011-08-14 18:00:28 +02:00
|
|
|
'document-wrapped' => 'documentwrapped',
|
2011-07-21 22:55:59 +02:00
|
|
|
);
|
2011-07-14 17:45:03 +02:00
|
|
|
|
2011-04-07 21:49:01 +02:00
|
|
|
public function load(array $configs, ContainerBuilder $container)
|
2010-10-07 15:16:56 +02:00
|
|
|
{
|
2011-04-07 21:49:01 +02:00
|
|
|
$loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
|
2010-10-08 14:24:42 +02:00
|
|
|
|
2011-07-17 10:46:54 +02:00
|
|
|
$loader->load('loaders.xml');
|
2011-04-07 21:49:01 +02:00
|
|
|
$loader->load('webservice.xml');
|
2011-07-14 17:45:03 +02:00
|
|
|
|
2011-07-17 10:46:54 +02:00
|
|
|
$processor = new Processor();
|
2011-04-07 21:49:01 +02:00
|
|
|
$configuration = new Configuration();
|
2010-10-08 14:24:42 +02:00
|
|
|
|
2011-04-07 21:49:01 +02:00
|
|
|
$config = $processor->process($configuration->getConfigTree(), $configs);
|
2011-07-14 17:45:03 +02:00
|
|
|
|
2011-08-14 21:59:03 +02:00
|
|
|
$container->setParameter('besimple.soap.definition.dumper.options.stylesheet', $config['wsdl_dumper']['stylesheet']);
|
|
|
|
|
2011-07-14 18:39:47 +02:00
|
|
|
foreach($config['services'] as $name => $serviceConfig) {
|
2011-07-17 10:46:54 +02:00
|
|
|
$serviceConfig['name'] = $name;
|
|
|
|
$this->createWebServiceContext($serviceConfig, $container);
|
2010-10-08 14:24:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-17 10:46:54 +02:00
|
|
|
private function createWebServiceContext(array $config, ContainerBuilder $container)
|
2010-10-04 20:27:00 +02:00
|
|
|
{
|
2011-04-08 00:45:52 +02:00
|
|
|
$bindingSuffix = $this->bindingConfigToServiceSuffixMap[$config['binding']];
|
|
|
|
unset($config['binding']);
|
2011-07-14 17:45:03 +02:00
|
|
|
|
2011-07-21 22:55:59 +02:00
|
|
|
$contextId = 'besimple.soap.context.'.$config['name'];
|
|
|
|
$definition = new DefinitionDecorator('besimple.soap.context.'.$bindingSuffix);
|
|
|
|
$context = $container->setDefinition($contextId, $definition);
|
2011-07-14 17:45:03 +02:00
|
|
|
|
2011-07-21 22:55:59 +02:00
|
|
|
$options = $container
|
|
|
|
->getDefinition('besimple.soap.context.'.$bindingSuffix)
|
2011-08-14 21:06:04 +02:00
|
|
|
->getArgument(4);
|
2011-07-17 10:46:54 +02:00
|
|
|
|
2011-08-14 21:06:04 +02:00
|
|
|
$definition->replaceArgument(4, array_merge($options, $config));
|
2010-10-04 20:27:00 +02:00
|
|
|
}
|
2011-07-18 22:43:12 +02:00
|
|
|
}
|