more namespace use
[plcapi.git] / lib / xmlrpcs.inc
1 <?php
2 // by Edd Dumbill (C) 1999-2002
3 // <edd@usefulinc.com>
4
5 // Copyright (c) 1999,2000,2002 Edd Dumbill.
6 // All rights reserved.
7 //
8 // Redistribution and use in source and binary forms, with or without
9 // modification, are permitted provided that the following conditions
10 // are met:
11 //
12 //    * Redistributions of source code must retain the above copyright
13 //      notice, this list of conditions and the following disclaimer.
14 //
15 //    * Redistributions in binary form must reproduce the above
16 //      copyright notice, this list of conditions and the following
17 //      disclaimer in the documentation and/or other materials provided
18 //      with the distribution.
19 //
20 //    * Neither the name of the "XML-RPC for PHP" nor the names of its
21 //      contributors may be used to endorse or promote products derived
22 //      from this software without specific prior written permission.
23 //
24 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
27 // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
28 // REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
30 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
31 // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
33 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
35 // OF THE POSSIBILITY OF SUCH DAMAGE.
36
37 /******************************************************************************
38  *
39  * *** DEPRECATED ***
40  *
41  * This file is only used to insure backwards compatibility
42  * with the API of the library <= rev. 3
43  *****************************************************************************/
44
45 include_once(__DIR__.'/../src/Server.php');
46
47 use PhpXmlRpc\Server;
48
49 class xmlrpc_server extends Server
50 {
51     /**
52      * A debugging routine: just echoes back the input packet as a string value
53      * @deprecated
54      */
55     public function echoInput()
56     {
57         $r = new PhpXmlRpc\Response(new PhpXmlRpc\Value("'Aha said I: '" . file_get_contents('php://input'), 'string'));
58         print $r->serialize();
59     }
60 }
61
62 /* Expose as global functions the ones which are now class methods */
63
64 /**
65  * @see Server::xmlrpc_debugmsg
66  * @param string $m
67  */
68 function xmlrpc_debugmsg($m)
69 {
70     Server::xmlrpc_debugmsg($m);
71 }
72
73 function _xmlrpcs_getCapabilities($server, $m=null)
74 {
75     return Server::_xmlrpcs_getCapabilities($server, $m);
76 }
77
78 $_xmlrpcs_listMethods_sig=array(array(\PhpXmlRpc\Value::$xmlrpcArray));
79 $_xmlrpcs_listMethods_doc='This method lists all the methods that the XML-RPC server knows how to dispatch';
80 $_xmlrpcs_listMethods_sdoc=array(array('list of method names'));
81 function _xmlrpcs_listMethods($server, $m=null) // if called in plain php values mode, second param is missing
82 {
83     return Server::_xmlrpcs_listMethods($server, $m);
84 }
85
86 $_xmlrpcs_methodSignature_sig=array(array(\PhpXmlRpc\Value::$xmlrpcArray, $GLOBALS['xmlrpcString']));
87 $_xmlrpcs_methodSignature_doc='Returns an array of known signatures (an array of arrays) for the method name passed. If no signatures are known, returns a none-array (test for type != array to detect missing signature)';
88 $_xmlrpcs_methodSignature_sdoc=array(array('list of known signatures, each sig being an array of xmlrpc type names', 'name of method to be described'));
89 function _xmlrpcs_methodSignature($server, $m)
90 {
91     return Server::_xmlrpcs_methodSignature($server, $m);
92 }
93
94 $_xmlrpcs_methodHelp_sig=array(array($GLOBALS['xmlrpcString'], $GLOBALS['xmlrpcString']));
95 $_xmlrpcs_methodHelp_doc='Returns help text if defined for the method passed, otherwise returns an empty string';
96 $_xmlrpcs_methodHelp_sdoc=array(array('method description', 'name of the method to be described'));
97 function _xmlrpcs_methodHelp($server, $m)
98 {
99     return Server::_xmlrpcs_methodHelp($server, $m);
100 }
101
102 function _xmlrpcs_multicall_error($err)
103 {
104     return Server::_xmlrpcs_multicall_error($err);
105 }
106
107 function _xmlrpcs_multicall_do_call($server, $call)
108 {
109     return Server::_xmlrpcs_multicall_do_call($server, $call);
110 }
111
112 function _xmlrpcs_multicall_do_call_phpvals($server, $call)
113 {
114     return Server::_xmlrpcs_multicall_do_call_phpvals($server, $call);
115 }
116
117 $_xmlrpcs_multicall_sig = array(array(\PhpXmlRpc\Value::$xmlrpcArray, \PhpXmlRpc\Value::$xmlrpcArray));
118 $_xmlrpcs_multicall_doc = 'Boxcar multiple RPC calls in one request. See http://www.xmlrpc.com/discuss/msgReader$1208 for details';
119 $_xmlrpcs_multicall_sdoc = array(array('list of response structs, where each struct has the usual members', 'list of calls, with each call being represented as a struct, with members "methodname" and "params"'));
120 function _xmlrpcs_multicall($server, $m)
121 {
122     return Server::_xmlrpcs_multicall($server, $m);
123 }