2011-11-21 20:21:24 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of the BeSimpleSoapCommon.
|
|
|
|
*
|
|
|
|
* (c) Christian Kerl <christian-kerl@web.de>
|
|
|
|
* (c) Francis Besset <francis.besset@gmail.com>
|
|
|
|
* (c) Andreas Schamberger <mail@andreass.net>
|
|
|
|
*
|
|
|
|
* This source file is subject to the MIT license that is bundled
|
|
|
|
* with this source code in the file LICENSE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace BeSimple\SoapCommon;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Christian Kerl <christian-kerl@web.de>
|
|
|
|
*/
|
|
|
|
abstract class SoapMessage
|
|
|
|
{
|
|
|
|
const CONTENT_TYPE_HEADER = 'CONTENT_TYPE';
|
|
|
|
const ACTION_HEADER = 'HTTP_SOAPACTION';
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
static protected $versionToContentTypeMap = array(
|
2011-12-17 13:45:18 +01:00
|
|
|
SOAP_1_1 => 'text/xml; charset=utf-8',
|
|
|
|
SOAP_1_2 => 'application/soap+xml; charset=utf-8'
|
2011-11-21 20:21:24 +01:00
|
|
|
);
|
2011-12-17 13:45:18 +01:00
|
|
|
|
|
|
|
static public function getContentTypeForVersion($version)
|
2011-11-21 20:21:24 +01:00
|
|
|
{
|
2011-12-17 13:45:18 +01:00
|
|
|
if(!in_array($soapVersion, array(SOAP_1_1, SOAP_1_2))) {
|
2011-11-21 20:21:24 +01:00
|
|
|
throw new \InvalidArgumentException("The 'version' argument has to be either 'SOAP_1_1' or 'SOAP_1_2'!");
|
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
|
|
|
return self::$versionToContentTypeMap[$version];
|
2011-11-21 20:21:24 +01:00
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
protected $contentType;
|
|
|
|
protected $content;
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
protected $contentDomDocument = null;
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
protected $version;
|
|
|
|
protected $action;
|
2011-12-17 13:45:18 +01:00
|
|
|
protected $location;
|
2011-11-21 20:21:24 +01:00
|
|
|
|
|
|
|
public function getContentType()
|
|
|
|
{
|
|
|
|
return $this->contentType;
|
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
public function setContentType($contentType)
|
|
|
|
{
|
|
|
|
$this->contentType = $contentType;
|
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
public function getContent()
|
|
|
|
{
|
2011-12-17 13:45:18 +01:00
|
|
|
if (null !== $this->contentDomDocument) {
|
|
|
|
$this->content = $this->contentDomDocument->saveXML();
|
|
|
|
}
|
2011-11-21 20:21:24 +01:00
|
|
|
return $this->content;
|
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
public function setContent($content)
|
|
|
|
{
|
|
|
|
$this->content = $content;
|
2011-12-17 13:45:18 +01:00
|
|
|
if (null !== $this->contentDomDocument) {
|
|
|
|
$this->contentDomDocument->loadXML($this->content);
|
|
|
|
}
|
2011-11-21 20:21:24 +01:00
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
public function getContentDocument()
|
|
|
|
{
|
2011-12-17 13:45:18 +01:00
|
|
|
if (null === $this->contentDomDocument) {
|
2011-11-21 20:21:24 +01:00
|
|
|
$this->contentDomDocument = new \DOMDocument();
|
|
|
|
$this->contentDomDocument->loadXML($this->content);
|
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
return $this->contentDomDocument;
|
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
public function getVersion()
|
|
|
|
{
|
|
|
|
return $this->version;
|
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
public function setVersion($version)
|
|
|
|
{
|
|
|
|
$this->version = $version;
|
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
public function getAction()
|
|
|
|
{
|
|
|
|
return $this->action;
|
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
2011-11-21 20:21:24 +01:00
|
|
|
public function setAction($action)
|
|
|
|
{
|
|
|
|
$this->action = $action;
|
|
|
|
}
|
2011-12-17 13:45:18 +01:00
|
|
|
|
|
|
|
public function getLocation()
|
|
|
|
{
|
|
|
|
return $this->location;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setLocation($location)
|
|
|
|
{
|
|
|
|
$this->location = $location;
|
|
|
|
}
|
2011-11-21 20:21:24 +01:00
|
|
|
}
|