2011-10-09 19:41:56 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the BeSimpleSoapServer.
|
|
|
|
*
|
|
|
|
* (c) Christian Kerl <christian-kerl@web.de>
|
|
|
|
* (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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace BeSimple\SoapServer;
|
|
|
|
|
2016-10-27 16:24:44 +02:00
|
|
|
use BeSimple\SoapCommon\SoapOptions\SoapOptions;
|
|
|
|
use BeSimple\SoapCommon\SoapRequest;
|
|
|
|
use BeSimple\SoapServer\SoapOptions\SoapServerOptions;
|
2012-04-21 20:16:33 +02:00
|
|
|
use BeSimple\SoapCommon\Converter\MtomTypeConverter;
|
|
|
|
use BeSimple\SoapCommon\Converter\SwaTypeConverter;
|
2016-10-27 16:24:44 +02:00
|
|
|
use Exception;
|
2012-04-21 20:16:33 +02:00
|
|
|
|
2011-10-09 19:41:56 +02:00
|
|
|
/**
|
2012-04-21 20:16:33 +02:00
|
|
|
* Extended SoapServer that allows adding filters for SwA, MTOM, ... .
|
|
|
|
*
|
|
|
|
* @author Andreas Schamberger <mail@andreass.net>
|
2011-10-09 19:41:56 +02:00
|
|
|
* @author Christian Kerl <christian-kerl@web.de>
|
2016-10-27 16:24:44 +02:00
|
|
|
* @author Petr Bechyně <petr.bechyne@vodafone.com>
|
2011-10-09 19:41:56 +02:00
|
|
|
*/
|
|
|
|
class SoapServer extends \SoapServer
|
|
|
|
{
|
2016-10-27 16:24:44 +02:00
|
|
|
const SOAP_SERVER_REQUEST_FAILED = false;
|
2012-04-21 20:16:33 +02:00
|
|
|
|
2016-10-27 16:24:44 +02:00
|
|
|
protected $soapVersion;
|
|
|
|
protected $soapKernel;
|
2012-04-21 20:16:33 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*
|
2016-10-27 16:24:44 +02:00
|
|
|
* @param SoapServerOptions $soapServerOptions
|
|
|
|
* @param SoapOptions $soapOptions
|
2012-04-21 20:16:33 +02:00
|
|
|
*/
|
2016-10-27 16:24:44 +02:00
|
|
|
public function __construct(SoapServerOptions $soapServerOptions, SoapOptions $soapOptions)
|
2011-10-09 19:41:56 +02:00
|
|
|
{
|
2016-10-27 16:24:44 +02:00
|
|
|
if ($soapOptions->hasAttachments()) {
|
|
|
|
$soapOptions = $this->configureMime($soapOptions);
|
2012-04-21 20:16:33 +02:00
|
|
|
}
|
2016-10-27 16:24:44 +02:00
|
|
|
|
2012-04-21 20:16:33 +02:00
|
|
|
$this->soapKernel = new SoapKernel();
|
2016-10-27 16:24:44 +02:00
|
|
|
$this->soapVersion = $soapOptions->getSoapVersion();
|
|
|
|
|
|
|
|
parent::__construct(
|
|
|
|
$soapOptions->getWsdlFile(),
|
|
|
|
$soapServerOptions->toArray() + $soapOptions->toArray()
|
|
|
|
);
|
2011-10-09 19:41:56 +02:00
|
|
|
}
|
|
|
|
|
2012-04-21 20:16:33 +02:00
|
|
|
/**
|
|
|
|
* Custom handle method to be able to modify the SOAP messages.
|
|
|
|
*
|
|
|
|
* @param string $request Request string
|
2016-10-27 16:24:44 +02:00
|
|
|
* @return string
|
2012-04-21 20:16:33 +02:00
|
|
|
*/
|
|
|
|
public function handle($request = null)
|
|
|
|
{
|
2016-10-27 16:24:44 +02:00
|
|
|
$soapRequest = SoapRequestFactory::create($request, $this->soapVersion);
|
2012-04-21 20:16:33 +02:00
|
|
|
|
2013-08-19 19:26:11 +02:00
|
|
|
try {
|
2016-10-27 16:24:44 +02:00
|
|
|
$soapResponse = $this->handleSoapRequest($soapRequest);
|
2013-08-19 19:26:11 +02:00
|
|
|
} catch (\SoapFault $fault) {
|
|
|
|
$this->fault($fault->faultcode, $fault->faultstring);
|
2016-10-27 16:24:44 +02:00
|
|
|
|
|
|
|
return self::SOAP_SERVER_REQUEST_FAILED;
|
2013-08-19 19:26:11 +02:00
|
|
|
}
|
2012-04-21 20:16:33 +02:00
|
|
|
|
2016-10-27 16:24:44 +02:00
|
|
|
return $soapResponse->getResponseContent();
|
2012-04-21 20:16:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Runs the currently registered request filters on the request, calls the
|
|
|
|
* necessary functions (through the parent's class handle()) and runs the
|
|
|
|
* response filters.
|
|
|
|
*
|
|
|
|
* @param SoapRequest $soapRequest SOAP request object
|
|
|
|
*
|
|
|
|
* @return SoapResponse
|
|
|
|
*/
|
2016-10-27 16:24:44 +02:00
|
|
|
private function handleSoapRequest(SoapRequest $soapRequest)
|
2012-04-21 20:16:33 +02:00
|
|
|
{
|
|
|
|
// run SoapKernel on SoapRequest
|
|
|
|
$this->soapKernel->filterRequest($soapRequest);
|
|
|
|
|
|
|
|
ob_start();
|
|
|
|
parent::handle($soapRequest->getContent());
|
|
|
|
$response = ob_get_clean();
|
|
|
|
|
2013-11-06 16:48:44 +01:00
|
|
|
// Remove headers added by SoapServer::handle() method
|
|
|
|
header_remove('Content-Length');
|
|
|
|
header_remove('Content-Type');
|
|
|
|
|
2012-04-21 20:16:33 +02:00
|
|
|
// wrap response data in SoapResponse object
|
|
|
|
$soapResponse = SoapResponse::create(
|
|
|
|
$response,
|
|
|
|
$soapRequest->getLocation(),
|
|
|
|
$soapRequest->getAction(),
|
|
|
|
$soapRequest->getVersion()
|
|
|
|
);
|
|
|
|
|
|
|
|
// run SoapKernel on SoapResponse
|
|
|
|
$this->soapKernel->filterResponse($soapResponse);
|
|
|
|
|
|
|
|
return $soapResponse;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get SoapKernel instance.
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapServer\SoapKernel
|
|
|
|
*/
|
|
|
|
public function getSoapKernel()
|
|
|
|
{
|
|
|
|
return $this->soapKernel;
|
|
|
|
}
|
|
|
|
|
2016-10-27 16:24:44 +02:00
|
|
|
private function configureMime(SoapOptions $soapOptions)
|
2011-10-09 19:41:56 +02:00
|
|
|
{
|
2016-10-27 16:24:44 +02:00
|
|
|
if ($soapOptions->getAttachmentType() !== SoapOptions::SOAP_ATTACHMENTS_TYPE_BASE64) {
|
|
|
|
$mimeFilter = new MimeFilter($soapOptions->getAttachmentType());
|
2012-04-21 20:16:33 +02:00
|
|
|
$this->soapKernel->registerFilter($mimeFilter);
|
2016-10-27 16:24:44 +02:00
|
|
|
if ($soapOptions->getAttachmentType() === SoapOptions::SOAP_ATTACHMENTS_TYPE_SWA) {
|
2012-04-21 20:16:33 +02:00
|
|
|
$converter = new SwaTypeConverter();
|
|
|
|
$converter->setKernel($this->soapKernel);
|
2016-10-27 16:24:44 +02:00
|
|
|
$soapOptions->getTypeConverterCollection()->add($converter);
|
|
|
|
} elseif ($soapOptions->getAttachmentType() === SoapOptions::SOAP_ATTACHMENTS_TYPE_MTOM) {
|
|
|
|
$this->soapKernel->registerFilter(new XmlMimeFilter($soapOptions->getAttachmentType()));
|
2012-04-21 20:16:33 +02:00
|
|
|
$converter = new MtomTypeConverter();
|
|
|
|
$converter->setKernel($this->soapKernel);
|
2016-10-27 16:24:44 +02:00
|
|
|
$soapOptions->getTypeConverterCollection()->add($converter);
|
|
|
|
} else {
|
|
|
|
throw new Exception('Unresolved SOAP_ATTACHMENTS_TYPE: ' . $soapOptions->getAttachmentType());
|
2012-04-21 20:16:33 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-27 16:24:44 +02:00
|
|
|
|
|
|
|
return $soapOptions;
|
2011-10-09 19:41:56 +02:00
|
|
|
}
|
2013-10-15 11:46:12 +02:00
|
|
|
}
|