added WebServiceContext class; SoapWebServiceController now uses WebServiceContext to acquire all objects needed to handle a request for a certain service;
This commit is contained in:
parent
b40a1b1efd
commit
70da526fd4
|
@ -8,19 +8,20 @@
|
||||||
* with this source code in the file LICENSE.
|
* with this source code in the file LICENSE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Bundle\WebServiceBundle;
|
namespace Bundle\WebServiceBundle\Controller;
|
||||||
|
|
||||||
|
|
||||||
use Bundle\WebServiceBundle\Soap\SoapServerFactory;
|
|
||||||
|
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
|
||||||
use Symfony\Component\HttpKernel\HttpKernelInterface;
|
use Symfony\Component\HttpKernel\HttpKernelInterface;
|
||||||
|
|
||||||
|
use Symfony\Component\DependencyInjection\ContainerInterface;
|
||||||
|
use Symfony\Component\DependencyInjection\ContainerAware;
|
||||||
|
|
||||||
use Bundle\WebServiceBundle\Soap\SoapRequest;
|
use Bundle\WebServiceBundle\Soap\SoapRequest;
|
||||||
use Bundle\WebServiceBundle\Soap\SoapResponse;
|
use Bundle\WebServiceBundle\Soap\SoapResponse;
|
||||||
use Bundle\WebServiceBundle\Soap\SoapHeader;
|
use Bundle\WebServiceBundle\Soap\SoapHeader;
|
||||||
|
use Bundle\WebServiceBundle\Soap\SoapServerFactory;
|
||||||
|
|
||||||
use Bundle\WebServiceBundle\ServiceBinding\ServiceBinder;
|
use Bundle\WebServiceBundle\ServiceBinding\ServiceBinder;
|
||||||
|
|
||||||
|
@ -78,13 +79,13 @@ class SoapWebServiceController extends ContainerAware
|
||||||
|
|
||||||
public function handle($webservice)
|
public function handle($webservice)
|
||||||
{
|
{
|
||||||
$serviceConfiguration = $this->serviceConfigurationFactory->create($webservice);
|
$webServiceContext = $this->container->get('webservice.context.' . $webservice);
|
||||||
|
|
||||||
$this->soapRequest = SoapRequest::createFromHttpRequest($this->container->get('request'));
|
$this->soapRequest = SoapRequest::createFromHttpRequest($this->container->get('request'));
|
||||||
|
|
||||||
$this->serviceBinder = $serviceConfiguration->createServiceBinder();
|
$this->serviceBinder = $webServiceContext->getServiceBinder();
|
||||||
|
|
||||||
$this->soapServer = $serviceConfiguration->createServer($this->soapRequest, $this->soapResponse);
|
$this->soapServer = $webServiceContext->getServerFactory()->create($this->soapRequest, $this->soapResponse);
|
||||||
$this->soapServer->setObject($this);
|
$this->soapServer->setObject($this);
|
||||||
|
|
||||||
ob_start();
|
ob_start();
|
||||||
|
@ -100,13 +101,15 @@ class SoapWebServiceController extends ContainerAware
|
||||||
|
|
||||||
public function definition($webservice)
|
public function definition($webservice)
|
||||||
{
|
{
|
||||||
$serviceConfiguration = $this->serviceConfigurationFactory->create($webservice);
|
$webServiceContext = $this->container->get('webservice.context.' . $webservice);
|
||||||
$request = $this->container->get('request');
|
$request = $this->container->get('request');
|
||||||
|
|
||||||
if($request->query->has('WSDL'))
|
if($request->query->has('WSDL'))
|
||||||
{
|
{
|
||||||
// dump wsdl file
|
$response = new Response(file_get_contents($webServiceContext->getWsdlFile()));
|
||||||
// return
|
$response->headers->set('Content-Type', 'application/wsdl+xml');
|
||||||
|
|
||||||
|
return $response;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,89 @@
|
||||||
|
<?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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace Bundle\WebServiceBundle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* WebServiceContext.
|
||||||
|
*
|
||||||
|
* @author Christian Kerl <christian-kerl@web.de>
|
||||||
|
*/
|
||||||
|
use Bundle\WebServiceBundle\ServiceDefinition\Dumper\DumperInterface;
|
||||||
|
|
||||||
|
use Bundle\WebServiceBundle\ServiceBinding\MessageBinderInterface;
|
||||||
|
|
||||||
|
use Bundle\WebServiceBundle\Converter\ConverterRepository;
|
||||||
|
|
||||||
|
use Bundle\WebServiceBundle\ServiceBinding\ServiceBinder;
|
||||||
|
|
||||||
|
use Bundle\WebServiceBundle\Soap\SoapServerFactory;
|
||||||
|
|
||||||
|
class WebServiceContext
|
||||||
|
{
|
||||||
|
private $converterRepository;
|
||||||
|
private $requestMessageBinder;
|
||||||
|
private $responseMessageBinder;
|
||||||
|
|
||||||
|
private $serviceDefinitionLoader;
|
||||||
|
private $wsdlFileDumper;
|
||||||
|
|
||||||
|
private $options;
|
||||||
|
|
||||||
|
private $serviceDefinition;
|
||||||
|
private $serviceBinder;
|
||||||
|
private $serverFactory;
|
||||||
|
|
||||||
|
public function __construct(LoaderInterface $loader, DumperInterface $dumper, ConverterRepository $converterRepository, MessageBinderInterface $requestMessageBinder, MessageBinderInterface $responseMessageBinder, array $options)
|
||||||
|
{
|
||||||
|
$this->serviceDefinitionLoader = $loader;
|
||||||
|
$this->wsdlFileDumper = $dumper;
|
||||||
|
|
||||||
|
$this->converterRepository = $converterRepository;
|
||||||
|
$this->requestMessageBinder = $requestMessageBinder;
|
||||||
|
$this->responseMessageBinder = $responseMessageBinder;
|
||||||
|
|
||||||
|
$this->options = $options;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getServiceDefinition()
|
||||||
|
{
|
||||||
|
if($this->serviceDefinition === null)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getWsdlFile()
|
||||||
|
{
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getServiceBinder()
|
||||||
|
{
|
||||||
|
if($this->serviceBinder === null)
|
||||||
|
{
|
||||||
|
$this->serviceBinder = new ServiceBinder($this->getServiceDefinition(), $this->requestMessageBinder, $this->responseMessageBinder);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->serviceBinder;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getServerFactory()
|
||||||
|
{
|
||||||
|
if($this->serverFactory === null)
|
||||||
|
{
|
||||||
|
$this->serverFactory = new SoapServerFactory($this->getServiceDefinition(), $this->getWsdlFile(), $this->converterRepository);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this->serverFactory;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue