BeSimpleSoap/src/BeSimple/SoapClient/SoapClientBuilder.php

239 lines
5.5 KiB
PHP
Raw Normal View History

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>
* @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)
*/
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
*/
public function withCompressionGzip()
{
$this->soapOptions['compression'] = SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP;
2011-12-18 13:03:07 +01:00
return $this;
}
2011-12-18 13:03:07 +01:00
/**
* Enable deflate compression.
*
* @return \BeSimple\SoapClient\SoapClientBuilder
*/
public function withCompressionDeflate()
{
$this->soapOptions['compression'] = SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_DEFLATE;
2011-12-18 13:03:07 +01:00
return $this;
}
/**
2011-12-18 13:03:07 +01:00
* Configure basic authentication
*
* @param string $username Username
* @param string $password Password
*
* @return \BeSimple\SoapClient\SoapClientBuilder
*/
public function withBasicAuthentication($username, $password)
{
$this->soapOptionAuthentication = array(
'authentication' => SOAP_AUTHENTICATION_BASIC,
'login' => $username,
2011-10-11 21:50:07 +02:00
'password' => $password,
);
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-11 21:50:07 +02:00
public function withDigestAuthentication($certificate, $passphrase = null)
{
$this->soapOptionAuthentication = array(
'authentication' => SOAP_AUTHENTICATION_DIGEST,
'local_cert' => $certificate,
);
2011-10-11 21:50:07 +02:00
if ($passphrase) {
$this->soapOptionAuthentication['passphrase'] = $passphrase;
}
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;
}
/**
* 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
}