mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
d93ee14be1
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@93682 467b73ca-7a2a-4603-9d3b-597d59a354a9
99 lines
2.1 KiB
PHP
Executable File
99 lines
2.1 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Soap server class which auto-generates a WSDL
|
|
* file to initialize PHPs integrated {@link SoapServer} class.
|
|
*
|
|
* See {@link SOAPModelAccess} for an auto-generated SOAP API for your models.
|
|
*
|
|
* @todo Improve documentation
|
|
* @package sapphire
|
|
* @subpackage integration
|
|
*/
|
|
class SapphireSoapServer extends Controller {
|
|
|
|
/**
|
|
* @var array Map of method name to arguments.
|
|
*/
|
|
static $methods = array();
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
static $xsd_types = array(
|
|
'int' => 'xsd:int',
|
|
'boolean' => 'xsd:boolean',
|
|
'string' => 'xsd:string',
|
|
'binary' => 'xsd:base64Binary',
|
|
);
|
|
|
|
function wsdl() {
|
|
$this->getResponse()->addHeader("Content-Type", "text/xml");
|
|
|
|
return array();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
function getWSDLURL() {
|
|
return Director::absoluteBaseURLWithAuth() . $this->Link() . "wsdl";
|
|
}
|
|
|
|
/**
|
|
* @return DataObjectSet Collection of ArrayData elements describing
|
|
* the method (keys: 'Name', 'Arguments', 'ReturnType')
|
|
*/
|
|
function Methods() {
|
|
$methods = array();
|
|
|
|
foreach($this->stat('methods') as $methodName => $arguments) {
|
|
$returnType = $arguments['_returns'];
|
|
unset($arguments['_returns']);
|
|
|
|
$processedArguments = array();
|
|
foreach($arguments as $argument => $type) {
|
|
$processedArguments[] = new ArrayData(array(
|
|
"Name" => $argument,
|
|
"Type" => self::$xsd_types[$type],
|
|
));
|
|
|
|
}
|
|
$methods[] = new ArrayData(array(
|
|
"Name" => $methodName,
|
|
"Arguments" => new DataObjectSet($processedArguments),
|
|
"ReturnType" => self::$xsd_types[$returnType],
|
|
));
|
|
}
|
|
|
|
return new DataObjectSet($methods);
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
function TargetNamespace() {
|
|
return Director::absoluteBaseURL();
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
function ServiceURL() {
|
|
return Director::absoluteBaseURLWithAuth() . $this->class . '/';
|
|
}
|
|
|
|
function index() {
|
|
$wsdl = $this->getViewer('wsdl')->process($this);
|
|
$wsdlFile = TEMP_FOLDER . '/sapphire-wsdl-' . $this->class;
|
|
$fh = fopen($wsdlFile, 'w');
|
|
fwrite($fh, $wsdl);
|
|
fclose($fh);
|
|
|
|
$s = new SoapServer($wsdlFile, array('cache_wsdl' => WSDL_CACHE_NONE));
|
|
$s->setClass($this->class);
|
|
$s->handle();
|
|
}
|
|
}
|
|
|
|
?>
|