Compare commits
No commits in common. "master" and "v0.2.5" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,6 +1,3 @@
|
|||||||
/vendor/
|
/vendor/
|
||||||
composer.lock
|
composer.lock
|
||||||
composer.phar
|
|
||||||
phpunit.xml
|
phpunit.xml
|
||||||
.idea
|
|
||||||
.php_cs.cache
|
|
||||||
|
18
.travis.yml
18
.travis.yml
@ -1,16 +1,20 @@
|
|||||||
language: php
|
language: php
|
||||||
|
|
||||||
php:
|
php:
|
||||||
- 5.6
|
- 5.3
|
||||||
- 7.0
|
- 5.4
|
||||||
- 7.1
|
- 5.5
|
||||||
|
|
||||||
env:
|
env:
|
||||||
- SYMFONY_VERSION=2.8.*
|
- SYMFONY_VERSION=2.0.*
|
||||||
- SYMFONY_VERSION="dev-master symfony/debug:~2.8@dev symfony/http-kernel:~2.8@dev"
|
- SYMFONY_VERSION=2.1.*
|
||||||
|
- SYMFONY_VERSION=2.2.*
|
||||||
|
- SYMFONY_VERSION=2.3.*
|
||||||
|
- SYMFONY_VERSION=2.4.*
|
||||||
|
- SYMFONY_VERSION=2.5.*
|
||||||
|
- SYMFONY_VERSION="dev-master symfony/debug:~2.6@dev symfony/http-kernel:~2.6@dev"
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- phpenv config-add myphp.ini
|
|
||||||
- composer self-update
|
- composer self-update
|
||||||
- composer require symfony/framework-bundle:${SYMFONY_VERSION} --no-update
|
- composer require symfony/framework-bundle:${SYMFONY_VERSION} --no-update
|
||||||
- composer update --no-interaction --prefer-source
|
- composer update --no-interaction --prefer-source
|
||||||
@ -22,4 +26,4 @@ script:
|
|||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- env: SYMFONY_VERSION="dev-master symfony/debug:~2.8@dev symfony/http-kernel:~2.8@dev"
|
- env: SYMFONY_VERSION="dev-master symfony/debug:~2.6@dev symfony/http-kernel:~2.6@dev"
|
||||||
|
154
README.md
154
README.md
@ -1,146 +1,56 @@
|
|||||||
# BeSimpleSoap (Symfony 3.4 / 4.x)
|
# BeSimpleSoap
|
||||||
|
|
||||||
This fork provides the BeSimpleSoap bundle, updated to be compatible with Symfony 3.4 and 4.x (as well as with PHP 7.0-7.4).
|
Build SOAP and WSDL based web services
|
||||||
|
|
||||||
We forked the official [BeSimpleSoap](https://github.com/BeSimple/BeSimpleSoap) repository in order to sucessfully maintain some of our projects.
|
|
||||||
|
|
||||||
We now have integrated changes and fixes from sub-forks (thank you guys!), and we should be up to date now :)
|
|
||||||
|
|
||||||
This fork is maintained by people from [Cadoles](https://www.cadoles.com/).
|
|
||||||
|
|
||||||
# Contributing
|
|
||||||
|
|
||||||
We do welcome pull requests :) please include tests if you can.
|
|
||||||
|
|
||||||
Running tests can be done by running `php vendor/bin/phpunit`.
|
|
||||||
|
|
||||||
# Installation
|
|
||||||
|
|
||||||
If you do not yet have composer, follow instructions on the [Composer website](https://getcomposer.org/download/) to install it.
|
|
||||||
|
|
||||||
Then just running:
|
|
||||||
|
|
||||||
```
|
|
||||||
$ composer require cadoles/soap
|
|
||||||
```
|
|
||||||
|
|
||||||
should be enough to get you up and running.
|
|
||||||
|
|
||||||
# Components
|
# Components
|
||||||
|
|
||||||
BeSimpleSoap consists of five components ...
|
BeSimpleSoap consists of five components ...
|
||||||
|
|
||||||
|
## BeSimpleSoapBundle
|
||||||
|
|
||||||
|
The BeSimpleSoapBundle is a Symfony2 bundle to build WSDL and SOAP based web services.
|
||||||
|
For further information see the [README](https://github.com/BeSimple/BeSimpleSoap/blob/master/src/BeSimple/SoapBundle/README.md).
|
||||||
|
|
||||||
## BeSimpleSoapClient
|
## BeSimpleSoapClient
|
||||||
|
|
||||||
**Refactored** BeSimpleSoapClient is a component that extends the native PHP SoapClient with further features like SwA and WS-Security.
|
The BeSimpleSoapClient is a component that extends the native PHP SoapClient with further features like SwA, MTOM and WS-Security.
|
||||||
|
For further information see the [README](https://github.com/BeSimple/BeSimpleSoap/blob/master/src/BeSimple/SoapClient/README.md).
|
||||||
## BeSimpleSoapServer
|
|
||||||
|
|
||||||
**Refactored** BeSimpleSoapServer is a component that extends the native PHP SoapServer with further features like SwA and WS-Security.
|
|
||||||
|
|
||||||
## BeSimpleSoapCommon
|
## BeSimpleSoapCommon
|
||||||
|
|
||||||
**Refactored** BeSimpleSoapCommon component contains functionality shared by both the server and client implementations.
|
The BeSimpleSoapCommon component contains functionylity shared by both the server and client implementations.
|
||||||
|
For further information see the [README](https://github.com/BeSimple/BeSimpleSoap/blob/master/src/BeSimple/SoapCommon/README.md).
|
||||||
|
|
||||||
|
|
||||||
|
## BeSimpleSoapServer
|
||||||
|
|
||||||
|
The BeSimpleSoapServer is a component that extends the native PHP SoapServer with further features like SwA, MTOM and WS-Security.
|
||||||
|
For further information see the [README](https://github.com/BeSimple/BeSimpleSoap/blob/master/src/BeSimple/SoapServer/README.md).
|
||||||
|
|
||||||
## BeSimpleSoapWsdl
|
## BeSimpleSoapWsdl
|
||||||
|
|
||||||
**Untouched!**
|
For further information see the [README](https://github.com/BeSimple/BeSimpleSoap/blob/master/src/BeSimple/SoapWsdl/README.md).
|
||||||
The component is not affected by refactoring so it should work properly.
|
|
||||||
For further information see the original [README](https://github.com/BeSimple/BeSimpleSoap/blob/master/src/BeSimple/SoapWsdl/README.md).
|
|
||||||
|
|
||||||
## BeSimpleSoapBundle
|
# Installation
|
||||||
|
|
||||||
**Unsupported!**
|
If you do not yet have composer, install it like this:
|
||||||
The BeSimpleSoapBundle is a Symfony2 bundle to build WSDL and SOAP based web services.
|
|
||||||
For further information see the the original [README](https://github.com/BeSimple/BeSimpleSoap/blob/master/src/BeSimple/SoapBundle/README.md).
|
|
||||||
*Will not work since the Symfony libraries were removed and usages of other components were not refactored. Feel free to fork this repository and fix it!*
|
|
||||||
|
|
||||||
# How to use
|
```sh
|
||||||
|
curl -s http://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin
|
||||||
You can investigate the unit tests dir ``tests`` in order to get a clue.
|
|
||||||
Forget about associative arrays, vague configurations, multiple extension and silent errors!
|
|
||||||
This may look a bit more complex at the first sight,
|
|
||||||
but it will guide you to configure and set up your client or server properly.
|
|
||||||
|
|
||||||
## Example of soap client call
|
|
||||||
|
|
||||||
```php
|
|
||||||
$soapClientBuilder = new SoapClientBuilder();
|
|
||||||
$soapClient = $soapClientBuilder->build(
|
|
||||||
SoapClientOptionsBuilder::createWithDefaults(),
|
|
||||||
SoapOptionsBuilder::createWithDefaults('http://path/to/wsdlfile.wsdl')
|
|
||||||
);
|
|
||||||
$myRequest = new MyRequest();
|
|
||||||
$myRequest->attribute = 'string value';
|
|
||||||
$soapResponse = $soapClient->soapCall('myMethod', [$myRequest]);
|
|
||||||
|
|
||||||
var_dump($soapResponse); // Contains Response, Attachments
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Something wrong?!
|
Create a `composer.json` file:
|
||||||
|
|
||||||
Turn on the tracking and catch `SoapFaultWithTracingData` exception to get some sweets :)
|
```json
|
||||||
|
|
||||||
```php
|
|
||||||
try {
|
|
||||||
$soapResponse = $soapClient->soapCall('myMethod', [$myRequest]);
|
|
||||||
} catch (SoapFaultWithTracingData $fault) {
|
|
||||||
var_dump($fault->getSoapResponseTracingData()->getLastRequest());
|
|
||||||
}
|
|
||||||
```
|
|
||||||
In this example, a ``MyRequest`` object has been used to describe request.
|
|
||||||
Using a ClassMap, you help SoapClient to turn it into XML request.
|
|
||||||
|
|
||||||
## Example of soap server handling
|
|
||||||
|
|
||||||
Starting a SOAP server is a bit more complex.
|
|
||||||
I recommend you to inspect SoapServer unit tests for inspiration.
|
|
||||||
|
|
||||||
```php
|
|
||||||
$dummyService = new DummyService();
|
|
||||||
$classMap = new ClassMap();
|
|
||||||
foreach ($dummyService->getClassMap() as $type => $className) {
|
|
||||||
$classMap->add($type, $className);
|
|
||||||
}
|
|
||||||
$soapServerBuilder = new SoapServerBuilder();
|
|
||||||
$soapServerOptions = SoapServerOptionsBuilder::createWithDefaults($dummyService);
|
|
||||||
$soapOptions = SoapOptionsBuilder::createWithClassMap($dummyService->getWsdlPath(), $classMap);
|
|
||||||
$soapServer = $soapServerBuilder->build($soapServerOptions, $soapOptions);
|
|
||||||
|
|
||||||
$request = $soapServer->createRequest(
|
|
||||||
$dummyService->getEndpoint(),
|
|
||||||
'DummyService.dummyServiceMethod',
|
|
||||||
'text/xml;charset=UTF-8',
|
|
||||||
'<received><soap><request><here /></request></soap></received>'
|
|
||||||
);
|
|
||||||
$response = $soapServer->handleRequest($request);
|
|
||||||
|
|
||||||
var_dump($response); // Contains Response, Attachments
|
|
||||||
```
|
|
||||||
|
|
||||||
In this example, a ``DummyService`` service has been used to handle request.
|
|
||||||
Using a service can help you create coherent SoapServer endpoints.
|
|
||||||
Service can hold an endpoint URL, WSDL path and a class map as associative array.
|
|
||||||
You can hold a class map as ``ClassMap`` object directly in the ``DummyService`` instead of array.
|
|
||||||
|
|
||||||
In the service you should describe SOAP methods from given WSDL.
|
|
||||||
In the example, the dummyServiceMethod is called.
|
|
||||||
The method will receive request object and return response object that are matched according to the class map.
|
|
||||||
|
|
||||||
See a simplified implementation of ``dummyServiceMethod`` to get a clue:
|
|
||||||
|
|
||||||
```php
|
|
||||||
/**
|
|
||||||
* @param DummyServiceRequest $dummyServiceRequest
|
|
||||||
* @return DummyServiceResponse
|
|
||||||
*/
|
|
||||||
public function dummyServiceMethod(DummyServiceRequest $dummyServiceRequest)
|
|
||||||
{
|
{
|
||||||
$response = new DummyServiceResponse();
|
"require": {
|
||||||
$response->status = true;
|
"besimple/soap": "0.2.*@dev"
|
||||||
|
}
|
||||||
return $response;
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
For further information and getting inspiration for your implementation, see the unit tests in ``tests`` dir.
|
Now you are ready to install the library:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
php /usr/local/bin/composer.phar install
|
||||||
|
```
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"name": "cadoles/soap",
|
"name": "besimple/soap",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"description": "Build and consume SOAP and WSDL based web services",
|
"description": "Build and consume SOAP and WSDL based web services",
|
||||||
"keywords": ["soap"],
|
"keywords": ["soap"],
|
||||||
"homepage": "https://github.com/Cadoles/BeSimpleSoap",
|
"homepage": "http://besim.pl",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
@ -20,34 +20,33 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.0",
|
"php": ">=5.3.0",
|
||||||
"ext-soap": "*",
|
"ext-soap": "*",
|
||||||
"ext-curl": "*",
|
"ext-curl": "*",
|
||||||
"ass/xmlsecurity": "~1.0",
|
"ass/xmlsecurity": "~1.0",
|
||||||
"symfony/framework-bundle": "~3.4|~4.0",
|
"symfony/framework-bundle": "~2.0",
|
||||||
"symfony/twig-bundle": "~3.4|~4.0",
|
"symfony/twig-bundle": "~2.0",
|
||||||
"laminas/laminas-mime": "~2.1"
|
"zendframework/zend-mime": "2.1.*"
|
||||||
},
|
},
|
||||||
"replace": {
|
"replace": {
|
||||||
"besimple/soap-bundle": "self.version",
|
"besimple/soap-bundle": "self.version",
|
||||||
"besimple/soap-client": "self.version",
|
"besimple/soap-client": "self.version",
|
||||||
"besimple/soap-common": "self.version",
|
"besimple/soap-common": "self.version",
|
||||||
"besimple/soap-server": "self.version",
|
"besimple/soap-server": "self.version",
|
||||||
"besimple/soap-wsdl": "self.version",
|
"besimple/soap-wsdl": "self.version"
|
||||||
"cocciagialla/soap": "self.version"
|
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"mikey179/vfsstream": "~1.6.5",
|
"ext-mcrypt": "*",
|
||||||
"symfony/filesystem": "~2.3",
|
"mikey179/vfsStream": "~1.0",
|
||||||
"symfony/process": "~2.3",
|
"symfony/filesystem": "~2.0",
|
||||||
"phpunit/phpunit": "^5.7"
|
"symfony/process": "~2.3"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-0": { "BeSimple\\": "src/" }
|
"psr-0": { "BeSimple\\": "src/" }
|
||||||
},
|
},
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-master": "5.2.0-dev"
|
"dev-master": "0.2-dev"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
1
src/BeSimple/SoapBundle/.gitignore
vendored
1
src/BeSimple/SoapBundle/.gitignore
vendored
@ -1,4 +1,3 @@
|
|||||||
vendor/
|
vendor/
|
||||||
composer.lock
|
composer.lock
|
||||||
phpunit.xml
|
phpunit.xml
|
||||||
.idea/
|
|
||||||
|
@ -15,26 +15,21 @@ namespace BeSimple\SoapBundle\Controller;
|
|||||||
use BeSimple\SoapBundle\Handler\ExceptionHandler;
|
use BeSimple\SoapBundle\Handler\ExceptionHandler;
|
||||||
use BeSimple\SoapBundle\Soap\SoapRequest;
|
use BeSimple\SoapBundle\Soap\SoapRequest;
|
||||||
use BeSimple\SoapBundle\Soap\SoapResponse;
|
use BeSimple\SoapBundle\Soap\SoapResponse;
|
||||||
use BeSimple\SoapBundle\WebServiceContext;
|
|
||||||
use BeSimple\SoapServer\SoapServerBuilder;
|
use BeSimple\SoapServer\SoapServerBuilder;
|
||||||
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
|
use Symfony\Component\DependencyInjection\ContainerAware;
|
||||||
use Symfony\Component\DependencyInjection\ContainerAwareTrait;
|
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
use Symfony\Component\Debug\Exception\FlattenException;
|
use Symfony\Component\HttpKernel\Exception\FlattenException;
|
||||||
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
||||||
use Symfony\Component\HttpKernel\HttpKernelInterface;
|
use Symfony\Component\HttpKernel\HttpKernelInterface;
|
||||||
use Symfony\Component\HttpKernel\Log\DebugLoggerInterface;
|
use Symfony\Component\HttpKernel\Log\DebugLoggerInterface;
|
||||||
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Christian Kerl <christian-kerl@web.de>
|
* @author Christian Kerl <christian-kerl@web.de>
|
||||||
* @author Francis Besset <francis.besset@gmail.com>
|
* @author Francis Besset <francis.besset@gmail.com>
|
||||||
*/
|
*/
|
||||||
class SoapWebServiceController implements ContainerAwareInterface
|
class SoapWebServiceController extends ContainerAware
|
||||||
{
|
{
|
||||||
use ContainerAwareTrait;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var \SoapServer
|
* @var \SoapServer
|
||||||
*/
|
*/
|
||||||
@ -58,20 +53,19 @@ class SoapWebServiceController implements ContainerAwareInterface
|
|||||||
/**
|
/**
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
private $headers = [];
|
private $headers = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return \BeSimple\SoapBundle\Soap\SoapResponse
|
* @return \BeSimple\SoapBundle\Soap\SoapResponse
|
||||||
*/
|
*/
|
||||||
public function callAction($webservice)
|
public function callAction($webservice)
|
||||||
{
|
{
|
||||||
/** @var WebServiceContext $webServiceContext */
|
$webServiceContext = $this->getWebServiceContext($webservice);
|
||||||
$webServiceContext = $this->getWebServiceContext($webservice);
|
|
||||||
|
|
||||||
$this->serviceBinder = $webServiceContext->getServiceBinder();
|
$this->serviceBinder = $webServiceContext->getServiceBinder();
|
||||||
|
|
||||||
$this->soapRequest = SoapRequest::createFromHttpRequest($this->container->get('request_stack')->getCurrentRequest());
|
$this->soapRequest = SoapRequest::createFromHttpRequest($this->container->get('request'));
|
||||||
$this->soapServer = $webServiceContext
|
$this->soapServer = $webServiceContext
|
||||||
->getServerBuilder()
|
->getServerBuilder()
|
||||||
->withSoapVersion11()
|
->withSoapVersion11()
|
||||||
->withHandler($this)
|
->withHandler($this)
|
||||||
@ -89,26 +83,19 @@ class SoapWebServiceController implements ContainerAwareInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Response
|
* @return Symfony\Component\HttpFoundation\Response
|
||||||
*/
|
*/
|
||||||
public function definitionAction($webservice)
|
public function definitionAction($webservice)
|
||||||
{
|
{
|
||||||
$routeName = $webservice.'_webservice_call';
|
|
||||||
$result = $this->container->get('router')->getRouteCollection()->get($routeName);
|
|
||||||
if (null === $result) {
|
|
||||||
$routeName = '_webservice_call';
|
|
||||||
}
|
|
||||||
|
|
||||||
$response = new Response($this->getWebServiceContext($webservice)->getWsdlFileContent(
|
$response = new Response($this->getWebServiceContext($webservice)->getWsdlFileContent(
|
||||||
$this->container->get('router')->generate(
|
$this->container->get('router')->generate(
|
||||||
$routeName,
|
'_webservice_call',
|
||||||
['webservice' => $webservice],
|
array('webservice' => $webservice),
|
||||||
UrlGeneratorInterface::ABSOLUTE_URL
|
true
|
||||||
)
|
)
|
||||||
));
|
));
|
||||||
|
|
||||||
/** @var Request $request */
|
$request = $this->container->get('request');
|
||||||
$request = $this->container->get('request_stack')->getCurrentRequest();
|
|
||||||
$query = $request->query;
|
$query = $request->query;
|
||||||
if ($query->has('wsdl') || $query->has('WSDL')) {
|
if ($query->has('wsdl') || $query->has('WSDL')) {
|
||||||
$request->setRequestFormat('wsdl');
|
$request->setRequestFormat('wsdl');
|
||||||
@ -134,14 +121,14 @@ class SoapWebServiceController implements ContainerAwareInterface
|
|||||||
throw new \LogicException(sprintf('The parameter "%s" is required in Request::$query parameter bag to generate the SoapFault.', '_besimple_soap_webservice'), null, $e);
|
throw new \LogicException(sprintf('The parameter "%s" is required in Request::$query parameter bag to generate the SoapFault.', '_besimple_soap_webservice'), null, $e);
|
||||||
}
|
}
|
||||||
|
|
||||||
$view = '@Twig/Exception/'.($this->container->get('kernel')->isDebug() ? 'exception' : 'error').'.txt.twig';
|
$view = 'TwigBundle:Exception:'.($this->container->get('kernel')->isDebug() ? 'exception' : 'error').'.txt.twig';
|
||||||
$code = $exception->getStatusCode();
|
$code = $exception->getStatusCode();
|
||||||
$details = $this->container->get('twig')->render($view, [
|
$details = $this->container->get('templating')->render($view, array(
|
||||||
'status_code' => $code,
|
'status_code' => $code,
|
||||||
'status_text' => isset(Response::$statusTexts[$code]) ? Response::$statusTexts[$code] : '',
|
'status_text' => isset(Response::$statusTexts[$code]) ? Response::$statusTexts[$code] : '',
|
||||||
'exception' => $exception,
|
'exception' => $exception,
|
||||||
'logger' => $logger,
|
'logger' => $logger,
|
||||||
]);
|
));
|
||||||
|
|
||||||
$handler = new ExceptionHandler($exception, $details);
|
$handler = new ExceptionHandler($exception, $details);
|
||||||
if ($soapFault = $request->query->get('_besimple_soap_fault')) {
|
if ($soapFault = $request->query->get('_besimple_soap_fault')) {
|
||||||
@ -175,8 +162,8 @@ class SoapWebServiceController implements ContainerAwareInterface
|
|||||||
* This method gets called once for every SOAP header the \SoapServer received
|
* This method gets called once for every SOAP header the \SoapServer received
|
||||||
* and afterwards once for the called SOAP operation.
|
* and afterwards once for the called SOAP operation.
|
||||||
*
|
*
|
||||||
* @param string $method The SOAP header or SOAP operation name
|
* @param string $method The SOAP header or SOAP operation name
|
||||||
* @param array $arguments
|
* @param array $arguments
|
||||||
*
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
@ -233,7 +220,7 @@ class SoapWebServiceController implements ContainerAwareInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the SoapResponse.
|
* Set the SoapResponse
|
||||||
*
|
*
|
||||||
* @param Response $response A response to check and set
|
* @param Response $response A response to check and set
|
||||||
*
|
*
|
||||||
@ -250,7 +237,7 @@ class SoapWebServiceController implements ContainerAwareInterface
|
|||||||
return $this->soapResponse = $response;
|
return $this->soapResponse = $response;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function getWebServiceContext($webservice)
|
private function getWebServiceContext($webservice)
|
||||||
{
|
{
|
||||||
$context = sprintf('besimple.soap.context.%s', $webservice);
|
$context = sprintf('besimple.soap.context.%s', $webservice);
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ class TypeRepository
|
|||||||
|
|
||||||
public function fixTypeInformation(ServiceDefinition $definition)
|
public function fixTypeInformation(ServiceDefinition $definition)
|
||||||
{
|
{
|
||||||
foreach ($definition->getAllTypes() as $type) {
|
foreach($definition->getAllTypes() as $type) {
|
||||||
$phpType = $type->getPhpType();
|
$phpType = $type->getPhpType();
|
||||||
$xmlType = $type->getXmlType();
|
$xmlType = $type->getXmlType();
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ namespace BeSimple\SoapBundle\Converter;
|
|||||||
|
|
||||||
use BeSimple\SoapBundle\Soap\SoapRequest;
|
use BeSimple\SoapBundle\Soap\SoapRequest;
|
||||||
use BeSimple\SoapBundle\Soap\SoapResponse;
|
use BeSimple\SoapBundle\Soap\SoapResponse;
|
||||||
use BeSimple\SoapBundle\Util\BsString;
|
use BeSimple\SoapBundle\Util\String;
|
||||||
use BeSimple\SoapCommon\Converter\TypeConverterInterface;
|
use BeSimple\SoapCommon\Converter\TypeConverterInterface;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -40,7 +40,7 @@ class XopIncludeTypeConverter implements TypeConverterInterface
|
|||||||
|
|
||||||
$ref = $include->getAttribute('href');
|
$ref = $include->getAttribute('href');
|
||||||
|
|
||||||
if (BsString::startsWith($ref, 'cid:')) {
|
if (String::startsWith($ref, 'cid:')) {
|
||||||
$cid = urldecode(substr($ref, 4));
|
$cid = urldecode(substr($ref, 4));
|
||||||
|
|
||||||
return $request->getSoapAttachments()->get($cid)->getContent();
|
return $request->getSoapAttachments()->get($cid)->getContent();
|
||||||
|
@ -17,11 +17,10 @@ use BeSimple\SoapCommon\Cache;
|
|||||||
use Symfony\Component\Config\Definition\Processor;
|
use Symfony\Component\Config\Definition\Processor;
|
||||||
use Symfony\Component\Config\FileLocator;
|
use Symfony\Component\Config\FileLocator;
|
||||||
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||||
use Symfony\Component\DependencyInjection\ChildDefinition;
|
use Symfony\Component\DependencyInjection\DefinitionDecorator;
|
||||||
use Symfony\Component\DependencyInjection\Reference;
|
use Symfony\Component\DependencyInjection\Reference;
|
||||||
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
|
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
|
||||||
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
|
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
|
||||||
use Symfony\Component\HttpKernel\Kernel;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* BeSimpleSoapExtension.
|
* BeSimpleSoapExtension.
|
||||||
@ -60,7 +59,7 @@ class BeSimpleSoapExtension extends Extension
|
|||||||
|
|
||||||
$container->setParameter('besimple.soap.definition.dumper.options.stylesheet', $config['wsdl_dumper']['stylesheet']);
|
$container->setParameter('besimple.soap.definition.dumper.options.stylesheet', $config['wsdl_dumper']['stylesheet']);
|
||||||
|
|
||||||
foreach ($config['services'] as $name => $serviceConfig) {
|
foreach($config['services'] as $name => $serviceConfig) {
|
||||||
$serviceConfig['name'] = $name;
|
$serviceConfig['name'] = $name;
|
||||||
$this->createWebServiceContext($serviceConfig, $container);
|
$this->createWebServiceContext($serviceConfig, $container);
|
||||||
}
|
}
|
||||||
@ -81,21 +80,17 @@ class BeSimpleSoapExtension extends Extension
|
|||||||
|
|
||||||
private function registerClientConfiguration(array $config, ContainerBuilder $container, XmlFileLoader $loader)
|
private function registerClientConfiguration(array $config, ContainerBuilder $container, XmlFileLoader $loader)
|
||||||
{
|
{
|
||||||
if (3 === Kernel::MAJOR_VERSION) {
|
$loader->load('client.xml');
|
||||||
$loader->load('client3.xml');
|
|
||||||
} else {
|
|
||||||
$loader->load('client.xml');
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach ($config as $client => $options) {
|
foreach ($config as $client => $options) {
|
||||||
$definition = new ChildDefinition('besimple.soap.client.builder');
|
$definition = new DefinitionDecorator('besimple.soap.client.builder');
|
||||||
$container->setDefinition(sprintf('besimple.soap.client.builder.%s', $client), $definition);
|
$container->setDefinition(sprintf('besimple.soap.client.builder.%s', $client), $definition);
|
||||||
|
|
||||||
$definition->replaceArgument(0, $options['wsdl']);
|
$definition->replaceArgument(0, $options['wsdl']);
|
||||||
|
|
||||||
$defOptions = $container
|
$defOptions = $container
|
||||||
->getDefinition('besimple.soap.client.builder')
|
->getDefinition('besimple.soap.client.builder')
|
||||||
->getArgument(1);
|
->getArgument(1);
|
||||||
|
|
||||||
foreach (array('cache_type', 'user_agent') as $key) {
|
foreach (array('cache_type', 'user_agent') as $key) {
|
||||||
if (isset($options[$key])) {
|
if (isset($options[$key])) {
|
||||||
@ -135,7 +130,7 @@ class BeSimpleSoapExtension extends Extension
|
|||||||
|
|
||||||
private function createClientClassmap($client, array $classmap, ContainerBuilder $container)
|
private function createClientClassmap($client, array $classmap, ContainerBuilder $container)
|
||||||
{
|
{
|
||||||
$definition = new ChildDefinition('besimple.soap.classmap');
|
$definition = new DefinitionDecorator('besimple.soap.classmap');
|
||||||
$container->setDefinition(sprintf('besimple.soap.classmap.%s', $client), $definition);
|
$container->setDefinition(sprintf('besimple.soap.classmap.%s', $client), $definition);
|
||||||
|
|
||||||
if (!empty($classmap)) {
|
if (!empty($classmap)) {
|
||||||
@ -149,18 +144,10 @@ class BeSimpleSoapExtension extends Extension
|
|||||||
|
|
||||||
private function createClient($client, ContainerBuilder $container)
|
private function createClient($client, ContainerBuilder $container)
|
||||||
{
|
{
|
||||||
$definition = new ChildDefinition('besimple.soap.client');
|
$definition = new DefinitionDecorator('besimple.soap.client');
|
||||||
$container->setDefinition(sprintf('besimple.soap.client.%s', $client), $definition);
|
$container->setDefinition(sprintf('besimple.soap.client.%s', $client), $definition);
|
||||||
|
|
||||||
if (Kernel::MAJOR_VERSION >= 3) {
|
$definition->setFactoryService(sprintf('besimple.soap.client.builder.%s', $client));
|
||||||
$definition->setFactory(array(
|
|
||||||
new Reference(sprintf('besimple.soap.client.builder.%s', $client)),
|
|
||||||
'build'
|
|
||||||
));
|
|
||||||
$definition->setPublic(true);
|
|
||||||
} else {
|
|
||||||
$definition->setFactoryService(sprintf('besimple.soap.client.builder.%s', $client));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private function createWebServiceContext(array $config, ContainerBuilder $container)
|
private function createWebServiceContext(array $config, ContainerBuilder $container)
|
||||||
@ -169,7 +156,7 @@ class BeSimpleSoapExtension extends Extension
|
|||||||
unset($config['binding']);
|
unset($config['binding']);
|
||||||
|
|
||||||
$contextId = 'besimple.soap.context.'.$config['name'];
|
$contextId = 'besimple.soap.context.'.$config['name'];
|
||||||
$definition = new ChildDefinition('besimple.soap.context.'.$bindingSuffix);
|
$definition = new DefinitionDecorator('besimple.soap.context.'.$bindingSuffix);
|
||||||
$container->setDefinition($contextId, $definition);
|
$container->setDefinition($contextId, $definition);
|
||||||
|
|
||||||
if (isset($config['cache_type'])) {
|
if (isset($config['cache_type'])) {
|
||||||
@ -178,7 +165,6 @@ class BeSimpleSoapExtension extends Extension
|
|||||||
|
|
||||||
$options = $container
|
$options = $container
|
||||||
->getDefinition('besimple.soap.context.'.$bindingSuffix)
|
->getDefinition('besimple.soap.context.'.$bindingSuffix)
|
||||||
->setPublic(true)
|
|
||||||
->getArgument(2);
|
->getArgument(2);
|
||||||
|
|
||||||
$definition->replaceArgument(2, array_merge($options, $config));
|
$definition->replaceArgument(2, array_merge($options, $config));
|
||||||
|
@ -96,12 +96,8 @@ class Configuration
|
|||||||
->info('proxy configuration')
|
->info('proxy configuration')
|
||||||
->addDefaultsIfNotSet()
|
->addDefaultsIfNotSet()
|
||||||
->beforeNormalization()
|
->beforeNormalization()
|
||||||
->ifTrue(function ($v) {
|
->ifTrue(function ($v) { return !is_array($v); })
|
||||||
return !is_array($v);
|
->then(function ($v) { return array('host' => null === $v ? false : $v); })
|
||||||
})
|
|
||||||
->then(function ($v) {
|
|
||||||
return array('host' => null === $v ? false : $v);
|
|
||||||
})
|
|
||||||
->end()
|
->end()
|
||||||
->children()
|
->children()
|
||||||
->scalarNode('host')->defaultFalse()->end()
|
->scalarNode('host')->defaultFalse()->end()
|
||||||
|
@ -51,9 +51,7 @@ class SoapExceptionListener extends ExceptionListener
|
|||||||
}
|
}
|
||||||
|
|
||||||
$request = $event->getRequest();
|
$request = $event->getRequest();
|
||||||
if (!in_array($request->getRequestFormat(), array('soap', 'xml'))) {
|
if ('soap' !== $request->getRequestFormat()) {
|
||||||
return;
|
|
||||||
} elseif ('xml' === $request->getRequestFormat() && '_webservice_call' !== $request->attributes->get('_route')) {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,8 +13,8 @@
|
|||||||
namespace BeSimple\SoapBundle\Handler;
|
namespace BeSimple\SoapBundle\Handler;
|
||||||
|
|
||||||
use BeSimple\SoapServer\Exception\ReceiverSoapFault;
|
use BeSimple\SoapServer\Exception\ReceiverSoapFault;
|
||||||
use Symfony\Component\Debug\Exception\FlattenException;
|
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
use Symfony\Component\HttpKernel\Exception\FlattenException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Francis Besset <francis.besset@gmail.com>
|
* @author Francis Besset <francis.besset@gmail.com>
|
||||||
|
@ -19,9 +19,7 @@
|
|||||||
<argument type="service" id="besimple.soap.cache" /> <!-- hack to load besimple cache configuration -->
|
<argument type="service" id="besimple.soap.cache" /> <!-- hack to load besimple cache configuration -->
|
||||||
</service>
|
</service>
|
||||||
|
|
||||||
<service id="besimple.soap.client" class="%besimple.soap.client.builder.class%" abstract="true">
|
<service id="besimple.soap.client" factory-service="besimple.soap.client.builder" factory-method="build" class="%besimple.soap.client.builder.class%" abstract="true" />
|
||||||
<factory service="besimple.soap.client.builder" method="build" />
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<service id="besimple.soap.classmap" class="%besimple.soap.classmap.class%" abstract="true" />
|
<service id="besimple.soap.classmap" class="%besimple.soap.classmap.class%" abstract="true" />
|
||||||
</services>
|
</services>
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<container xmlns="http://symfony.com/schema/dic/services"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
|
|
||||||
|
|
||||||
<parameters>
|
|
||||||
<parameter key="besimple.soap.client.builder.class">BeSimple\SoapBundle\Soap\SoapClientBuilder</parameter>
|
|
||||||
<parameter key="besimple.soap.classmap.class">BeSimple\SoapCommon\Classmap</parameter>
|
|
||||||
</parameters>
|
|
||||||
|
|
||||||
<services>
|
|
||||||
<service id="besimple.soap.client.builder" class="%besimple.soap.client.builder.class%" abstract="true">
|
|
||||||
<argument /> <!-- wsdl URI -->
|
|
||||||
<argument type="collection">
|
|
||||||
<argument key="debug">%kernel.debug%</argument>
|
|
||||||
</argument>
|
|
||||||
<argument type="service" id="besimple.soap.classmap" />
|
|
||||||
<argument type="service" id="besimple.soap.converter.collection" />
|
|
||||||
<argument type="service" id="besimple.soap.cache" /> <!-- hack to load besimple cache configuration -->
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<service id="besimple.soap.client" class="%besimple.soap.client.builder.class%" abstract="true">
|
|
||||||
<factory service="besimple.soap.client.builder" method="build" />
|
|
||||||
</service>
|
|
||||||
|
|
||||||
<service id="besimple.soap.classmap" class="%besimple.soap.classmap.class%" abstract="true" />
|
|
||||||
</services>
|
|
||||||
|
|
||||||
</container>
|
|
@ -1,16 +1,18 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
|
||||||
<routes xmlns="http://symfony.com/schema/routing"
|
<routes xmlns="http://symfony.com/schema/routing"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd">
|
xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd">
|
||||||
|
|
||||||
<route id="_webservice_call" path="/{webservice}" methods="POST">
|
<route id="_webservice_call" pattern="/{webservice}">
|
||||||
<default key="_controller">BeSimpleSoapBundle:SoapWebService:Call</default>
|
<default key="_controller">BeSimpleSoapBundle:SoapWebService:Call</default>
|
||||||
<default key="_format">xml</default>
|
<default key="_format">xml</default>
|
||||||
|
<requirement key="_method">POST</requirement>
|
||||||
</route>
|
</route>
|
||||||
|
|
||||||
<route id="_webservice_definition" path="/{webservice}" methods="GET">
|
<route id="_webservice_definition" pattern="/{webservice}">
|
||||||
<default key="_controller">BeSimpleSoapBundle:SoapWebService:Definition</default>
|
<default key="_controller">BeSimpleSoapBundle:SoapWebService:Definition</default>
|
||||||
<default key="_format">xml</default>
|
<default key="_format">xml</default>
|
||||||
|
<requirement key="_method">GET</requirement>
|
||||||
</route>
|
</route>
|
||||||
</routes>
|
</routes>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
</parameters>
|
</parameters>
|
||||||
|
|
||||||
<services>
|
<services>
|
||||||
<service id="besimple.soap.response" class="%besimple.soap.response.class%" public="true" />
|
<service id="besimple.soap.response" class="%besimple.soap.response.class%" />
|
||||||
|
|
||||||
<service id="besimple.soap.response.listener" class="%besimple.soap.response.listener.class%">
|
<service id="besimple.soap.response.listener" class="%besimple.soap.response.listener.class%">
|
||||||
<tag name="kernel.event_listener" event="kernel.view" method="onKernelView" />
|
<tag name="kernel.event_listener" event="kernel.view" method="onKernelView" />
|
||||||
@ -96,14 +96,6 @@
|
|||||||
<argument>dateTime</argument>
|
<argument>dateTime</argument>
|
||||||
<argument>xsd:dateTime</argument>
|
<argument>xsd:dateTime</argument>
|
||||||
</call>
|
</call>
|
||||||
<call method="addType">
|
|
||||||
<argument>base64Binary</argument>
|
|
||||||
<argument>xsd:base64Binary</argument>
|
|
||||||
</call>
|
|
||||||
<call method="addType">
|
|
||||||
<argument>hexBinary</argument>
|
|
||||||
<argument>xsd:hexBinary</argument>
|
|
||||||
</call>
|
|
||||||
</service>
|
</service>
|
||||||
</services>
|
</services>
|
||||||
|
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
/*
|
|
||||||
* This file is part of the BeSimpleSoapBundle.
|
|
||||||
*
|
|
||||||
* (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 BeSimple\SoapBundle\ServiceBinding;
|
|
||||||
|
|
||||||
use BeSimple\SoapBundle\ServiceDefinition\Method;
|
|
||||||
use BeSimple\SoapCommon\Definition\Type\TypeRepository;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author Francis Besset <francis.besset@gmail.com>
|
|
||||||
*/
|
|
||||||
class DocumentLiteralWrappedRequestHeaderMessageBinder extends DocumentLiteralWrappedRequestMessageBinder
|
|
||||||
{
|
|
||||||
private $header;
|
|
||||||
|
|
||||||
public function setHeader($header)
|
|
||||||
{
|
|
||||||
$this->header = $header;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function processMessage(Method $messageDefinition, $message, TypeRepository $typeRepository)
|
|
||||||
{
|
|
||||||
$headerDefinition = $messageDefinition->getHeaders()->get($this->header);
|
|
||||||
return [];
|
|
||||||
}
|
|
||||||
}
|
|
@ -11,26 +11,25 @@
|
|||||||
namespace BeSimple\SoapBundle\ServiceBinding;
|
namespace BeSimple\SoapBundle\ServiceBinding;
|
||||||
|
|
||||||
use BeSimple\SoapBundle\ServiceDefinition\Method;
|
use BeSimple\SoapBundle\ServiceDefinition\Method;
|
||||||
use BeSimple\SoapCommon\Definition\Type\TypeRepository;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Christian Kerl <christian-kerl@web.de>
|
* @author Christian Kerl <christian-kerl@web.de>
|
||||||
*/
|
*/
|
||||||
class DocumentLiteralWrappedRequestMessageBinder implements MessageBinderInterface
|
class DocumentLiteralWrappedRequestMessageBinder implements MessageBinderInterface
|
||||||
{
|
{
|
||||||
public function processMessage(Method $messageDefinition, $message, TypeRepository $typeRepository)
|
public function processMessage(Method $messageDefinition, $message)
|
||||||
{
|
{
|
||||||
if (count($message) > 1) {
|
if(count($message) > 1) {
|
||||||
throw new \InvalidArgumentException();
|
throw new \InvalidArgumentException();
|
||||||
}
|
}
|
||||||
|
|
||||||
$result = array();
|
$result = array();
|
||||||
$message = $message[0];
|
$message = $message[0];
|
||||||
|
|
||||||
foreach ($messageDefinition->getInput()->all() as $argument) {
|
foreach($messageDefinition->getArguments() as $argument) {
|
||||||
$result[$argument->getName()] = $message;
|
$result[$argument->getName()] = $message->{$argument->getName()};
|
||||||
}
|
}
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -11,15 +11,17 @@
|
|||||||
namespace BeSimple\SoapBundle\ServiceBinding;
|
namespace BeSimple\SoapBundle\ServiceBinding;
|
||||||
|
|
||||||
use BeSimple\SoapBundle\ServiceDefinition\Method;
|
use BeSimple\SoapBundle\ServiceDefinition\Method;
|
||||||
use BeSimple\SoapCommon\Definition\Type\TypeRepository;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Christian Kerl <christian-kerl@web.de>
|
* @author Christian Kerl <christian-kerl@web.de>
|
||||||
*/
|
*/
|
||||||
class DocumentLiteralWrappedResponseMessageBinder implements MessageBinderInterface
|
class DocumentLiteralWrappedResponseMessageBinder implements MessageBinderInterface
|
||||||
{
|
{
|
||||||
public function processMessage(Method $messageDefinition, $message, TypeRepository $typeRepository)
|
public function processMessage(Method $messageDefinition, $message)
|
||||||
{
|
{
|
||||||
return $message;
|
$result = new \stdClass();
|
||||||
|
$result->{$messageDefinition->getName().'Result'} = $message;
|
||||||
|
|
||||||
|
return $result;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -24,5 +24,5 @@ interface MessageBinderInterface
|
|||||||
*
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function processMessage(Method $messageDefinition, $message, TypeRepository $typeRepository);
|
function processMessage(Method $messageDefinition, $message, TypeRepository $typeRepository);
|
||||||
}
|
}
|
||||||
|
@ -32,10 +32,7 @@ class RpcLiteralResponseMessageBinder implements MessageBinderInterface
|
|||||||
{
|
{
|
||||||
$this->typeRepository = $typeRepository;
|
$this->typeRepository = $typeRepository;
|
||||||
|
|
||||||
$parts = $messageDefinition->getOutput()->all();
|
return $this->processType($messageDefinition->getOutput()->get('return')->getType(), $message);
|
||||||
$part = array_shift($parts);
|
|
||||||
|
|
||||||
return $this->processType($part->getType(), $message);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private function processType($phpType, $message)
|
private function processType($phpType, $message)
|
||||||
|
@ -44,8 +44,7 @@ class ServiceBinder
|
|||||||
* @param MessageBinderInterface $requestMessageBinder
|
* @param MessageBinderInterface $requestMessageBinder
|
||||||
* @param MessageBinderInterface $responseMessageBinder
|
* @param MessageBinderInterface $responseMessageBinder
|
||||||
*/
|
*/
|
||||||
public function __construct(Definition $definition, MessageBinderInterface $requestHeaderMessageBinder, MessageBinderInterface $requestMessageBinder, MessageBinderInterface $responseMessageBinder)
|
public function __construct(Definition $definition, MessageBinderInterface $requestHeaderMessageBinder, MessageBinderInterface $requestMessageBinder, MessageBinderInterface $responseMessageBinder) {
|
||||||
{
|
|
||||||
$this->definition = $definition;
|
$this->definition = $definition;
|
||||||
|
|
||||||
$this->requestHeaderMessageBinder = $requestHeaderMessageBinder;
|
$this->requestHeaderMessageBinder = $requestHeaderMessageBinder;
|
||||||
|
@ -18,7 +18,6 @@ class ComplexType extends Configuration
|
|||||||
private $name;
|
private $name;
|
||||||
private $value;
|
private $value;
|
||||||
private $isNillable = false;
|
private $isNillable = false;
|
||||||
private $minOccurs = 1;
|
|
||||||
|
|
||||||
public function getName()
|
public function getName()
|
||||||
{
|
{
|
||||||
@ -35,11 +34,6 @@ class ComplexType extends Configuration
|
|||||||
return $this->isNillable;
|
return $this->isNillable;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getIsNillable()
|
|
||||||
{
|
|
||||||
return $this->isNillable;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setName($name)
|
public function setName($name)
|
||||||
{
|
{
|
||||||
$this->name = $name;
|
$this->name = $name;
|
||||||
@ -55,23 +49,8 @@ class ComplexType extends Configuration
|
|||||||
$this->isNillable = (bool) $isNillable;
|
$this->isNillable = (bool) $isNillable;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setIsNillable($isNillable)
|
|
||||||
{
|
|
||||||
$this->isNillable = (bool) $isNillable;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setMinOccurs($minOccurs)
|
|
||||||
{
|
|
||||||
$this->minOccurs = $minOccurs;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getMinOccurs()
|
|
||||||
{
|
|
||||||
return $this->minOccurs;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getAliasName()
|
public function getAliasName()
|
||||||
{
|
{
|
||||||
return 'complextype';
|
return 'complextype';
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -22,5 +22,5 @@ interface ConfigurationInterface
|
|||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function getAliasName();
|
function getAliasName();
|
||||||
}
|
}
|
@ -19,4 +19,4 @@ class Header extends Param
|
|||||||
{
|
{
|
||||||
return 'header';
|
return 'header';
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -42,4 +42,4 @@ class Method extends Configuration
|
|||||||
{
|
{
|
||||||
return 'method';
|
return 'method';
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -53,4 +53,4 @@ class Param extends Configuration implements TypedElementInterface
|
|||||||
{
|
{
|
||||||
return 'param';
|
return 'param';
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -42,4 +42,4 @@ class Result extends Configuration implements TypedElementInterface
|
|||||||
{
|
{
|
||||||
return 'result';
|
return 'result';
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -12,8 +12,8 @@ namespace BeSimple\SoapBundle\ServiceDefinition\Annotation;
|
|||||||
|
|
||||||
interface TypedElementInterface
|
interface TypedElementInterface
|
||||||
{
|
{
|
||||||
public function getPhpType();
|
function getPhpType();
|
||||||
public function getXmlType();
|
function getXmlType();
|
||||||
public function setPhpType($phpType);
|
function setPhpType($phpType);
|
||||||
public function setXmlType($xmlType);
|
function setXmlType($xmlType);
|
||||||
}
|
}
|
@ -20,7 +20,6 @@ class ComplexType
|
|||||||
private $name;
|
private $name;
|
||||||
private $value;
|
private $value;
|
||||||
private $isNillable = false;
|
private $isNillable = false;
|
||||||
private $minOccurs = 1;
|
|
||||||
|
|
||||||
public function getName()
|
public function getName()
|
||||||
{
|
{
|
||||||
@ -51,14 +50,4 @@ class ComplexType
|
|||||||
{
|
{
|
||||||
$this->isNillable = (bool) $isNillable;
|
$this->isNillable = (bool) $isNillable;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setMinOccurs($minOccurs)
|
|
||||||
{
|
|
||||||
$this->minOccurs = $minOccurs;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getMinOccurs()
|
|
||||||
{
|
|
||||||
return $this->minOccurs;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -96,7 +96,6 @@ class AnnotationClassLoader extends Loader
|
|||||||
}
|
}
|
||||||
|
|
||||||
$serviceReturn = $annotation->getPhpType();
|
$serviceReturn = $annotation->getPhpType();
|
||||||
$serviceXmlReturn = $annotation->getXmlType();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -117,11 +116,7 @@ class AnnotationClassLoader extends Loader
|
|||||||
throw new \LogicException(sprintf('@Soap\Result non-existent for "%s".', $method->getName()));
|
throw new \LogicException(sprintf('@Soap\Result non-existent for "%s".', $method->getName()));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($serviceXmlReturn) || !$serviceXmlReturn) {
|
$serviceMethod->setOutput($this->loadType($serviceReturn));
|
||||||
$serviceXmlReturn = 'return';
|
|
||||||
}
|
|
||||||
|
|
||||||
$serviceMethod->setOutput($this->loadType($serviceReturn), $serviceXmlReturn);
|
|
||||||
|
|
||||||
$definition->addMethod($serviceMethod);
|
$definition->addMethod($serviceMethod);
|
||||||
}
|
}
|
||||||
@ -138,7 +133,7 @@ class AnnotationClassLoader extends Loader
|
|||||||
*/
|
*/
|
||||||
private function getController(\ReflectionClass $class, \ReflectionMethod $method, Annotation\Method $annotation)
|
private function getController(\ReflectionClass $class, \ReflectionMethod $method, Annotation\Method $annotation)
|
||||||
{
|
{
|
||||||
if (null !== $annotation->getService()) {
|
if(null !== $annotation->getService()) {
|
||||||
return $annotation->getService() . ':' . $method->name;
|
return $annotation->getService() . ':' . $method->name;
|
||||||
} else {
|
} else {
|
||||||
return $class->name . '::' . $method->name;
|
return $class->name . '::' . $method->name;
|
||||||
@ -160,7 +155,7 @@ class AnnotationClassLoader extends Loader
|
|||||||
$loaded = $complexTypeResolver->load($phpType);
|
$loaded = $complexTypeResolver->load($phpType);
|
||||||
$complexType = new ComplexType($phpType, isset($loaded['alias']) ? $loaded['alias'] : $phpType);
|
$complexType = new ComplexType($phpType, isset($loaded['alias']) ? $loaded['alias'] : $phpType);
|
||||||
foreach ($loaded['properties'] as $name => $property) {
|
foreach ($loaded['properties'] as $name => $property) {
|
||||||
$complexType->add($name, $this->loadType($property->getValue()), $property->isNillable(), $property->getMinOccurs());
|
$complexType->add($name, $this->loadType($property->getValue()), $property->isNillable());
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->typeRepository->addComplexType($complexType);
|
$this->typeRepository->addComplexType($complexType);
|
||||||
|
@ -24,7 +24,7 @@ use BeSimple\SoapBundle\Util\Collection;
|
|||||||
*/
|
*/
|
||||||
class AnnotationComplexTypeLoader extends AnnotationClassLoader
|
class AnnotationComplexTypeLoader extends AnnotationClassLoader
|
||||||
{
|
{
|
||||||
private $aliasClass = 'BeSimple\SoapBundle\ServiceDefinition\Annotation\Alias';
|
private $aliasClass = 'BeSimple\SoapBundle\ServiceDefinition\Annotation\Alias';
|
||||||
private $complexTypeClass = 'BeSimple\SoapBundle\ServiceDefinition\Annotation\ComplexType';
|
private $complexTypeClass = 'BeSimple\SoapBundle\ServiceDefinition\Annotation\ComplexType';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -43,7 +43,7 @@ class AnnotationComplexTypeLoader extends AnnotationClassLoader
|
|||||||
throw new \InvalidArgumentException(sprintf('Class "%s" does not exist.', $class));
|
throw new \InvalidArgumentException(sprintf('Class "%s" does not exist.', $class));
|
||||||
}
|
}
|
||||||
|
|
||||||
$annotations = [];
|
$annotations = array();
|
||||||
|
|
||||||
$class = new \ReflectionClass($class);
|
$class = new \ReflectionClass($class);
|
||||||
if ($alias = $this->reader->getClassAnnotation($class, $this->aliasClass)) {
|
if ($alias = $this->reader->getClassAnnotation($class, $this->aliasClass)) {
|
||||||
@ -59,7 +59,6 @@ class AnnotationComplexTypeLoader extends AnnotationClassLoader
|
|||||||
$propertyComplexType->setValue($complexType->getValue());
|
$propertyComplexType->setValue($complexType->getValue());
|
||||||
$propertyComplexType->setNillable($complexType->isNillable());
|
$propertyComplexType->setNillable($complexType->isNillable());
|
||||||
$propertyComplexType->setName($property->getName());
|
$propertyComplexType->setName($property->getName());
|
||||||
$propertyComplexType->setMinOccurs($complexType->getMinOccurs());
|
|
||||||
$annotations['properties']->add($propertyComplexType);
|
$annotations['properties']->add($propertyComplexType);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -73,7 +72,7 @@ class AnnotationComplexTypeLoader extends AnnotationClassLoader
|
|||||||
* @param mixed $resource A resource
|
* @param mixed $resource A resource
|
||||||
* @param string $type The resource type
|
* @param string $type The resource type
|
||||||
*
|
*
|
||||||
* @return bool True if this class supports the given resource, false otherwise
|
* @return Boolean True if this class supports the given resource, false otherwise
|
||||||
*/
|
*/
|
||||||
public function supports($resource, $type = null)
|
public function supports($resource, $type = null)
|
||||||
{
|
{
|
||||||
|
@ -12,7 +12,7 @@ namespace BeSimple\SoapBundle\Soap;
|
|||||||
|
|
||||||
use BeSimple\SoapBundle\Util\Collection;
|
use BeSimple\SoapBundle\Util\Collection;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use Laminas\Mime\Message;
|
use Zend\Mime\Message;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SoapRequest.
|
* SoapRequest.
|
||||||
@ -69,7 +69,7 @@ class SoapRequest extends Request
|
|||||||
*/
|
*/
|
||||||
public function getSoapMessage()
|
public function getSoapMessage()
|
||||||
{
|
{
|
||||||
if (null === $this->soapMessage) {
|
if(null === $this->soapMessage) {
|
||||||
$this->soapMessage = $this->initializeSoapMessage();
|
$this->soapMessage = $this->initializeSoapMessage();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -88,12 +88,12 @@ class SoapRequest extends Request
|
|||||||
|
|
||||||
protected function initializeSoapMessage()
|
protected function initializeSoapMessage()
|
||||||
{
|
{
|
||||||
if ($this->server->has('CONTENT_TYPE')) {
|
if($this->server->has('CONTENT_TYPE')) {
|
||||||
$type = $this->splitContentTypeHeader($this->server->get('CONTENT_TYPE'));
|
$type = $this->splitContentTypeHeader($this->server->get('CONTENT_TYPE'));
|
||||||
|
|
||||||
switch ($type['_type']) {
|
switch($type['_type']) {
|
||||||
case 'multipart/related':
|
case 'multipart/related':
|
||||||
if ($type['type'] == 'application/xop+xml') {
|
if($type['type'] == 'application/xop+xml') {
|
||||||
return $this->initializeMtomSoapMessage($type, $this->getContent());
|
return $this->initializeMtomSoapMessage($type, $this->getContent());
|
||||||
} else {
|
} else {
|
||||||
//log error
|
//log error
|
||||||
@ -114,7 +114,7 @@ class SoapRequest extends Request
|
|||||||
|
|
||||||
protected function initializeMtomSoapMessage(array $contentTypeHeader, $content)
|
protected function initializeMtomSoapMessage(array $contentTypeHeader, $content)
|
||||||
{
|
{
|
||||||
if (!isset($contentTypeHeader['start']) || !isset($contentTypeHeader['start-info']) || !isset($contentTypeHeader['boundary'])) {
|
if(!isset($contentTypeHeader['start']) || !isset($contentTypeHeader['start-info']) || !isset($contentTypeHeader['boundary'])) {
|
||||||
throw new \InvalidArgumentException();
|
throw new \InvalidArgumentException();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -129,11 +129,11 @@ class SoapRequest extends Request
|
|||||||
|
|
||||||
// TODO: add more checks to achieve full compatibility to MTOM spec
|
// TODO: add more checks to achieve full compatibility to MTOM spec
|
||||||
// http://www.w3.org/TR/soap12-mtom/
|
// http://www.w3.org/TR/soap12-mtom/
|
||||||
if ($rootPart->id != $soapMimePartId || $rootPartType['_type'] != 'application/xop+xml' || $rootPartType['type'] != $soapMimePartType) {
|
if($rootPart->id != $soapMimePartId || $rootPartType['_type'] != 'application/xop+xml' || $rootPartType['type'] != $soapMimePartType) {
|
||||||
throw new \InvalidArgumentException();
|
throw new \InvalidArgumentException();
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($mimeParts as $mimePart) {
|
foreach($mimeParts as $mimePart) {
|
||||||
$this->soapAttachments->add(new SoapAttachment(
|
$this->soapAttachments->add(new SoapAttachment(
|
||||||
$mimePart->id,
|
$mimePart->id,
|
||||||
$mimePart->type,
|
$mimePart->type,
|
||||||
@ -153,7 +153,7 @@ class SoapRequest extends Request
|
|||||||
|
|
||||||
$result['_type'] = array_shift($parts);
|
$result['_type'] = array_shift($parts);
|
||||||
|
|
||||||
foreach ($parts as $part) {
|
foreach($parts as $part) {
|
||||||
list($key, $value) = explode('=', trim($part), 2);
|
list($key, $value) = explode('=', trim($part), 2);
|
||||||
|
|
||||||
$result[$key] = trim($value, '"');
|
$result[$key] = trim($value, '"');
|
||||||
|
@ -21,7 +21,7 @@ class Assert
|
|||||||
|
|
||||||
public static function thatArgument($name, $condition, $message = self::ARGUMENT_INVALID)
|
public static function thatArgument($name, $condition, $message = self::ARGUMENT_INVALID)
|
||||||
{
|
{
|
||||||
if (!$condition) {
|
if(!$condition) {
|
||||||
throw new \InvalidArgumentException(sprintf($message, $name));
|
throw new \InvalidArgumentException(sprintf($message, $name));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -62,4 +62,4 @@ class Collection implements \IteratorAggregate, \Countable
|
|||||||
{
|
{
|
||||||
return new \ArrayIterator($this->elements);
|
return new \ArrayIterator($this->elements);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -15,7 +15,7 @@ namespace BeSimple\SoapBundle\Util;
|
|||||||
*
|
*
|
||||||
* @author Christian Kerl <christian-kerl@web.de>
|
* @author Christian Kerl <christian-kerl@web.de>
|
||||||
*/
|
*/
|
||||||
class BsString
|
class String
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Checks if a string starts with a given string.
|
* Checks if a string starts with a given string.
|
||||||
@ -27,7 +27,7 @@ class BsString
|
|||||||
*/
|
*/
|
||||||
public static function startsWith($str, $substr)
|
public static function startsWith($str, $substr)
|
||||||
{
|
{
|
||||||
if (is_string($str) && is_string($substr) && strlen($str) >= strlen($substr)) {
|
if(is_string($str) && is_string($substr) && strlen($str) >= strlen($substr)) {
|
||||||
return $substr == substr($str, 0, strlen($substr));
|
return $substr == substr($str, 0, strlen($substr));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -42,8 +42,8 @@ class BsString
|
|||||||
*/
|
*/
|
||||||
public static function endsWith($str, $substr)
|
public static function endsWith($str, $substr)
|
||||||
{
|
{
|
||||||
if (is_string($str) && is_string($substr) && strlen($str) >= strlen($substr)) {
|
if(is_string($str) && is_string($substr) && strlen($str) >= strlen($substr)) {
|
||||||
return $substr == substr($str, strlen($str) - strlen($substr));
|
return $substr == substr($str, strlen($str) - strlen($substr));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -44,7 +44,7 @@ class WebServiceContext
|
|||||||
if (null === $this->serviceDefinition) {
|
if (null === $this->serviceDefinition) {
|
||||||
$cache = new ConfigCache(sprintf('%s/%s.definition.php', $this->options['cache_dir'], $this->options['name']), $this->options['debug']);
|
$cache = new ConfigCache(sprintf('%s/%s.definition.php', $this->options['cache_dir'], $this->options['name']), $this->options['debug']);
|
||||||
if ($cache->isFresh()) {
|
if ($cache->isFresh()) {
|
||||||
$this->serviceDefinition = include $cache->getPath();
|
$this->serviceDefinition = include (string) $cache;
|
||||||
} else {
|
} else {
|
||||||
if (!$this->loader->supports($this->options['resource'], $this->options['resource_type'])) {
|
if (!$this->loader->supports($this->options['resource'], $this->options['resource_type'])) {
|
||||||
throw new \LogicException(sprintf('Cannot load "%s" (%s)', $this->options['resource'], $this->options['resource_type']));
|
throw new \LogicException(sprintf('Cannot load "%s" (%s)', $this->options['resource'], $this->options['resource_type']));
|
||||||
@ -68,10 +68,10 @@ class WebServiceContext
|
|||||||
|
|
||||||
public function getWsdlFile($endpoint = null)
|
public function getWsdlFile($endpoint = null)
|
||||||
{
|
{
|
||||||
$file = sprintf('%s/%s.%s.wsdl', $this->options['cache_dir'], $this->options['name'], md5($endpoint));
|
$file = sprintf ('%s/%s.%s.wsdl', $this->options['cache_dir'], $this->options['name'], md5($endpoint));
|
||||||
$cache = new ConfigCache($file, $this->options['debug']);
|
$cache = new ConfigCache($file, $this->options['debug']);
|
||||||
|
|
||||||
if (!$cache->isFresh()) {
|
if(!$cache->isFresh()) {
|
||||||
$definition = $this->getServiceDefinition();
|
$definition = $this->getServiceDefinition();
|
||||||
|
|
||||||
if ($endpoint) {
|
if ($endpoint) {
|
||||||
@ -82,7 +82,7 @@ class WebServiceContext
|
|||||||
$cache->write($dumper->dump());
|
$cache->write($dumper->dump());
|
||||||
}
|
}
|
||||||
|
|
||||||
return $cache->getPath();
|
return (string) $cache;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getServiceBinder()
|
public function getServiceBinder()
|
||||||
|
@ -25,8 +25,8 @@
|
|||||||
"besimple/soap-common": "0.2.*",
|
"besimple/soap-common": "0.2.*",
|
||||||
"besimple/soap-wsdl": "0.2.*",
|
"besimple/soap-wsdl": "0.2.*",
|
||||||
"ass/xmlsecurity": "~1.0",
|
"ass/xmlsecurity": "~1.0",
|
||||||
"symfony/framework-bundle": "~2.0|~3.0",
|
"symfony/framework-bundle": "~2.0",
|
||||||
"symfony/twig-bundle": "~2.0|~3.0",
|
"symfony/twig-bundle": "~2.0",
|
||||||
"zendframework/zend-mime": "2.1.*"
|
"zendframework/zend-mime": "2.1.*"
|
||||||
},
|
},
|
||||||
"suggest": {
|
"suggest": {
|
||||||
|
@ -77,8 +77,9 @@ class Curl
|
|||||||
if (isset($options['compression']) && !($options['compression'] & SOAP_COMPRESSION_ACCEPT)) {
|
if (isset($options['compression']) && !($options['compression'] & SOAP_COMPRESSION_ACCEPT)) {
|
||||||
curl_setopt($this->ch, CURLOPT_ENCODING, 'identity');
|
curl_setopt($this->ch, CURLOPT_ENCODING, 'identity');
|
||||||
}
|
}
|
||||||
|
if (isset($options['connection_timeout'])) {
|
||||||
curl_setopt($this->ch, CURLOPT_CONNECTTIMEOUT, 10);
|
curl_setopt($this->ch, CURLOPT_CONNECTTIMEOUT, $options['connection_timeout']);
|
||||||
|
}
|
||||||
|
|
||||||
if (isset($options['proxy_host'])) {
|
if (isset($options['proxy_host'])) {
|
||||||
if (false !== $options['proxy_host']) {
|
if (false !== $options['proxy_host']) {
|
||||||
@ -166,6 +167,7 @@ class Curl
|
|||||||
private function execManualRedirect($redirects = 0)
|
private function execManualRedirect($redirects = 0)
|
||||||
{
|
{
|
||||||
if ($redirects > $this->followLocationMaxRedirects) {
|
if ($redirects > $this->followLocationMaxRedirects) {
|
||||||
|
|
||||||
// TODO Redirection limit reached, aborting
|
// TODO Redirection limit reached, aborting
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -191,7 +193,7 @@ class Curl
|
|||||||
if (!isset($url['path'])) {
|
if (!isset($url['path'])) {
|
||||||
$url['path'] = $lastUrl['path'];
|
$url['path'] = $lastUrl['path'];
|
||||||
}
|
}
|
||||||
$newUrl = $url['scheme'].'://'.$url['host'].$url['path'].($url['query'] ? '?'.$url['query'] : '');
|
$newUrl = $url['scheme'] . '://' . $url['host'] . $url['path'] . ($url['query'] ? '?' . $url['query'] : '');
|
||||||
curl_setopt($this->ch, CURLOPT_URL, $newUrl);
|
curl_setopt($this->ch, CURLOPT_URL, $newUrl);
|
||||||
|
|
||||||
return $this->execManualRedirect($redirects++);
|
return $this->execManualRedirect($redirects++);
|
||||||
@ -203,7 +205,7 @@ class Curl
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Error code mapping from cURL error codes to PHP ext/soap error messages
|
* Error code mapping from cURL error codes to PHP ext/soap error messages
|
||||||
* (where applicable).
|
* (where applicable)
|
||||||
*
|
*
|
||||||
* http://curl.haxx.se/libcurl/c/libcurl-errors.html
|
* http://curl.haxx.se/libcurl/c/libcurl-errors.html
|
||||||
*
|
*
|
||||||
@ -249,6 +251,7 @@ class Curl
|
|||||||
$errorCodeMapping = $this->getErrorCodeMapping();
|
$errorCodeMapping = $this->getErrorCodeMapping();
|
||||||
$errorNumber = curl_errno($this->ch);
|
$errorNumber = curl_errno($this->ch);
|
||||||
if (isset($errorCodeMapping[$errorNumber])) {
|
if (isset($errorCodeMapping[$errorNumber])) {
|
||||||
|
|
||||||
return $errorCodeMapping[$errorNumber];
|
return $errorCodeMapping[$errorNumber];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -338,10 +338,10 @@ class SoapClient extends \SoapClient
|
|||||||
$options['typemap'][] = array(
|
$options['typemap'][] = array(
|
||||||
'type_name' => $converter->getTypeName(),
|
'type_name' => $converter->getTypeName(),
|
||||||
'type_ns' => $converter->getTypeNamespace(),
|
'type_ns' => $converter->getTypeNamespace(),
|
||||||
'from_xml' => function ($input) use ($converter) {
|
'from_xml' => function($input) use ($converter) {
|
||||||
return $converter->convertXmlToPhp($input);
|
return $converter->convertXmlToPhp($input);
|
||||||
},
|
},
|
||||||
'to_xml' => function ($input) use ($converter) {
|
'to_xml' => function($input) use ($converter) {
|
||||||
return $converter->convertPhpToXml($input);
|
return $converter->convertPhpToXml($input);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
@ -380,4 +380,4 @@ class SoapClient extends \SoapClient
|
|||||||
|
|
||||||
return $cacheFileName;
|
return $cacheFileName;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -45,4 +45,4 @@ class SoapRequest extends CommonSoapRequest
|
|||||||
|
|
||||||
return $request;
|
return $request;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -23,7 +23,8 @@ abstract class AbstractWebServerTest extends \PHPUnit_Framework_TestCase
|
|||||||
/**
|
/**
|
||||||
* @var ProcessBuilder
|
* @var ProcessBuilder
|
||||||
*/
|
*/
|
||||||
protected static $webserver;
|
static protected $webserver;
|
||||||
|
static protected $websererPortLength;
|
||||||
|
|
||||||
public static function setUpBeforeClass()
|
public static function setUpBeforeClass()
|
||||||
{
|
{
|
||||||
@ -43,6 +44,8 @@ abstract class AbstractWebServerTest extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
self::$webserver->start();
|
self::$webserver->start();
|
||||||
usleep(100000);
|
usleep(100000);
|
||||||
|
|
||||||
|
self::$websererPortLength = strlen(WEBSERVER_PORT);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function tearDownAfterClass()
|
public static function tearDownAfterClass()
|
||||||
|
@ -4,4 +4,4 @@ namespace BeSimple\SoapClient\Tests\AxisInterop\Fixtures;
|
|||||||
|
|
||||||
class AttachmentRequest extends AttachmentType
|
class AttachmentRequest extends AttachmentType
|
||||||
{
|
{
|
||||||
}
|
}
|
@ -6,4 +6,4 @@ class AttachmentType
|
|||||||
{
|
{
|
||||||
public $fileName;
|
public $fileName;
|
||||||
public $binaryData;
|
public $binaryData;
|
||||||
}
|
}
|
@ -20,4 +20,4 @@ class TestCase extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -74,7 +74,7 @@ class WsSecurityUserPassAxisInteropTest extends TestCase
|
|||||||
$sc = new BeSimpleSoapClient(__DIR__.'/Fixtures/WsSecurityUserPass.wsdl', $this->options);
|
$sc = new BeSimpleSoapClient(__DIR__.'/Fixtures/WsSecurityUserPass.wsdl', $this->options);
|
||||||
|
|
||||||
$wssFilter = new BeSimpleWsSecurityFilter(true, 600);
|
$wssFilter = new BeSimpleWsSecurityFilter(true, 600);
|
||||||
$wssFilter->addUserData('libuser', 'books', BeSimpleWsSecurityFilter::PASSWORD_TYPE_DIGEST);
|
$wssFilter->addUserData( 'libuser', 'books', BeSimpleWsSecurityFilter::PASSWORD_TYPE_DIGEST );
|
||||||
|
|
||||||
$soapKernel = $sc->getSoapKernel();
|
$soapKernel = $sc->getSoapKernel();
|
||||||
$soapKernel->registerFilter($wssFilter);
|
$soapKernel->registerFilter($wssFilter);
|
||||||
|
@ -45,6 +45,19 @@ class CurlTest extends AbstractWebserverTest
|
|||||||
$this->assertEquals('Unable to parse URL', $curl->getErrorMessage());
|
$this->assertEquals('Unable to parse URL', $curl->getErrorMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testGetRequestHeaders()
|
||||||
|
{
|
||||||
|
$curl = new Curl(array(
|
||||||
|
'proxy_host' => false,
|
||||||
|
));
|
||||||
|
|
||||||
|
$curl->exec(sprintf('http://localhost:%d/curl.txt', WEBSERVER_PORT));
|
||||||
|
$this->assertEquals(132 + self::$websererPortLength, strlen($curl->getRequestHeaders()));
|
||||||
|
|
||||||
|
$curl->exec(sprintf('http://localhost:%s/404.txt', WEBSERVER_PORT));
|
||||||
|
$this->assertEquals(131 + self::$websererPortLength, strlen($curl->getRequestHeaders()));
|
||||||
|
}
|
||||||
|
|
||||||
public function testGetResponse()
|
public function testGetResponse()
|
||||||
{
|
{
|
||||||
$curl = new Curl(array(
|
$curl = new Curl(array(
|
||||||
@ -53,6 +66,7 @@ class CurlTest extends AbstractWebserverTest
|
|||||||
|
|
||||||
$curl->exec(sprintf('http://localhost:%d/curl.txt', WEBSERVER_PORT));
|
$curl->exec(sprintf('http://localhost:%d/curl.txt', WEBSERVER_PORT));
|
||||||
$this->assertSame('OK', $curl->getResponseStatusMessage());
|
$this->assertSame('OK', $curl->getResponseStatusMessage());
|
||||||
|
$this->assertEquals(145 + self::$websererPortLength, strlen($curl->getResponse()));
|
||||||
|
|
||||||
$curl->exec(sprintf('http://localhost:%d/404.txt', WEBSERVER_PORT));
|
$curl->exec(sprintf('http://localhost:%d/404.txt', WEBSERVER_PORT));
|
||||||
$this->assertSame('Not Found', $curl->getResponseStatusMessage());
|
$this->assertSame('Not Found', $curl->getResponseStatusMessage());
|
||||||
@ -81,6 +95,19 @@ class CurlTest extends AbstractWebserverTest
|
|||||||
$this->assertEquals('text/html; charset=UTF-8', $curl->getResponseContentType());
|
$this->assertEquals('text/html; charset=UTF-8', $curl->getResponseContentType());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testGetResponseHeaders()
|
||||||
|
{
|
||||||
|
$curl = new Curl(array(
|
||||||
|
'proxy_host' => false,
|
||||||
|
));
|
||||||
|
|
||||||
|
$curl->exec(sprintf('http://localhost:%d/curl.txt', WEBSERVER_PORT));
|
||||||
|
$this->assertEquals(117 + self::$websererPortLength, strlen($curl->getResponseHeaders()));
|
||||||
|
|
||||||
|
$curl->exec(sprintf('http://localhost:%d/404.txt', WEBSERVER_PORT));
|
||||||
|
$this->assertEquals(124 + self::$websererPortLength, strlen($curl->getResponseHeaders()));
|
||||||
|
}
|
||||||
|
|
||||||
public function testGetResponseStatusCode()
|
public function testGetResponseStatusCode()
|
||||||
{
|
{
|
||||||
$curl = new Curl(array(
|
$curl = new Curl(array(
|
||||||
|
@ -4,4 +4,4 @@ namespace BeSimple\SoapClient\Tests\ServerInterop\Fixtures;
|
|||||||
|
|
||||||
class AttachmentRequest extends AttachmentType
|
class AttachmentRequest extends AttachmentType
|
||||||
{
|
{
|
||||||
}
|
}
|
@ -6,4 +6,4 @@ class AttachmentType
|
|||||||
{
|
{
|
||||||
public $fileName;
|
public $fileName;
|
||||||
public $binaryData;
|
public $binaryData;
|
||||||
}
|
}
|
@ -36,6 +36,7 @@ try {
|
|||||||
$attachment->binaryData = $b64;
|
$attachment->binaryData = $b64;
|
||||||
|
|
||||||
var_dump($sc->attachment($attachment));
|
var_dump($sc->attachment($attachment));
|
||||||
|
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
var_dump($e);
|
var_dump($e);
|
||||||
}
|
}
|
||||||
@ -45,4 +46,4 @@ try {
|
|||||||
// $sc->__getLastRequest(),
|
// $sc->__getLastRequest(),
|
||||||
// $sc->__getLastResponseHeaders(),
|
// $sc->__getLastResponseHeaders(),
|
||||||
// $sc->__getLastResponse()
|
// $sc->__getLastResponse()
|
||||||
// );
|
// );
|
@ -29,6 +29,7 @@ $options = array(
|
|||||||
$sc = new BeSimpleSoapClient(__DIR__.'/Fixtures/SwA.wsdl', $options);
|
$sc = new BeSimpleSoapClient(__DIR__.'/Fixtures/SwA.wsdl', $options);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
$upload = new uploadFile();
|
$upload = new uploadFile();
|
||||||
$upload->name = 'upload.txt';
|
$upload->name = 'upload.txt';
|
||||||
$upload->data = 'This is a test. :)';
|
$upload->data = 'This is a test. :)';
|
||||||
@ -48,4 +49,4 @@ try {
|
|||||||
// $sc->__getLastRequest(),
|
// $sc->__getLastRequest(),
|
||||||
// $sc->__getLastResponseHeaders(),
|
// $sc->__getLastResponseHeaders(),
|
||||||
// $sc->__getLastResponse()
|
// $sc->__getLastResponse()
|
||||||
// );
|
// );
|
@ -26,4 +26,4 @@ class TestCase extends \PHPUnit_Framework_TestCase
|
|||||||
|
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -69,6 +69,7 @@ try {
|
|||||||
$ab->type = 'scifi';
|
$ab->type = 'scifi';
|
||||||
|
|
||||||
var_dump($sc->addBook($ab));
|
var_dump($sc->addBook($ab));
|
||||||
|
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
var_dump($e);
|
var_dump($e);
|
||||||
}
|
}
|
||||||
|
@ -54,6 +54,7 @@ try {
|
|||||||
$ab->type = 'scifi';
|
$ab->type = 'scifi';
|
||||||
|
|
||||||
var_dump($sc->addBook($ab));
|
var_dump($sc->addBook($ab));
|
||||||
|
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
var_dump($e);
|
var_dump($e);
|
||||||
}
|
}
|
||||||
|
@ -63,7 +63,7 @@ class WsSecurityUserPassServerInteropTest extends TestCase
|
|||||||
$sc = new BeSimpleSoapClient(__DIR__.'/Fixtures/WsSecurityUserPass.wsdl', $this->options);
|
$sc = new BeSimpleSoapClient(__DIR__.'/Fixtures/WsSecurityUserPass.wsdl', $this->options);
|
||||||
|
|
||||||
$wssFilter = new BeSimpleWsSecurityFilter(true, 600);
|
$wssFilter = new BeSimpleWsSecurityFilter(true, 600);
|
||||||
$wssFilter->addUserData('libuser', 'books', BeSimpleWsSecurityFilter::PASSWORD_TYPE_DIGEST);
|
$wssFilter->addUserData( 'libuser', 'books', BeSimpleWsSecurityFilter::PASSWORD_TYPE_DIGEST );
|
||||||
|
|
||||||
$soapKernel = $sc->getSoapKernel();
|
$soapKernel = $sc->getSoapKernel();
|
||||||
$soapKernel->registerFilter($wssFilter);
|
$soapKernel->registerFilter($wssFilter);
|
||||||
|
@ -25,9 +25,9 @@ use org\bovigo\vfs\vfsStreamWrapper;
|
|||||||
*/
|
*/
|
||||||
class WsdlDownloaderTest extends AbstractWebserverTest
|
class WsdlDownloaderTest extends AbstractWebserverTest
|
||||||
{
|
{
|
||||||
protected static $filesystem;
|
static protected $filesystem;
|
||||||
|
|
||||||
protected static $fixturesPath;
|
static protected $fixturesPath;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider provideDownload
|
* @dataProvider provideDownload
|
||||||
|
@ -157,6 +157,7 @@ class WsAddressingFilter implements SoapRequestFilter, SoapResponseFilter
|
|||||||
public function getReferenceParameter($ns, $parameter)
|
public function getReferenceParameter($ns, $parameter)
|
||||||
{
|
{
|
||||||
if (isset($this->referenceParametersRecieved[$ns][$parameter])) {
|
if (isset($this->referenceParametersRecieved[$ns][$parameter])) {
|
||||||
|
|
||||||
return $this->referenceParametersRecieved[$ns][$parameter];
|
return $this->referenceParametersRecieved[$ns][$parameter];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -343,4 +344,4 @@ class WsAddressingFilter implements SoapRequestFilter, SoapResponseFilter
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -151,6 +151,7 @@ class WsSecurityFilter extends WsSecurityFilterClientServer implements SoapReque
|
|||||||
if (null !== $this->password
|
if (null !== $this->password
|
||||||
&& (null === $this->userSecurityKey
|
&& (null === $this->userSecurityKey
|
||||||
|| (null !== $this->userSecurityKey && !$this->userSecurityKey->hasPrivateKey()))) {
|
|| (null !== $this->userSecurityKey && !$this->userSecurityKey->hasPrivateKey()))) {
|
||||||
|
|
||||||
if (self::PASSWORD_TYPE_DIGEST === $this->passwordType) {
|
if (self::PASSWORD_TYPE_DIGEST === $this->passwordType) {
|
||||||
$nonce = mt_rand();
|
$nonce = mt_rand();
|
||||||
$password = base64_encode(sha1($nonce . $createdTimestamp . $this->password, true));
|
$password = base64_encode(sha1($nonce . $createdTimestamp . $this->password, true));
|
||||||
|
@ -56,7 +56,7 @@ class WsdlDownloader
|
|||||||
/**
|
/**
|
||||||
* Resolve WSDl/XSD includes.
|
* Resolve WSDl/XSD includes.
|
||||||
*
|
*
|
||||||
* @var bool
|
* @var boolean
|
||||||
*/
|
*/
|
||||||
protected $resolveRemoteIncludes = true;
|
protected $resolveRemoteIncludes = true;
|
||||||
|
|
||||||
@ -64,13 +64,13 @@ class WsdlDownloader
|
|||||||
* Constructor.
|
* Constructor.
|
||||||
*
|
*
|
||||||
* @param \BeSimple\SoapClient\Curl $curl Curl instance
|
* @param \BeSimple\SoapClient\Curl $curl Curl instance
|
||||||
* @param bool $resolveRemoteIncludes WSDL/XSD include enabled?
|
* @param boolean $resolveRemoteIncludes WSDL/XSD include enabled?
|
||||||
* @param bool $cacheWsdl Cache constant
|
* @param boolean $cacheWsdl Cache constant
|
||||||
*/
|
*/
|
||||||
public function __construct(Curl $curl, $resolveRemoteIncludes = true, $cacheWsdl = Cache::TYPE_DISK)
|
public function __construct(Curl $curl, $resolveRemoteIncludes = true, $cacheWsdl = Cache::TYPE_DISK)
|
||||||
{
|
{
|
||||||
$this->curl = $curl;
|
$this->curl = $curl;
|
||||||
$this->resolveRemoteIncludes = (bool) $resolveRemoteIncludes;
|
$this->resolveRemoteIncludes = (Boolean) $resolveRemoteIncludes;
|
||||||
|
|
||||||
// get current WSDL caching config
|
// get current WSDL caching config
|
||||||
$this->cacheEnabled = $cacheWsdl === Cache::TYPE_NONE ? Cache::DISABLED : Cache::ENABLED == Cache::isEnabled();
|
$this->cacheEnabled = $cacheWsdl === Cache::TYPE_NONE ? Cache::DISABLED : Cache::ENABLED == Cache::isEnabled();
|
||||||
@ -101,33 +101,19 @@ class WsdlDownloader
|
|||||||
if ($responseSuccessfull) {
|
if ($responseSuccessfull) {
|
||||||
$response = $this->curl->getResponseBody();
|
$response = $this->curl->getResponseBody();
|
||||||
|
|
||||||
libxml_use_internal_errors(true);
|
|
||||||
|
|
||||||
$doc = simplexml_load_string($response);
|
|
||||||
|
|
||||||
if (!$doc) {
|
|
||||||
$errors = libxml_get_errors();
|
|
||||||
|
|
||||||
if (count($errors)) {
|
|
||||||
throw new \Exception('There is something wrong with the WSDL file formatting. The file can\'t be downloaded to be cached.');
|
|
||||||
}
|
|
||||||
|
|
||||||
libxml_clear_errors();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->resolveRemoteIncludes) {
|
if ($this->resolveRemoteIncludes) {
|
||||||
$this->resolveRemoteIncludes($response, $cacheFilePath, $wsdl);
|
$this->resolveRemoteIncludes($response, $cacheFilePath, $wsdl);
|
||||||
} else {
|
} else {
|
||||||
file_put_contents($cacheFilePath, $response);
|
file_put_contents($cacheFilePath, $response);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new \ErrorException("SOAP-ERROR: Parsing WSDL: Couldn't load from '".$wsdl."'");
|
throw new \ErrorException("SOAP-ERROR: Parsing WSDL: Couldn't load from '" . $wsdl ."'");
|
||||||
}
|
}
|
||||||
} elseif (file_exists($wsdl)) {
|
} elseif (file_exists($wsdl)) {
|
||||||
$response = file_get_contents($wsdl);
|
$response = file_get_contents($wsdl);
|
||||||
$this->resolveRemoteIncludes($response, $cacheFilePath);
|
$this->resolveRemoteIncludes($response, $cacheFilePath);
|
||||||
} else {
|
} else {
|
||||||
throw new \ErrorException("SOAP-ERROR: Parsing WSDL: Couldn't load from '".$wsdl."'");
|
throw new \ErrorException("SOAP-ERROR: Parsing WSDL: Couldn't load from '" . $wsdl ."'");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -136,7 +122,7 @@ class WsdlDownloader
|
|||||||
return realpath($wsdl);
|
return realpath($wsdl);
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new \ErrorException("SOAP-ERROR: Parsing WSDL: Couldn't load from '".$wsdl."'");
|
throw new \ErrorException("SOAP-ERROR: Parsing WSDL: Couldn't load from '" . $wsdl ."'");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -144,7 +130,7 @@ class WsdlDownloader
|
|||||||
*
|
*
|
||||||
* @param string $file File URL/path
|
* @param string $file File URL/path
|
||||||
*
|
*
|
||||||
* @return bool
|
* @return boolean
|
||||||
*/
|
*/
|
||||||
private function isRemoteFile($file)
|
private function isRemoteFile($file)
|
||||||
{
|
{
|
||||||
@ -161,9 +147,11 @@ class WsdlDownloader
|
|||||||
/**
|
/**
|
||||||
* Resolves remote WSDL/XSD includes within the WSDL files.
|
* Resolves remote WSDL/XSD includes within the WSDL files.
|
||||||
*
|
*
|
||||||
* @param string $xml XML file
|
* @param string $xml XML file
|
||||||
* @param string $cacheFilePath Cache file name
|
* @param string $cacheFilePath Cache file name
|
||||||
* @param bool $parentFilePath Parent file name
|
* @param boolean $parentFilePath Parent file name
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
private function resolveRemoteIncludes($xml, $cacheFilePath, $parentFilePath = null)
|
private function resolveRemoteIncludes($xml, $cacheFilePath, $parentFilePath = null)
|
||||||
{
|
{
|
||||||
@ -226,10 +214,10 @@ class WsdlDownloader
|
|||||||
$urlParts = parse_url($base);
|
$urlParts = parse_url($base);
|
||||||
|
|
||||||
// combine base path with relative path
|
// combine base path with relative path
|
||||||
if (isset($urlParts['path']) && '/' === $relative[0]) {
|
if (isset($urlParts['path']) && '/' === $relative{0}) {
|
||||||
// $relative is absolute path from domain (starts with /)
|
// $relative is absolute path from domain (starts with /)
|
||||||
$path = $relative;
|
$path = $relative;
|
||||||
} elseif (isset($urlParts['path']) && strrpos($urlParts['path'], '/') === (strlen($urlParts['path']))) {
|
} elseif (isset($urlParts['path']) && strrpos($urlParts['path'], '/') === (strlen($urlParts['path']) )) {
|
||||||
// base path is directory
|
// base path is directory
|
||||||
$path = $urlParts['path'].$relative;
|
$path = $urlParts['path'].$relative;
|
||||||
} elseif (isset($urlParts['path'])) {
|
} elseif (isset($urlParts['path'])) {
|
||||||
@ -259,7 +247,7 @@ class WsdlDownloader
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
--$keyToDelete;
|
$keyToDelete--;
|
||||||
}
|
}
|
||||||
|
|
||||||
unset($parts[$key]);
|
unset($parts[$key]);
|
||||||
|
@ -65,5 +65,6 @@ class XmlMimeFilter implements SoapRequestFilter
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,7 @@ abstract class AbstractSoapBuilder
|
|||||||
/**
|
/**
|
||||||
* @return AbstractSoapBuilder
|
* @return AbstractSoapBuilder
|
||||||
*/
|
*/
|
||||||
public static function createWithDefaults()
|
static public function createWithDefaults()
|
||||||
{
|
{
|
||||||
$builder = new static();
|
$builder = new static();
|
||||||
|
|
||||||
|
@ -25,24 +25,24 @@ class Cache
|
|||||||
const TYPE_MEMORY = WSDL_CACHE_MEMORY;
|
const TYPE_MEMORY = WSDL_CACHE_MEMORY;
|
||||||
const TYPE_DISK_MEMORY = WSDL_CACHE_BOTH;
|
const TYPE_DISK_MEMORY = WSDL_CACHE_BOTH;
|
||||||
|
|
||||||
protected static $types = array(
|
static protected $types = array(
|
||||||
self::TYPE_NONE,
|
self::TYPE_NONE,
|
||||||
self::TYPE_DISK,
|
self::TYPE_DISK,
|
||||||
self::TYPE_MEMORY,
|
self::TYPE_MEMORY,
|
||||||
self::TYPE_DISK_MEMORY,
|
self::TYPE_DISK_MEMORY,
|
||||||
);
|
);
|
||||||
|
|
||||||
public static function getTypes()
|
static public function getTypes()
|
||||||
{
|
{
|
||||||
return self::$types;
|
return self::$types;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function isEnabled()
|
static public function isEnabled()
|
||||||
{
|
{
|
||||||
return self::iniGet('soap.wsdl_cache_enabled');
|
return self::iniGet('soap.wsdl_cache_enabled');
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function setEnabled($enabled)
|
static public function setEnabled($enabled)
|
||||||
{
|
{
|
||||||
if (!in_array($enabled, array(self::ENABLED, self::DISABLED), true)) {
|
if (!in_array($enabled, array(self::ENABLED, self::DISABLED), true)) {
|
||||||
throw new \InvalidArgumentException();
|
throw new \InvalidArgumentException();
|
||||||
@ -51,12 +51,12 @@ class Cache
|
|||||||
self::iniSet('soap.wsdl_cache_enabled', $enabled);
|
self::iniSet('soap.wsdl_cache_enabled', $enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getType()
|
static public function getType()
|
||||||
{
|
{
|
||||||
return self::iniGet('soap.wsdl_cache');
|
return self::iniGet('soap.wsdl_cache');
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function setType($type)
|
static public function setType($type)
|
||||||
{
|
{
|
||||||
if (!in_array($type, self::getTypes(), true)) {
|
if (!in_array($type, self::getTypes(), true)) {
|
||||||
throw new \InvalidArgumentException('The cache type has to be either Cache::TYPE_NONE, Cache::TYPE_DISK, Cache::TYPE_MEMORY or Cache::TYPE_DISK_MEMORY');
|
throw new \InvalidArgumentException('The cache type has to be either Cache::TYPE_NONE, Cache::TYPE_DISK, Cache::TYPE_MEMORY or Cache::TYPE_DISK_MEMORY');
|
||||||
@ -65,12 +65,12 @@ class Cache
|
|||||||
self::iniSet('soap.wsdl_cache', $type);
|
self::iniSet('soap.wsdl_cache', $type);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getDirectory()
|
static public function getDirectory()
|
||||||
{
|
{
|
||||||
return self::iniGet('soap.wsdl_cache_dir');
|
return self::iniGet('soap.wsdl_cache_dir');
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function setDirectory($directory)
|
static public function setDirectory($directory)
|
||||||
{
|
{
|
||||||
if (!is_dir($directory)) {
|
if (!is_dir($directory)) {
|
||||||
mkdir($directory, 0777, true);
|
mkdir($directory, 0777, true);
|
||||||
@ -79,33 +79,33 @@ class Cache
|
|||||||
self::iniSet('soap.wsdl_cache_dir', $directory);
|
self::iniSet('soap.wsdl_cache_dir', $directory);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getLifetime()
|
static public function getLifetime()
|
||||||
{
|
{
|
||||||
return self::iniGet('soap.wsdl_cache_ttl');
|
return self::iniGet('soap.wsdl_cache_ttl');
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function setLifetime($lifetime)
|
static public function setLifetime($lifetime)
|
||||||
{
|
{
|
||||||
self::iniSet('soap.wsdl_cache_ttl', $lifetime);
|
self::iniSet('soap.wsdl_cache_ttl', $lifetime);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getLimit()
|
static public function getLimit()
|
||||||
{
|
{
|
||||||
return self::iniGet('soap.wsdl_cache_limit');
|
return self::iniGet('soap.wsdl_cache_limit');
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function setLimit($limit)
|
static public function setLimit($limit)
|
||||||
{
|
{
|
||||||
self::iniSet('soap.wsdl_cache_limit', $limit);
|
self::iniSet('soap.wsdl_cache_limit', $limit);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected static function iniGet($key)
|
static protected function iniGet($key)
|
||||||
{
|
{
|
||||||
return ini_get($key);
|
return ini_get($key);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected static function iniSet($key, $value)
|
static protected function iniSet($key, $value)
|
||||||
{
|
{
|
||||||
ini_set($key, $value);
|
ini_set($key, $value);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -90,4 +90,4 @@ class Classmap
|
|||||||
$this->add($type, $classname);
|
$this->add($type, $classname);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -44,3 +44,4 @@ class DateTimeTypeConverter implements TypeConverterInterface
|
|||||||
return sprintf('<%1$s>%2$s</%1$s>', $this->getTypeName(), $data->format('Y-m-d\TH:i:sP'));
|
return sprintf('<%1$s>%2$s</%1$s>', $this->getTypeName(), $data->format('Y-m-d\TH:i:sP'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -44,3 +44,4 @@ class DateTypeConverter implements TypeConverterInterface
|
|||||||
return sprintf('<%1$s>%2$s</%1$s>', $this->getTypeName(), $data->format('Y-m-d'));
|
return sprintf('<%1$s>%2$s</%1$s>', $this->getTypeName(), $data->format('Y-m-d'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -65,8 +65,10 @@ class MtomTypeConverter implements TypeConverterInterface, SoapKernelAwareInterf
|
|||||||
$contentId = urldecode(substr($ref, 4));
|
$contentId = urldecode(substr($ref, 4));
|
||||||
|
|
||||||
if (null !== ($part = $this->soapKernel->getAttachment($contentId))) {
|
if (null !== ($part = $this->soapKernel->getAttachment($contentId))) {
|
||||||
|
|
||||||
return $part->getContent();
|
return $part->getContent();
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,5 +28,5 @@ interface SoapKernelAwareInterface
|
|||||||
*
|
*
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function setKernel(SoapKernel $soapKernel);
|
function setKernel(SoapKernel $soapKernel);
|
||||||
}
|
}
|
@ -61,8 +61,10 @@ class SwaTypeConverter implements TypeConverterInterface, SoapKernelAwareInterfa
|
|||||||
$contentId = urldecode(substr($ref, 4));
|
$contentId = urldecode(substr($ref, 4));
|
||||||
|
|
||||||
if (null !== ($part = $this->soapKernel->getAttachment($contentId))) {
|
if (null !== ($part = $this->soapKernel->getAttachment($contentId))) {
|
||||||
|
|
||||||
return $part->getContent();
|
return $part->getContent();
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -74,10 +74,10 @@ class TypeConverterCollection
|
|||||||
$typemap[] = array(
|
$typemap[] = array(
|
||||||
'type_name' => $converter->getTypeName(),
|
'type_name' => $converter->getTypeName(),
|
||||||
'type_ns' => $converter->getTypeNamespace(),
|
'type_ns' => $converter->getTypeNamespace(),
|
||||||
'from_xml' => function ($input) use ($converter) {
|
'from_xml' => function($input) use ($converter) {
|
||||||
return $converter->convertXmlToPhp($input);
|
return $converter->convertXmlToPhp($input);
|
||||||
},
|
},
|
||||||
'to_xml' => function ($input) use ($converter) {
|
'to_xml' => function($input) use ($converter) {
|
||||||
return $converter->convertPhpToXml($input);
|
return $converter->convertPhpToXml($input);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
@ -24,14 +24,14 @@ interface TypeConverterInterface
|
|||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function getTypeNamespace();
|
function getTypeNamespace();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get type name.
|
* Get type name.
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function getTypeName();
|
function getTypeName();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert given XML string to PHP type.
|
* Convert given XML string to PHP type.
|
||||||
@ -40,7 +40,7 @@ interface TypeConverterInterface
|
|||||||
*
|
*
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function convertXmlToPhp($data);
|
function convertXmlToPhp($data);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Convert PHP type to XML string.
|
* Convert PHP type to XML string.
|
||||||
@ -49,5 +49,5 @@ interface TypeConverterInterface
|
|||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function convertPhpToXml($data);
|
function convertPhpToXml($data);
|
||||||
}
|
}
|
@ -25,7 +25,7 @@ class Message
|
|||||||
public function __construct($name)
|
public function __construct($name)
|
||||||
{
|
{
|
||||||
$this->name = $name;
|
$this->name = $name;
|
||||||
$this->parts = [];
|
$this->parts = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getName()
|
public function getName()
|
||||||
@ -48,13 +48,13 @@ class Message
|
|||||||
return 0 === count($this->parts) ? true : false;
|
return 0 === count($this->parts) ? true : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function add($name, $phpType, $nillable = false, $minOccurs = 1)
|
public function add($name, $phpType, $nillable = false)
|
||||||
{
|
{
|
||||||
if ($phpType instanceof TypeInterface) {
|
if ($phpType instanceof TypeInterface) {
|
||||||
$phpType = $phpType->getPhpType();
|
$phpType = $phpType->getPhpType();
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->parts[$name] = new Part($name, $phpType, $nillable, $minOccurs);
|
$this->parts[$name] = new Part($name, $phpType, $nillable);
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
@ -12,6 +12,8 @@
|
|||||||
|
|
||||||
namespace BeSimple\SoapCommon\Definition;
|
namespace BeSimple\SoapCommon\Definition;
|
||||||
|
|
||||||
|
use BeSimple\SoapCommon\Definition\Type\TypeRepository;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Francis Besset <francis.besset@gmail.com>
|
* @author Francis Besset <francis.besset@gmail.com>
|
||||||
*/
|
*/
|
||||||
@ -64,7 +66,7 @@ class Method
|
|||||||
$this->input->add($name, $type);
|
$this->input->add($name, $type);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setOutput($type, $name = 'return')
|
public function setOutput($type)
|
||||||
{
|
{
|
||||||
$this->output->add('return', $type);
|
$this->output->add('return', $type);
|
||||||
}
|
}
|
||||||
|
@ -20,13 +20,11 @@ class Part
|
|||||||
protected $name;
|
protected $name;
|
||||||
protected $type;
|
protected $type;
|
||||||
protected $nillable;
|
protected $nillable;
|
||||||
protected $minOccurs;
|
|
||||||
|
|
||||||
public function __construct($name, $type, $nillable = false, $minOccurs = 1)
|
public function __construct($name, $type, $nillable = false)
|
||||||
{
|
{
|
||||||
$this->name = $name;
|
$this->name = $name;
|
||||||
$this->type = $type;
|
$this->type = $type;
|
||||||
$this->minOccurs = $minOccurs;
|
|
||||||
$this->setNillable($nillable);
|
$this->setNillable($nillable);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -52,16 +50,6 @@ class Part
|
|||||||
|
|
||||||
public function setNillable($nillable)
|
public function setNillable($nillable)
|
||||||
{
|
{
|
||||||
$this->nillable = (bool) $nillable;
|
$this->nillable = (boolean) $nillable;
|
||||||
}
|
|
||||||
|
|
||||||
public function setMinOccurs($minOccurs)
|
|
||||||
{
|
|
||||||
$this->minOccurs = $minOccurs;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getMinOccurs()
|
|
||||||
{
|
|
||||||
return $this->minOccurs;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -175,4 +175,4 @@ class FilterHelper
|
|||||||
$this->namespaces[$namespaceURI] = $prefix;
|
$this->namespaces[$namespaceURI] = $prefix;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -172,8 +172,7 @@ class Helper
|
|||||||
return sprintf(
|
return sprintf(
|
||||||
'%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
|
'%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
|
||||||
// 32 bits for "time_low"
|
// 32 bits for "time_low"
|
||||||
mt_rand(0, 0xffff),
|
mt_rand(0, 0xffff), mt_rand(0, 0xffff),
|
||||||
mt_rand(0, 0xffff),
|
|
||||||
// 16 bits for "time_mid"
|
// 16 bits for "time_mid"
|
||||||
mt_rand(0, 0xffff),
|
mt_rand(0, 0xffff),
|
||||||
// 16 bits for "time_hi_and_version",
|
// 16 bits for "time_hi_and_version",
|
||||||
@ -184,9 +183,7 @@ class Helper
|
|||||||
// two most significant bits holds zero and one for variant DCE1.1
|
// two most significant bits holds zero and one for variant DCE1.1
|
||||||
mt_rand(0, 0x3fff) | 0x8000,
|
mt_rand(0, 0x3fff) | 0x8000,
|
||||||
// 48 bits for "node"
|
// 48 bits for "node"
|
||||||
mt_rand(0, 0xffff),
|
mt_rand(0, 0xffff), mt_rand(0, 0xffff), mt_rand(0, 0xffff)
|
||||||
mt_rand(0, 0xffff),
|
|
||||||
mt_rand(0, 0xffff)
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -221,4 +218,4 @@ class Helper
|
|||||||
return SOAP_1_1;
|
return SOAP_1_1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -172,4 +172,4 @@ class MultiPart extends PartHeader
|
|||||||
{
|
{
|
||||||
return 'urn:uuid:' . Helper::generateUUID();
|
return 'urn:uuid:' . Helper::generateUUID();
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -184,4 +184,4 @@ class Parser
|
|||||||
}
|
}
|
||||||
$part->setContent($content);
|
$part->setContent($content);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -166,4 +166,4 @@ class Part extends PartHeader
|
|||||||
{
|
{
|
||||||
return 'urn:uuid:' . Helper::generateUUID();
|
return 'urn:uuid:' . Helper::generateUUID();
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -143,4 +143,4 @@ abstract class PartHeader
|
|||||||
return $string;
|
return $string;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -47,7 +47,7 @@ abstract class SoapMessage
|
|||||||
*
|
*
|
||||||
* @var array(string=>string)
|
* @var array(string=>string)
|
||||||
*/
|
*/
|
||||||
protected static $versionToContentTypeMap = array(
|
static protected $versionToContentTypeMap = array(
|
||||||
SOAP_1_1 => 'text/xml; charset=utf-8',
|
SOAP_1_1 => 'text/xml; charset=utf-8',
|
||||||
SOAP_1_2 => 'application/soap+xml; charset=utf-8'
|
SOAP_1_2 => 'application/soap+xml; charset=utf-8'
|
||||||
);
|
);
|
||||||
|
@ -22,4 +22,5 @@ use BeSimple\SoapCommon\SoapMessage;
|
|||||||
*/
|
*/
|
||||||
class SoapRequest extends SoapMessage
|
class SoapRequest extends SoapMessage
|
||||||
{
|
{
|
||||||
}
|
|
||||||
|
}
|
@ -28,4 +28,4 @@ interface SoapRequestFilter
|
|||||||
* @param SoapRequest $request SOAP request
|
* @param SoapRequest $request SOAP request
|
||||||
*/
|
*/
|
||||||
public function filterRequest(SoapRequest $request);
|
public function filterRequest(SoapRequest $request);
|
||||||
}
|
}
|
@ -22,4 +22,5 @@ use BeSimple\SoapCommon\SoapMessage;
|
|||||||
*/
|
*/
|
||||||
class SoapResponse extends SoapMessage
|
class SoapResponse extends SoapMessage
|
||||||
{
|
{
|
||||||
}
|
|
||||||
|
}
|
@ -28,4 +28,4 @@ interface SoapResponseFilter
|
|||||||
* @param SoapResponse $response SOAP response
|
* @param SoapResponse $response SOAP response
|
||||||
*/
|
*/
|
||||||
public function filterResponse(SoapResponse $response);
|
public function filterResponse(SoapResponse $response);
|
||||||
}
|
}
|
@ -78,4 +78,4 @@ class ClassmapTest extends \PHPUnit_Framework_TestCase
|
|||||||
$this->setExpectedException('InvalidArgumentException');
|
$this->setExpectedException('InvalidArgumentException');
|
||||||
$classmap1->addClassmap($classmap2);
|
$classmap1->addClassmap($classmap2);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -51,3 +51,4 @@ class DateTimeTypeConverterTest extends \PHPUnit_Framework_TestCase
|
|||||||
$this->assertNull($date);
|
$this->assertNull($date);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -49,3 +49,4 @@ class DateTypeConverterTest extends \PHPUnit_Framework_TestCase
|
|||||||
$this->assertNull($date);
|
$this->assertNull($date);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -90,4 +90,4 @@ class TypeConverterCollectionTest extends \PHPUnit_Framework_TestCase
|
|||||||
$this->setExpectedException('InvalidArgumentException');
|
$this->setExpectedException('InvalidArgumentException');
|
||||||
$converters1->addCollection($converters2);
|
$converters1->addCollection($converters2);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -131,13 +131,13 @@ class MultiPartTest extends \PHPUnit_Framework_TestCase
|
|||||||
$mp->addPart($p2);
|
$mp->addPart($p2);
|
||||||
|
|
||||||
$withoutMain = array(
|
$withoutMain = array(
|
||||||
trim($p2->getHeader('Content-ID'), '<>') => $p2,
|
trim($p2->getHeader('Content-ID'),'<>') => $p2,
|
||||||
);
|
);
|
||||||
$this->assertEquals($withoutMain, $mp->getParts());
|
$this->assertEquals($withoutMain, $mp->getParts());
|
||||||
|
|
||||||
$withMain = array(
|
$withMain = array(
|
||||||
trim($p1->getHeader('Content-ID'), '<>') => $p1,
|
trim($p1->getHeader('Content-ID'),'<>') => $p1,
|
||||||
trim($p2->getHeader('Content-ID'), '<>') => $p2,
|
trim($p2->getHeader('Content-ID'),'<>') => $p2,
|
||||||
);
|
);
|
||||||
$this->assertEquals($withMain, $mp->getParts(true));
|
$this->assertEquals($withMain, $mp->getParts(true));
|
||||||
}
|
}
|
||||||
|
@ -5,7 +5,7 @@ namespace BeSimple\SoapCommon\Type\KeyValue;
|
|||||||
use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
|
use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
|
||||||
use BeSimple\SoapCommon\Type\AbstractKeyValue;
|
use BeSimple\SoapCommon\Type\AbstractKeyValue;
|
||||||
|
|
||||||
class BsBoolean extends AbstractKeyValue
|
class Boolean extends AbstractKeyValue
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @Soap\ComplexType("boolean")
|
* @Soap\ComplexType("boolean")
|
@ -5,7 +5,7 @@ namespace BeSimple\SoapCommon\Type\KeyValue;
|
|||||||
use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
|
use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
|
||||||
use BeSimple\SoapCommon\Type\AbstractKeyValue;
|
use BeSimple\SoapCommon\Type\AbstractKeyValue;
|
||||||
|
|
||||||
class BsFloat extends AbstractKeyValue
|
class Float extends AbstractKeyValue
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @Soap\ComplexType("float")
|
* @Soap\ComplexType("float")
|
@ -5,7 +5,7 @@ namespace BeSimple\SoapCommon\Type\KeyValue;
|
|||||||
use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
|
use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
|
||||||
use BeSimple\SoapCommon\Type\AbstractKeyValue;
|
use BeSimple\SoapCommon\Type\AbstractKeyValue;
|
||||||
|
|
||||||
class BsInt extends AbstractKeyValue
|
class Int extends AbstractKeyValue
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @Soap\ComplexType("int")
|
* @Soap\ComplexType("int")
|
@ -5,7 +5,7 @@ namespace BeSimple\SoapCommon\Type\KeyValue;
|
|||||||
use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
|
use BeSimple\SoapBundle\ServiceDefinition\Annotation as Soap;
|
||||||
use BeSimple\SoapCommon\Type\AbstractKeyValue;
|
use BeSimple\SoapCommon\Type\AbstractKeyValue;
|
||||||
|
|
||||||
class BsString extends AbstractKeyValue
|
class String extends AbstractKeyValue
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @Soap\ComplexType("string")
|
* @Soap\ComplexType("string")
|
@ -30,7 +30,7 @@ abstract class WsSecurityFilterClientServer
|
|||||||
/**
|
/**
|
||||||
* The date format to be used with {@link \DateTime}
|
* The date format to be used with {@link \DateTime}
|
||||||
*/
|
*/
|
||||||
const DATETIME_FORMAT = 'Y-m-d\TH:i:s.u\Z';
|
const DATETIME_FORMAT = 'Y-m-d\TH:i:s.000\Z';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* (X509 3.2.1) Reference to a Subject Key Identifier
|
* (X509 3.2.1) Reference to a Subject Key Identifier
|
||||||
@ -338,6 +338,7 @@ abstract class WsSecurityFilterClientServer
|
|||||||
return XmlSecurityKey::factory($algorithm, $key, false, XmlSecurityKey::TYPE_PRIVATE);
|
return XmlSecurityKey::factory($algorithm, $key, false, XmlSecurityKey::TYPE_PRIVATE);
|
||||||
} elseif (Helper::NS_WSS === $referencedNode->namespaceURI
|
} elseif (Helper::NS_WSS === $referencedNode->namespaceURI
|
||||||
&& 'BinarySecurityToken' == $referencedNode->localName) {
|
&& 'BinarySecurityToken' == $referencedNode->localName) {
|
||||||
|
|
||||||
$key = XmlSecurityPem::formatKeyInPemFormat($referencedNode->textContent);
|
$key = XmlSecurityPem::formatKeyInPemFormat($referencedNode->textContent);
|
||||||
|
|
||||||
return XmlSecurityKey::factory(XmlSecurityKey::RSA_SHA1, $key, false, XmlSecurityKey::TYPE_PUBLIC);
|
return XmlSecurityKey::factory(XmlSecurityKey::RSA_SHA1, $key, false, XmlSecurityKey::TYPE_PUBLIC);
|
||||||
|
@ -113,4 +113,4 @@ class WsSecurityKey
|
|||||||
{
|
{
|
||||||
return null !== $this->publicKey;
|
return null !== $this->publicKey;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -25,7 +25,8 @@
|
|||||||
"ass/xmlsecurity": "~1.0"
|
"ass/xmlsecurity": "~1.0"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"mikey179/vfsstream": "~1.0"
|
"ext-mcrypt": "*",
|
||||||
|
"mikey179/vfsStream": "~1.0"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-0": { "BeSimple\\SoapCommon": "" }
|
"psr-0": { "BeSimple\\SoapCommon": "" }
|
||||||
|
@ -62,7 +62,7 @@ class SoapRequest extends CommonSoapRequest
|
|||||||
} else {
|
} else {
|
||||||
$url .= 'http://';
|
$url .= 'http://';
|
||||||
}
|
}
|
||||||
$url .= isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : '';
|
$url .= isset( $_SERVER['SERVER_NAME'] ) ? $_SERVER['SERVER_NAME'] : '';
|
||||||
if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] != 80) {
|
if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] != 80) {
|
||||||
$url .= ":{$_SERVER['SERVER_PORT']}";
|
$url .= ":{$_SERVER['SERVER_PORT']}";
|
||||||
}
|
}
|
||||||
|
@ -131,7 +131,9 @@ class SoapServer extends \SoapServer
|
|||||||
/**
|
/**
|
||||||
* Configure filter and type converter for SwA/MTOM.
|
* Configure filter and type converter for SwA/MTOM.
|
||||||
*
|
*
|
||||||
* @param array &$options SOAP constructor options array
|
* @param array &$options SOAP constructor options array.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
private function configureMime(array &$options)
|
private function configureMime(array &$options)
|
||||||
{
|
{
|
||||||
@ -155,11 +157,11 @@ class SoapServer extends \SoapServer
|
|||||||
}
|
}
|
||||||
$options['typemap'][] = array(
|
$options['typemap'][] = array(
|
||||||
'type_name' => $converter->getTypeName(),
|
'type_name' => $converter->getTypeName(),
|
||||||
'type_ns' => $converter->getTypeNamespace(),
|
'type_ns' => $converter->getTypeNamespace(),
|
||||||
'from_xml' => function ($input) use ($converter) {
|
'from_xml' => function($input) use ($converter) {
|
||||||
return $converter->convertXmlToPhp($input);
|
return $converter->convertXmlToPhp($input);
|
||||||
},
|
},
|
||||||
'to_xml' => function ($input) use ($converter) {
|
'to_xml' => function($input) use ($converter) {
|
||||||
return $converter->convertPhpToXml($input);
|
return $converter->convertPhpToXml($input);
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
@ -33,7 +33,7 @@ class SoapServerBuilder extends AbstractSoapBuilder
|
|||||||
*
|
*
|
||||||
* @return \BeSimple\SoapServer\SoapServerBuilder
|
* @return \BeSimple\SoapServer\SoapServerBuilder
|
||||||
*/
|
*/
|
||||||
public static function createWithDefaults()
|
static public function createWithDefaults()
|
||||||
{
|
{
|
||||||
return parent::createWithDefaults()
|
return parent::createWithDefaults()
|
||||||
->withErrorReporting(false);
|
->withErrorReporting(false);
|
||||||
@ -197,4 +197,4 @@ class SoapServerBuilder extends AbstractSoapBuilder
|
|||||||
throw new \InvalidArgumentException('The handler has to be configured!');
|
throw new \InvalidArgumentException('The handler has to be configured!');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -86,7 +86,7 @@ class WsSecurityFilter extends WsSecurityFilterClientServer implements SoapReque
|
|||||||
$expires = $xpath->query($query, $security)->item(0);
|
$expires = $xpath->query($query, $security)->item(0);
|
||||||
|
|
||||||
if (null !== $expires) {
|
if (null !== $expires) {
|
||||||
$expiresDatetime = \DateTime::createFromFormat(static::DATETIME_FORMAT, $expires->textContent, new \DateTimeZone('UTC'));
|
$expiresDatetime = \DateTime::createFromFormat(self::DATETIME_FORMAT, $expires->textContent, new \DateTimeZone('UTC'));
|
||||||
$currentDatetime = new \DateTime('now', new \DateTimeZone('UTC'));
|
$currentDatetime = new \DateTime('now', new \DateTimeZone('UTC'));
|
||||||
|
|
||||||
if ($currentDatetime > $expiresDatetime) {
|
if ($currentDatetime > $expiresDatetime) {
|
||||||
@ -170,7 +170,7 @@ class WsSecurityFilter extends WsSecurityFilterClientServer implements SoapReque
|
|||||||
|
|
||||||
// init timestamp
|
// init timestamp
|
||||||
$dt = new \DateTime('now', new \DateTimeZone('UTC'));
|
$dt = new \DateTime('now', new \DateTimeZone('UTC'));
|
||||||
$createdTimestamp = $dt->format(static::DATETIME_FORMAT);
|
$createdTimestamp = $dt->format(self::DATETIME_FORMAT);
|
||||||
|
|
||||||
// create security header
|
// create security header
|
||||||
$security = $filterHelper->createElement(Helper::NS_WSS, 'Security');
|
$security = $filterHelper->createElement(Helper::NS_WSS, 'Security');
|
||||||
@ -182,7 +182,7 @@ class WsSecurityFilter extends WsSecurityFilterClientServer implements SoapReque
|
|||||||
$timestamp->appendChild($created);
|
$timestamp->appendChild($created);
|
||||||
if (null !== $this->expires) {
|
if (null !== $this->expires) {
|
||||||
$dt->modify('+' . $this->expires . ' seconds');
|
$dt->modify('+' . $this->expires . ' seconds');
|
||||||
$expiresTimestamp = $dt->format(static::DATETIME_FORMAT);
|
$expiresTimestamp = $dt->format(self::DATETIME_FORMAT);
|
||||||
$expires = $filterHelper->createElement(Helper::NS_WSU, 'Expires', $expiresTimestamp);
|
$expires = $filterHelper->createElement(Helper::NS_WSU, 'Expires', $expiresTimestamp);
|
||||||
$timestamp->appendChild($expires);
|
$timestamp->appendChild($expires);
|
||||||
}
|
}
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user