Merge branch 'MDL-58454-master' of git://github.com/junpataleta/moodle
[moodle.git] / lib / soaplib.php
blobdc9f3384c5e551c2dc1c186a8cbbb7df0ac66469
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * Web services wrapper library script
21 * Since Moodle 2.0 we rely only on native PHP Soap extension,
22 * the original name of this file was lib/soap/phpsoap.php
24 * @package core
25 * @subpackage lib
26 * @author Alex Smith and others members of the Serving Mathematics project
27 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
28 * {@link http://maths.york.ac.uk/serving_maths}
29 * and others
32 defined('MOODLE_INTERNAL') || die();
34 /**
35 * Create a new SoapClient object
37 * @param string $wsdl URI of the WSDL file
38 * @param boolean $trace indicates if the soap messages should be saved (i.e. if
39 * get_soap_messages is used) and should be used only for debugging
40 * @return mixed Returns either a SoapClient object or, if the connection failed,
41 * a SoapFault object.
43 function soap_connect($wsdl, $trace=false) {
44 try {
45 $connection = new SoapClient($wsdl, array('soap_version'=>SOAP_1_1, 'exceptions'=>true, 'trace'=>$trace));
47 catch (SoapFault $f) {
48 $connection = $f;
50 catch (Exception $e) {
51 $connection = new SoapFault('client', 'Could not connect to the service');
53 return $connection;
56 /**
57 * Make a call to a SoapClient
59 * @param SoapClient $connection The SoapClient to call
60 * @param string $call Operation to be performed by client
61 * @param array $params Parameters for the call
62 * @return mixed The return parameters of the operation or a SoapFault
63 * If the operation returned several parameters then these
64 * are returned as an object rather than an array
66 function soap_call($connection, $call, $params) {
67 try {
68 $return = $connection->__soapCall($call, $params);
70 catch (SoapFault $f) {
71 $return = $f;
73 catch (Exception $e) {
74 $return = new SoapFault('client', 'Could call the method');
76 // return multiple parameters using an object rather than an array
77 if (is_array($return)) {
78 $keys = array_keys($return);
79 $assoc = true;
80 foreach ($keys as $key) {
81 if (!is_string($key)) {
82 $assoc = false;
83 break;
86 if ($assoc)
87 $return = (object) $return;
89 return $return;
92 function soap_serve($wsdl, $functions) {
93 // create server object
94 $s = new SoapServer($wsdl);
95 // export functions
96 foreach ($functions as $func)
97 $s->addFunction($func);
98 // handle the request
99 $s->handle();
102 function make_soap_fault($faultcode, $faultstring, $faultactor='', $detail='', $faultname='', $headerfault='') {
103 return new SoapFault($faultcode, $faultstring, $faultactor, $detail, $faultname, $headerfault);
106 function get_last_soap_messages($connection) {
107 return array('request'=>$connection->__getLastRequest(), 'response'=>$connection->__getLastResponse());
110 // Fix simple type encoding - work around a bug in early versions of PHP5 < 5.0.3, see http://bugs.php.net/bug.php?id=31832
111 function soap_encode($value, $name, $type, $namespace, $encode=XSD_STRING) {
112 $value = new SoapVar($value, $encode, $type, $namespace);
113 if ('' === $name)
114 return $value;
115 return new SoapParam($value, $name);
118 // Fix complex type encoding - work around a bug in early versions of PHP5 < 5.0.3, see http://bugs.php.net/bug.php?id=31832
119 function soap_encode_object($value, $name, $type, $namespace) {
120 if (!is_object($value))
121 return $value;
122 $value = new SoapVar($value, SOAP_ENC_OBJECT, $type, $namespace);
123 if ('' === $name)
124 return $value;
125 return new SoapParam($value, $name);
128 // Fix array encoding - work around a bug in early versions of PHP5 < 5.0.3, see http://bugs.php.net/bug.php?id=31832
129 function soap_encode_array($value, $name, $type, $namespace) {
130 if (!is_array($value))
131 return $value;
132 $value = new SoapVar($value, SOAP_ENC_ARRAY, 'ArrayOf' . $type, $namespace);
133 if ('' === $name)
134 return $value;
135 return new SoapParam($value, $name);
138 // In both cases...
139 function handle_soap_wsdl_request($wsdlfile, $address=false) {
140 header('Content-type: application/wsdl+xml');
141 $wsdl = file_get_contents($wsdlfile);
142 if (false !== $address) {
143 if (true === $address) {
144 $address = (($_SERVER['SERVER_PORT'] == 443) ? 'https://' : 'http://') . $_SERVER['SERVER_NAME'] . $_SERVER['SCRIPT_NAME'];
146 $wsdl = str_replace('###SERVER_ADDRESS###', $address, $wsdl);
148 echo $wsdl;
149 exit;