2011-09-03 21:15:51 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the BeSimpleSoapBundle.
|
|
|
|
*
|
|
|
|
* (c) Christian Kerl <christian-kerl@web.de>
|
|
|
|
* (c) Francis Besset <francis.besset@gmail.com>
|
|
|
|
*
|
|
|
|
* This source file is subject to the MIT license that is bundled
|
|
|
|
* with this source code in the file LICENSE.
|
|
|
|
*/
|
|
|
|
|
2011-09-04 00:42:51 +02:00
|
|
|
namespace BeSimple\SoapClient;
|
2011-09-03 21:15:51 +02:00
|
|
|
|
2011-09-04 00:36:24 +02:00
|
|
|
use BeSimple\SoapCommon\Cache;
|
|
|
|
|
2011-09-03 21:15:51 +02:00
|
|
|
/**
|
|
|
|
* @author Francis Besset <francis.besset@gmail.com>
|
|
|
|
*/
|
|
|
|
class SoapClient
|
|
|
|
{
|
|
|
|
protected $wsdl;
|
|
|
|
protected $soapClient;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $wsdl
|
|
|
|
* @param array $options
|
|
|
|
*/
|
|
|
|
public function __construct($wsdl, array $options = array())
|
|
|
|
{
|
|
|
|
$this->wsdl = $wsdl;
|
|
|
|
$this->setOptions($options);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setOptions(array $options)
|
|
|
|
{
|
|
|
|
$this->options = array(
|
2011-09-04 00:36:24 +02:00
|
|
|
'debug' => false,
|
2011-09-04 12:15:11 +02:00
|
|
|
'cache_type' => null,
|
2011-09-03 21:15:51 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
// check option names and live merge, if errors are encountered Exception will be thrown
|
|
|
|
$invalid = array();
|
|
|
|
$isInvalid = false;
|
|
|
|
foreach ($options as $key => $value) {
|
|
|
|
if (array_key_exists($key, $this->options)) {
|
|
|
|
$this->options[$key] = $value;
|
|
|
|
} else {
|
|
|
|
$isInvalid = true;
|
|
|
|
$invalid[] = $key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($isInvalid) {
|
|
|
|
throw new \InvalidArgumentException(sprintf(
|
|
|
|
'The "%s" class does not support the following options: "%s".',
|
|
|
|
get_class($this),
|
|
|
|
implode('\', \'', $invalid)
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $name The name
|
|
|
|
* @param mixed $value The value
|
|
|
|
*
|
|
|
|
* @throws \InvalidArgumentException
|
|
|
|
*/
|
|
|
|
public function setOption($name, $value)
|
|
|
|
{
|
|
|
|
if (!array_key_exists($name, $this->options)) {
|
|
|
|
throw new \InvalidArgumentException(sprintf(
|
|
|
|
'The "%s" class does not support the "%s" option.',
|
|
|
|
get_class($this),
|
|
|
|
$name
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->options[$name] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getOptions()
|
|
|
|
{
|
|
|
|
return $this->options;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $key The key
|
|
|
|
*
|
|
|
|
* @return mixed The value
|
|
|
|
*
|
|
|
|
* @throws \InvalidArgumentException
|
|
|
|
*/
|
|
|
|
public function getOption($key)
|
|
|
|
{
|
|
|
|
if (!array_key_exists($key, $this->options)) {
|
|
|
|
throw new \InvalidArgumentException(sprintf(
|
|
|
|
'The "%s" class does not support the "%s" option.',
|
|
|
|
get_class($this),
|
|
|
|
$key
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->options[$key];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param SoapRequest $soapRequest
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function send(SoapRequest $soapRequest)
|
|
|
|
{
|
|
|
|
return $this->getNativeSoapClient()->__soapCall(
|
|
|
|
$soapRequest->getFunction(),
|
|
|
|
$soapRequest->getArguments(),
|
|
|
|
$soapRequest->getOptions()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \SoapClient
|
|
|
|
*/
|
|
|
|
public function getNativeSoapClient()
|
|
|
|
{
|
|
|
|
if (!$this->soapClient) {
|
|
|
|
$this->soapClient = new \SoapClient($this->wsdl, $this->getSoapOptions());
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->soapClient;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array The \SoapClient options
|
|
|
|
*/
|
|
|
|
public function getSoapOptions()
|
|
|
|
{
|
|
|
|
$options = array();
|
|
|
|
|
2011-09-04 12:15:11 +02:00
|
|
|
if (null === $this->options['cache_type']) {
|
|
|
|
$this->options['cache_type'] = Cache::getType();
|
2011-09-04 00:36:24 +02:00
|
|
|
}
|
|
|
|
|
2011-09-04 12:15:11 +02:00
|
|
|
$options['cache_wsdl'] = $this->options['cache_type'];
|
2011-09-03 21:15:51 +02:00
|
|
|
$options['trace'] = $this->options['debug'];
|
|
|
|
|
|
|
|
return $options;
|
|
|
|
}
|
|
|
|
}
|