2011-10-09 20:17:50 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace BeSimple\SoapClient;
|
|
|
|
|
|
|
|
use BeSimple\SoapCommon\AbstractSoapBuilder;
|
2012-01-15 11:42:21 +01:00
|
|
|
use BeSimple\SoapCommon\Helper;
|
2011-10-09 20:17:50 +02:00
|
|
|
|
|
|
|
/**
|
2011-12-18 13:03:07 +01:00
|
|
|
* Fluent interface builder for SoapClient instance.
|
|
|
|
*
|
2011-10-09 20:17:50 +02:00
|
|
|
* @author Francis Besset <francis.besset@gmail.com>
|
2011-10-10 00:40:21 +02:00
|
|
|
* @author Christian Kerl <christian-kerl@web.de>
|
2011-10-09 20:17:50 +02:00
|
|
|
*/
|
|
|
|
class SoapClientBuilder extends AbstractSoapBuilder
|
|
|
|
{
|
2011-12-18 13:03:07 +01:00
|
|
|
/**
|
|
|
|
* Authentication options.
|
|
|
|
*
|
|
|
|
* @var array(string=>mixed)
|
|
|
|
*/
|
2011-10-10 00:40:21 +02:00
|
|
|
protected $soapOptionAuthentication = array();
|
|
|
|
|
2011-10-09 20:17:50 +02:00
|
|
|
/**
|
2011-12-18 13:03:07 +01:00
|
|
|
* Create new instance with default options.
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapClient\SoapClientBuilder
|
2011-10-09 20:17:50 +02:00
|
|
|
*/
|
2011-12-18 13:03:07 +01:00
|
|
|
public static function createWithDefaults()
|
2011-10-09 20:17:50 +02:00
|
|
|
{
|
|
|
|
return parent::createWithDefaults()
|
2011-12-18 13:03:07 +01:00
|
|
|
->withUserAgent('BeSimpleSoap');
|
2011-10-09 20:17:50 +02:00
|
|
|
}
|
|
|
|
|
2011-10-10 00:21:23 +02:00
|
|
|
/**
|
2011-12-18 13:03:07 +01:00
|
|
|
* Finally returns a SoapClient instance.
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapClient\SoapClient
|
2011-10-10 00:21:23 +02:00
|
|
|
*/
|
|
|
|
public function build()
|
|
|
|
{
|
|
|
|
$this->validateOptions();
|
|
|
|
|
2011-10-11 21:50:07 +02:00
|
|
|
return new SoapClient($this->wsdl, $this->getSoapOptions());
|
|
|
|
}
|
|
|
|
|
2011-12-18 13:03:07 +01:00
|
|
|
/**
|
|
|
|
* Get final array of SOAP options.
|
|
|
|
*
|
|
|
|
* @return array(string=>mixed)
|
|
|
|
*/
|
2011-10-11 21:50:07 +02:00
|
|
|
public function getSoapOptions()
|
|
|
|
{
|
|
|
|
return parent::getSoapOptions() + $this->soapOptionAuthentication;
|
2011-10-10 00:21:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-12-18 13:03:07 +01:00
|
|
|
* Configure option 'trace'.
|
|
|
|
*
|
|
|
|
* @param boolean $trace Enable/Disable
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapClient\SoapClientBuilder
|
2011-10-10 00:21:23 +02:00
|
|
|
*/
|
2011-10-09 20:17:50 +02:00
|
|
|
public function withTrace($trace = true)
|
|
|
|
{
|
2011-10-10 00:02:20 +02:00
|
|
|
$this->soapOptions['trace'] = $trace;
|
2011-10-09 20:17:50 +02:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-10-10 00:21:23 +02:00
|
|
|
/**
|
2011-12-18 13:03:07 +01:00
|
|
|
* Configure option 'exceptions'.
|
|
|
|
*
|
|
|
|
* @param boolean $exceptions Enable/Disable
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapClient\SoapClientBuilder
|
2011-10-10 00:21:23 +02:00
|
|
|
*/
|
2011-10-09 20:17:50 +02:00
|
|
|
public function withExceptions($exceptions = true)
|
|
|
|
{
|
2011-10-10 00:02:20 +02:00
|
|
|
$this->soapOptions['exceptions'] = $exceptions;
|
2011-10-09 20:17:50 +02:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-10-10 00:21:23 +02:00
|
|
|
/**
|
2011-12-18 13:03:07 +01:00
|
|
|
* Configure option 'user_agent'.
|
|
|
|
*
|
|
|
|
* @param string $userAgent User agent string
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapClient\SoapClientBuilder
|
2011-10-10 00:21:23 +02:00
|
|
|
*/
|
2011-10-09 20:17:50 +02:00
|
|
|
public function withUserAgent($userAgent)
|
|
|
|
{
|
2011-10-10 00:02:20 +02:00
|
|
|
$this->soapOptions['user_agent'] = $userAgent;
|
2011-10-09 20:17:50 +02:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
2011-10-10 00:21:23 +02:00
|
|
|
|
2011-12-18 13:03:07 +01:00
|
|
|
/**
|
|
|
|
* Enable gzip compression.
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapClient\SoapClientBuilder
|
|
|
|
*/
|
2011-10-11 22:39:55 +02:00
|
|
|
public function withCompressionGzip()
|
|
|
|
{
|
|
|
|
$this->soapOptions['compression'] = SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP;
|
2011-12-18 13:03:07 +01:00
|
|
|
|
|
|
|
return $this;
|
2011-10-11 22:39:55 +02:00
|
|
|
}
|
|
|
|
|
2011-12-18 13:03:07 +01:00
|
|
|
/**
|
|
|
|
* Enable deflate compression.
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapClient\SoapClientBuilder
|
|
|
|
*/
|
2011-10-11 22:39:55 +02:00
|
|
|
public function withCompressionDeflate()
|
|
|
|
{
|
|
|
|
$this->soapOptions['compression'] = SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_DEFLATE;
|
2011-12-18 13:03:07 +01:00
|
|
|
|
|
|
|
return $this;
|
2011-10-11 22:39:55 +02:00
|
|
|
}
|
|
|
|
|
2011-10-10 00:40:21 +02:00
|
|
|
/**
|
2011-12-18 13:03:07 +01:00
|
|
|
* Configure basic authentication
|
|
|
|
*
|
|
|
|
* @param string $username Username
|
|
|
|
* @param string $password Password
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapClient\SoapClientBuilder
|
2011-10-10 00:40:21 +02:00
|
|
|
*/
|
|
|
|
public function withBasicAuthentication($username, $password)
|
|
|
|
{
|
|
|
|
$this->soapOptionAuthentication = array(
|
|
|
|
'authentication' => SOAP_AUTHENTICATION_BASIC,
|
|
|
|
'login' => $username,
|
2011-10-11 21:50:07 +02:00
|
|
|
'password' => $password,
|
2011-10-10 00:40:21 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-12-18 13:03:07 +01:00
|
|
|
* Configure digest authentication.
|
|
|
|
*
|
|
|
|
* @param string $certificate Certificate
|
|
|
|
* @param string $passphrase Passphrase
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapClient\SoapClientBuilder
|
2011-10-10 00:40:21 +02:00
|
|
|
*/
|
2011-10-11 21:50:07 +02:00
|
|
|
public function withDigestAuthentication($certificate, $passphrase = null)
|
2011-10-10 00:40:21 +02:00
|
|
|
{
|
|
|
|
$this->soapOptionAuthentication = array(
|
|
|
|
'authentication' => SOAP_AUTHENTICATION_DIGEST,
|
|
|
|
'local_cert' => $certificate,
|
|
|
|
);
|
|
|
|
|
2011-10-11 21:50:07 +02:00
|
|
|
if ($passphrase) {
|
|
|
|
$this->soapOptionAuthentication['passphrase'] = $passphrase;
|
|
|
|
}
|
|
|
|
|
2011-10-10 00:40:21 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-12-18 13:03:07 +01:00
|
|
|
/**
|
|
|
|
* Configure proxy.
|
|
|
|
*
|
|
|
|
* @param string $host Host
|
|
|
|
* @param int $port Port
|
|
|
|
* @param string $username Username
|
|
|
|
* @param string $password Password
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapClient\SoapClientBuilder
|
|
|
|
*/
|
2011-10-11 22:07:16 +02:00
|
|
|
public function withProxy($host, $port, $username = null, $password = null)
|
|
|
|
{
|
|
|
|
$this->soapOptions['proxy_host'] = $host;
|
|
|
|
$this->soapOptions['proxy_port'] = $port;
|
|
|
|
|
|
|
|
if ($username) {
|
|
|
|
$this->soapOptions['proxy_login'] = $username;
|
|
|
|
$this->soapOptions['proxy_password'] = $password;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-04-21 20:24:19 +02:00
|
|
|
/**
|
|
|
|
* SOAP attachment type Base64.
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapServer\SoapServerBuilder
|
|
|
|
*/
|
|
|
|
public function withBase64Attachments()
|
|
|
|
{
|
|
|
|
$this->options['attachment_type'] = Helper::ATTACHMENTS_TYPE_BASE64;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SOAP attachment type SwA.
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapServer\SoapServerBuilder
|
|
|
|
*/
|
|
|
|
public function withSwaAttachments()
|
|
|
|
{
|
|
|
|
$this->options['attachment_type'] = Helper::ATTACHMENTS_TYPE_SWA;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SOAP attachment type MTOM.
|
|
|
|
*
|
|
|
|
* @return \BeSimple\SoapServer\SoapServerBuilder
|
|
|
|
*/
|
|
|
|
public function withMtomAttachments()
|
|
|
|
{
|
|
|
|
$this->options['attachment_type'] = Helper::ATTACHMENTS_TYPE_MTOM;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2011-12-18 13:03:07 +01:00
|
|
|
/**
|
|
|
|
* Validate options.
|
|
|
|
*/
|
2011-10-10 00:21:23 +02:00
|
|
|
protected function validateOptions()
|
|
|
|
{
|
|
|
|
$this->validateWsdl();
|
|
|
|
}
|
2011-10-09 20:17:50 +02:00
|
|
|
}
|