mirror of
https://github.com/moodle/moodle.git
synced 2025-02-20 08:05:49 +01:00
155 lines
5.5 KiB
PHP
155 lines
5.5 KiB
PHP
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* SOAP web service implementation classes and methods.
|
|
*
|
|
* @package webservice
|
|
* @copyright 2009 Moodle Pty Ltd (http://moodle.com)
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
require_once("$CFG->dirroot/webservice/lib.php");
|
|
|
|
/**
|
|
* SOAP service server implementation.
|
|
* @author Petr Skoda (skodak)
|
|
*/
|
|
class webservice_soap_server extends webservice_zend_server {
|
|
/**
|
|
* Contructor
|
|
* @param bool $simple use simple authentication
|
|
*/
|
|
public function __construct($authmethod) {
|
|
// must not cache wsdl - the list of functions is created on the fly
|
|
ini_set('soap.wsdl_cache_enabled', '0');
|
|
require_once 'Zend/Soap/Server.php';
|
|
require_once 'Zend/Soap/AutoDiscover.php';
|
|
|
|
if (optional_param('wsdl', 0, PARAM_BOOL)) {
|
|
parent::__construct($authmethod, 'Zend_Soap_AutoDiscover');
|
|
} else {
|
|
parent::__construct($authmethod, 'Zend_Soap_Server');
|
|
}
|
|
$this->wsname = 'soap';
|
|
}
|
|
|
|
/**
|
|
* Set up zend service class
|
|
* @return void
|
|
*/
|
|
protected function init_zend_server() {
|
|
global $CFG;
|
|
|
|
parent::init_zend_server();
|
|
|
|
if ($this->authmethod == WEBSERVICE_AUTHMETHOD_USERNAME) {
|
|
$username = optional_param('wsusername', '', PARAM_RAW);
|
|
$password = optional_param('wspassword', '', PARAM_RAW);
|
|
// aparently some clients and zend soap server does not work well with "&" in urls :-(
|
|
//TODO: the zend error has been fixed in the last Zend SOAP version, check that is fixed and remove obsolete code
|
|
$url = $CFG->wwwroot.'/webservice/soap/simpleserver.php/'.urlencode($username).'/'.urlencode($password);
|
|
// the Zend server is using this uri directly in xml - weird :-(
|
|
$this->zend_server->setUri(htmlentities($url));
|
|
} else {
|
|
$wstoken = optional_param('wstoken', '', PARAM_RAW);
|
|
$url = $CFG->wwwroot.'/webservice/soap/server.php?wstoken='.urlencode($wstoken);
|
|
// the Zend server is using this uri directly in xml - weird :-(
|
|
$this->zend_server->setUri(htmlentities($url));
|
|
}
|
|
|
|
if (!optional_param('wsdl', 0, PARAM_BOOL)) {
|
|
$this->zend_server->setReturnResponse(true);
|
|
//TODO: the error handling in Zend Soap server is useless, XML-RPC is much, much better :-(
|
|
$this->zend_server->registerFaultException('moodle_exception');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This method parses the $_REQUEST superglobal and looks for
|
|
* the following information:
|
|
* 1/ user authentication - username+password or token (wsusername, wspassword and wstoken parameters)
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function parse_request() {
|
|
parent::parse_request();
|
|
|
|
if (!$this->username or !$this->password) {
|
|
//note: this is the workaround for the trouble with & in soap urls
|
|
$authdata = get_file_argument();
|
|
$authdata = explode('/', trim($authdata, '/'));
|
|
if (count($authdata) == 2) {
|
|
list($this->username, $this->password) = $authdata;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Send the error information to the WS client
|
|
* formatted as XML document.
|
|
* @param exception $ex
|
|
* @return void
|
|
*/
|
|
protected function send_error($ex=null) {
|
|
// Zend Soap server fault handling is incomplete compared to XML-RPC :-(
|
|
// we can not use: echo $this->zend_server->fault($ex);
|
|
//TODO: send some better response in XML
|
|
if ($ex) {
|
|
$info = $ex->getMessage();
|
|
if (debugging() and isset($ex->debuginfo)) {
|
|
$info .= ' - '.$ex->debuginfo;
|
|
}
|
|
} else {
|
|
$info = 'Unknown error';
|
|
}
|
|
|
|
$xml = '<?xml version="1.0" encoding="UTF-8"?>
|
|
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
|
|
<SOAP-ENV:Body><SOAP-ENV:Fault>
|
|
<faultcode>MOODLE:error</faultcode>
|
|
<faultstring>'.$info.'</faultstring>
|
|
</SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>';
|
|
|
|
$this->send_headers();
|
|
header('Content-Type: application/xml');
|
|
header('Content-Disposition: inline; filename="response.xml"');
|
|
|
|
echo $xml;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* SOAP test client class
|
|
*/
|
|
class webservice_soap_test_client implements webservice_test_client_interface {
|
|
/**
|
|
* Execute test client WS request
|
|
* @param string $serverurl
|
|
* @param string $function
|
|
* @param array $params
|
|
* @return mixed
|
|
*/
|
|
public function simpletest($serverurl, $function, $params) {
|
|
//zend expects 0 based array with numeric indexes
|
|
$params = array_values($params);
|
|
require_once 'Zend/Soap/Client.php';
|
|
$client = new Zend_Soap_Client($serverurl.'&wsdl=1');
|
|
return $client->__call($function, $params);
|
|
}
|
|
}
|