BeSimpleSoap/DependencyInjection/WebServiceExtension.php

79 lines
2.7 KiB
PHP
Raw Normal View History

2010-10-04 20:27:00 +02:00
<?php
/*
* This file is part of the WebServiceBundle.
*
* (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
namespace Bundle\WebServiceBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Processor;
use Symfony\Component\Config\FileLocator;
2010-10-04 20:27:00 +02:00
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\DefinitionDecorator;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
/**
* WebServiceExtension.
*
* @author Christian Kerl <christian-kerl@web.de>
*/
2010-10-04 20:27:00 +02:00
class WebServiceExtension extends Extension
{
private $contextArguments;
// maps config options to service suffix'
private $bindingConfigToServiceSuffixMap = array('rpc-literal' => '.rpcliteral', 'document-wrapped' => '.documentwrapped');
2011-07-14 17:45:03 +02:00
public function load(array $configs, ContainerBuilder $container)
{
$loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
$loader->load('loaders.xml');
$loader->load('webservice.xml');
2011-07-14 17:45:03 +02:00
$processor = new Processor();
$configuration = new Configuration();
$config = $processor->process($configuration->getConfigTree(), $configs);
2011-07-14 17:45:03 +02:00
foreach($config['services'] as $name => $serviceConfig) {
$serviceConfig['name'] = $name;
$this->createWebServiceContext($serviceConfig, $container);
}
}
private function createWebServiceContext(array $config, ContainerBuilder $container)
2010-10-04 20:27:00 +02:00
{
$bindingSuffix = $this->bindingConfigToServiceSuffixMap[$config['binding']];
unset($config['binding']);
2011-07-14 17:45:03 +02:00
if (null === $this->contextArguments) {
$this->contextArguments = $container
->getDefinition('webservice.context')
->getArguments()
;
}
2011-07-14 17:45:03 +02:00
$contextId = 'webservice.context.'.$config['name'];
$context = $container->setDefinition($contextId, $definition = new DefinitionDecorator('webservice.context'));
2011-07-14 17:45:03 +02:00
2011-07-14 18:13:34 +02:00
$arguments = array();
foreach($this->contextArguments as $i => $argument) {
if (in_array($i, array(1, 3, 4))) {
$argument = new Reference($argument->__toString().$bindingSuffix);
} elseif (5 === $i) {
$argument = array_merge($argument, $config);
} else {
$argument = new Reference($argument->__toString());
}
$definition->replaceArgument($i, $argument);
}
2010-10-04 20:27:00 +02:00
}
}