BeSimpleSoap/Controller/SoapWebServiceController.php

195 lines
5.7 KiB
PHP
Raw Normal View History

2010-10-04 20:27:00 +02:00
<?php
2013-02-21 08:27:36 +01:00
/*
* This file is part of the BeSimpleSoapBundle.
*
* (c) Christian Kerl <christian-kerl@web.de>
2013-02-21 08:27:36 +01:00
* (c) Francis Besset <francis.besset@gmail.com>
*
* 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 BeSimple\SoapBundle\Controller;
use BeSimple\SoapBundle\Soap\SoapRequest;
use BeSimple\SoapBundle\Soap\SoapResponse;
use Symfony\Component\DependencyInjection\ContainerAware;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\HttpKernel\HttpKernelInterface;
/**
* @author Christian Kerl <christian-kerl@web.de>
2013-02-21 08:27:36 +01:00
* @author Francis Besset <francis.besset@gmail.com>
*/
class SoapWebServiceController extends ContainerAware
2010-10-04 20:27:00 +02:00
{
/**
* @var \SoapServer
*/
protected $soapServer;
/**
* @var \BeSimple\SoapBundle\Soap\SoapRequest
*/
protected $soapRequest;
/**
* @var \BeSimple\SoapBundle\Soap\SoapResponse
*/
protected $soapResponse;
/**
* @var \BeSimple\SoapBundle\ServiceBinding\ServiceBinder
*/
protected $serviceBinder;
/**
* @var array
*/
private $headers = array();
/**
* @return \BeSimple\SoapBundle\Soap\SoapResponse
*/
public function callAction($webservice)
{
$webServiceContext = $this->getWebServiceContext($webservice);
$this->serviceBinder = $webServiceContext->getServiceBinder();
2011-07-14 17:45:03 +02:00
$this->soapRequest = SoapRequest::createFromHttpRequest($this->container->get('request'));
$this->soapServer = $webServiceContext
->getServerBuilder()
->withHandler($this)
->build()
;
ob_start();
$this->soapServer->handle($this->soapRequest->getSoapMessage());
2013-02-21 08:27:36 +01:00
return $this->getResponse()->setContent(ob_get_clean());
}
/**
* @return Symfony\Component\HttpFoundation\Response
*/
public function definitionAction($webservice)
2011-07-14 17:45:03 +02:00
{
$response = new Response($this->getWebServiceContext($webservice)->getWsdlFileContent(
$this->container->get('router')->generate(
'_webservice_call',
array('webservice' => $webservice),
true
)
));
2013-02-21 08:27:36 +01:00
$query = $this->container->get('request')->query;
if ($query->has('wsdl') || $query->has('WSDL')) {
2011-04-09 00:43:47 +02:00
$response->headers->set('Content-Type', 'application/wsdl+xml');
2011-07-14 17:45:03 +02:00
} else {
2011-04-09 00:43:47 +02:00
$response->headers->set('Content-Type', 'text/xml');
}
2011-07-14 17:45:03 +02:00
return $response;
}
/**
* This method gets called once for every SOAP header the \SoapServer received
* and afterwards once for the called SOAP operation.
*
* @param string $method The SOAP header or SOAP operation name
* @param array $arguments
*
* @return mixed
*/
public function __call($method, $arguments)
{
if ($this->serviceBinder->isServiceMethod($method)) {
// @TODO Add all SoapHeaders in SoapRequest
foreach ($this->headers as $name => $value) {
if ($this->serviceBinder->isServiceHeader($method, $name)) {
$this->soapRequest->getSoapHeaders()->add($this->serviceBinder->processServiceHeader($method, $name, $value));
}
}
$this->headers = null;
$this->soapRequest->attributes->add(
$this->serviceBinder->processServiceMethodArguments($method, $arguments)
);
// forward to controller
2011-08-11 00:42:14 +02:00
try {
$response = $this->container->get('http_kernel')->handle($this->soapRequest, HttpKernelInterface::SUB_REQUEST, false);
} catch (\SoapFault $e) {
$this->soapResponse = new Response(null, 500);
throw $e;
}
2013-02-21 08:27:36 +01:00
$this->setResponse($response);
// add response soap headers to soap server
2013-02-21 08:27:36 +01:00
foreach ($response->getSoapHeaders() as $header) {
$this->soapServer->addSoapHeader($header->toNativeSoapHeader());
}
// return operation return value to soap server
return $this->serviceBinder->processServiceMethodReturnValue(
$method,
2013-02-21 08:27:36 +01:00
$response->getReturnValue()
);
} else {
// collect request soap headers
$this->headers[$method] = $arguments[0];
}
}
/**
* @return \BeSimple\SoapBundle\Soap\SoapRequest
*/
2013-02-21 08:27:36 +01:00
protected function getRequest()
{
return $this->soapRequest;
}
/**
* @return \BeSimple\SoapBundle\Soap\SoapResponse
*/
2013-02-21 08:27:36 +01:00
protected function getResponse()
{
return $this->soapResponse ?: $this->soapResponse = $this->container->get('besimple.soap.response');
}
/**
2013-02-21 08:27:36 +01:00
* Set the SoapResponse
*
2013-02-21 08:27:36 +01:00
* @param Response $response A response to check and set
*
2013-02-21 08:27:36 +01:00
* @return \BeSimple\SoapBundle\Soap\SoapResponse A valid SoapResponse
*
2013-02-21 08:27:36 +01:00
* @throws InvalidArgumentException If the given Response is not an instance of SoapResponse
*/
2013-02-21 08:27:36 +01:00
protected function setResponse(Response $response)
{
2011-08-11 00:42:14 +02:00
if (!$response instanceof SoapResponse) {
throw new \InvalidArgumentException('You must return an instance of BeSimple\SoapBundle\Soap\SoapResponse');
}
2013-02-21 08:27:36 +01:00
return $this->soapResponse = $response;
}
private function getWebServiceContext($webservice)
{
2013-02-21 08:27:36 +01:00
$context = sprintf('besimple.soap.context.%s', $webservice);
if (!$this->container->has($context)) {
throw new NotFoundHttpException(sprintf('No WebService with name "%s" found.', $webservice));
}
2013-02-21 08:27:36 +01:00
return $this->container->get($context);
}
}