blob: 5da6ea6aed23b2b6b649d58efb0fb7c461992153 [file] [log] [blame]
Derek Jones37f4b9c2011-07-01 17:56:50 -05001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00002/**
3 * CodeIgniter
4 *
Greg Aker741de1c2010-11-10 14:52:57 -06005 * An open source application development framework for PHP 5.1.6 or newer
Derek Allard2067d1a2008-11-13 22:59:24 +00006 *
7 * @package CodeIgniter
8 * @author ExpressionEngine Dev Team
Greg Aker0711dc82011-01-05 10:49:40 -06009 * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
Derek Allard2067d1a2008-11-13 22:59:24 +000010 * @license http://codeigniter.com/user_guide/license.html
11 * @link http://codeigniter.com
12 * @since Version 1.0
13 * @filesource
14 */
15
16if ( ! function_exists('xml_parser_create'))
Barry Mienydd671972010-10-04 16:33:58 +020017{
Derek Allard2067d1a2008-11-13 22:59:24 +000018 show_error('Your PHP installation does not support XML');
19}
20
21
22// ------------------------------------------------------------------------
23
24/**
25 * XML-RPC request handler class
26 *
27 * @package CodeIgniter
28 * @subpackage Libraries
29 * @category XML-RPC
30 * @author ExpressionEngine Dev Team
31 * @link http://codeigniter.com/user_guide/libraries/xmlrpc.html
32 */
33class CI_Xmlrpc {
34
Barry Mienydd671972010-10-04 16:33:58 +020035 var $debug = FALSE; // Debugging on or off
Derek Allard2067d1a2008-11-13 22:59:24 +000036 var $xmlrpcI4 = 'i4';
37 var $xmlrpcInt = 'int';
38 var $xmlrpcBoolean = 'boolean';
Barry Mienydd671972010-10-04 16:33:58 +020039 var $xmlrpcDouble = 'double';
Derek Allard2067d1a2008-11-13 22:59:24 +000040 var $xmlrpcString = 'string';
Derek Jones7e39c0c2009-06-24 16:25:03 +000041 var $xmlrpcDateTime = 'dateTime.iso8601';
Derek Allard2067d1a2008-11-13 22:59:24 +000042 var $xmlrpcBase64 = 'base64';
43 var $xmlrpcArray = 'array';
44 var $xmlrpcStruct = 'struct';
Barry Mienydd671972010-10-04 16:33:58 +020045
Derek Allard2067d1a2008-11-13 22:59:24 +000046 var $xmlrpcTypes = array();
47 var $valid_parents = array();
48 var $xmlrpcerr = array(); // Response numbers
Derek Jones37f4b9c2011-07-01 17:56:50 -050049 var $xmlrpcstr = array(); // Response strings
Barry Mienydd671972010-10-04 16:33:58 +020050
Derek Allard2067d1a2008-11-13 22:59:24 +000051 var $xmlrpc_defencoding = 'UTF-8';
52 var $xmlrpcName = 'XML-RPC for CodeIgniter';
53 var $xmlrpcVersion = '1.1';
54 var $xmlrpcerruser = 800; // Start of user errors
55 var $xmlrpcerrxml = 100; // Start of XML Parse errors
56 var $xmlrpc_backslash = ''; // formulate backslashes for escaping regexp
Barry Mienydd671972010-10-04 16:33:58 +020057
Derek Allard2067d1a2008-11-13 22:59:24 +000058 var $client;
59 var $method;
60 var $data;
61 var $message = '';
Barry Mienydd671972010-10-04 16:33:58 +020062 var $error = ''; // Error string for request
Derek Allard2067d1a2008-11-13 22:59:24 +000063 var $result;
Derek Jones37f4b9c2011-07-01 17:56:50 -050064 var $response = array(); // Response from remote server
Derek Allard2067d1a2008-11-13 22:59:24 +000065
Robin Sowell66a3fc02010-03-18 09:44:55 -040066 var $xss_clean = TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +000067
68 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -050069 // VALUES THAT MULTIPLE CLASSES NEED
Derek Allard2067d1a2008-11-13 22:59:24 +000070 //-------------------------------------
71
Greg Akera9263282010-11-10 15:26:43 -060072 public function __construct($config = array())
Derek Allard2067d1a2008-11-13 22:59:24 +000073 {
Barry Mienydd671972010-10-04 16:33:58 +020074 $this->xmlrpcName = $this->xmlrpcName;
Derek Allard2067d1a2008-11-13 22:59:24 +000075 $this->xmlrpc_backslash = chr(92).chr(92);
Barry Mienydd671972010-10-04 16:33:58 +020076
Derek Allard2067d1a2008-11-13 22:59:24 +000077 // Types for info sent back and forth
78 $this->xmlrpcTypes = array(
Barry Mienydd671972010-10-04 16:33:58 +020079 $this->xmlrpcI4 => '1',
80 $this->xmlrpcInt => '1',
81 $this->xmlrpcBoolean => '1',
82 $this->xmlrpcString => '1',
83 $this->xmlrpcDouble => '1',
84 $this->xmlrpcDateTime => '1',
85 $this->xmlrpcBase64 => '1',
86 $this->xmlrpcArray => '2',
87 $this->xmlrpcStruct => '3'
Derek Allard2067d1a2008-11-13 22:59:24 +000088 );
Barry Mienydd671972010-10-04 16:33:58 +020089
Derek Allard2067d1a2008-11-13 22:59:24 +000090 // Array of Valid Parents for Various XML-RPC elements
91 $this->valid_parents = array('BOOLEAN' => array('VALUE'),
92 'I4' => array('VALUE'),
93 'INT' => array('VALUE'),
94 'STRING' => array('VALUE'),
95 'DOUBLE' => array('VALUE'),
96 'DATETIME.ISO8601' => array('VALUE'),
97 'BASE64' => array('VALUE'),
98 'ARRAY' => array('VALUE'),
99 'STRUCT' => array('VALUE'),
100 'PARAM' => array('PARAMS'),
101 'METHODNAME' => array('METHODCALL'),
102 'PARAMS' => array('METHODCALL', 'METHODRESPONSE'),
103 'MEMBER' => array('STRUCT'),
104 'NAME' => array('MEMBER'),
105 'DATA' => array('ARRAY'),
106 'FAULT' => array('METHODRESPONSE'),
107 'VALUE' => array('MEMBER', 'DATA', 'PARAM', 'FAULT')
108 );
Barry Mienydd671972010-10-04 16:33:58 +0200109
110
Derek Allard2067d1a2008-11-13 22:59:24 +0000111 // XML-RPC Responses
112 $this->xmlrpcerr['unknown_method'] = '1';
113 $this->xmlrpcstr['unknown_method'] = 'This is not a known method for this XML-RPC Server';
114 $this->xmlrpcerr['invalid_return'] = '2';
Derek Jones37f4b9c2011-07-01 17:56:50 -0500115 $this->xmlrpcstr['invalid_return'] = 'The XML data received was either invalid or not in the correct form for XML-RPC. Turn on debugging to examine the XML data further.';
Derek Allard2067d1a2008-11-13 22:59:24 +0000116 $this->xmlrpcerr['incorrect_params'] = '3';
117 $this->xmlrpcstr['incorrect_params'] = 'Incorrect parameters were passed to method';
118 $this->xmlrpcerr['introspect_unknown'] = '4';
119 $this->xmlrpcstr['introspect_unknown'] = "Cannot inspect signature for request: method unknown";
120 $this->xmlrpcerr['http_error'] = '5';
121 $this->xmlrpcstr['http_error'] = "Did not receive a '200 OK' response from remote server.";
122 $this->xmlrpcerr['no_data'] = '6';
123 $this->xmlrpcstr['no_data'] ='No data received from server.';
Barry Mienydd671972010-10-04 16:33:58 +0200124
Derek Allard2067d1a2008-11-13 22:59:24 +0000125 $this->initialize($config);
Barry Mienydd671972010-10-04 16:33:58 +0200126
Derek Allard2067d1a2008-11-13 22:59:24 +0000127 log_message('debug', "XML-RPC Class Initialized");
128 }
Barry Mienydd671972010-10-04 16:33:58 +0200129
130
Derek Allard2067d1a2008-11-13 22:59:24 +0000131 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500132 // Initialize Prefs
Derek Allard2067d1a2008-11-13 22:59:24 +0000133 //-------------------------------------
134
135 function initialize($config = array())
136 {
Derek Jones33559102009-02-02 18:50:38 +0000137 if (count($config) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000138 {
139 foreach ($config as $key => $val)
140 {
141 if (isset($this->$key))
142 {
Barry Mienydd671972010-10-04 16:33:58 +0200143 $this->$key = $val;
Derek Allard2067d1a2008-11-13 22:59:24 +0000144 }
145 }
146 }
147 }
148 // END
Barry Mienydd671972010-10-04 16:33:58 +0200149
Derek Allard2067d1a2008-11-13 22:59:24 +0000150 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500151 // Take URL and parse it
Derek Allard2067d1a2008-11-13 22:59:24 +0000152 //-------------------------------------
153
154 function server($url, $port=80)
155 {
156 if (substr($url, 0, 4) != "http")
157 {
158 $url = "http://".$url;
159 }
Barry Mienydd671972010-10-04 16:33:58 +0200160
Derek Allard2067d1a2008-11-13 22:59:24 +0000161 $parts = parse_url($url);
Barry Mienydd671972010-10-04 16:33:58 +0200162
Derek Allard2067d1a2008-11-13 22:59:24 +0000163 $path = ( ! isset($parts['path'])) ? '/' : $parts['path'];
Barry Mienydd671972010-10-04 16:33:58 +0200164
Derek Allard2067d1a2008-11-13 22:59:24 +0000165 if (isset($parts['query']) && $parts['query'] != '')
166 {
167 $path .= '?'.$parts['query'];
Barry Mienydd671972010-10-04 16:33:58 +0200168 }
169
Derek Allard2067d1a2008-11-13 22:59:24 +0000170 $this->client = new XML_RPC_Client($path, $parts['host'], $port);
171 }
172 // END
Barry Mienydd671972010-10-04 16:33:58 +0200173
Derek Allard2067d1a2008-11-13 22:59:24 +0000174 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500175 // Set Timeout
Derek Allard2067d1a2008-11-13 22:59:24 +0000176 //-------------------------------------
177
178 function timeout($seconds=5)
179 {
180 if ( ! is_null($this->client) && is_int($seconds))
181 {
182 $this->client->timeout = $seconds;
183 }
184 }
185 // END
Barry Mienydd671972010-10-04 16:33:58 +0200186
Derek Allard2067d1a2008-11-13 22:59:24 +0000187 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500188 // Set Methods
Derek Allard2067d1a2008-11-13 22:59:24 +0000189 //-------------------------------------
190
191 function method($function)
192 {
193 $this->method = $function;
194 }
195 // END
Barry Mienydd671972010-10-04 16:33:58 +0200196
Derek Allard2067d1a2008-11-13 22:59:24 +0000197 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500198 // Take Array of Data and Create Objects
Derek Allard2067d1a2008-11-13 22:59:24 +0000199 //-------------------------------------
200
201 function request($incoming)
202 {
203 if ( ! is_array($incoming))
204 {
205 // Send Error
206 }
Barry Mienydd671972010-10-04 16:33:58 +0200207
Derek Allard2067d1a2008-11-13 22:59:24 +0000208 $this->data = array();
Barry Mienydd671972010-10-04 16:33:58 +0200209
Pascal Kriete14287f32011-02-14 13:39:34 -0500210 foreach ($incoming as $key => $value)
Derek Allard2067d1a2008-11-13 22:59:24 +0000211 {
212 $this->data[$key] = $this->values_parsing($value);
213 }
214 }
215 // END
Barry Mienydd671972010-10-04 16:33:58 +0200216
217
Derek Allard2067d1a2008-11-13 22:59:24 +0000218 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500219 // Set Debug
Derek Allard2067d1a2008-11-13 22:59:24 +0000220 //-------------------------------------
221
222 function set_debug($flag = TRUE)
223 {
224 $this->debug = ($flag == TRUE) ? TRUE : FALSE;
225 }
Barry Mienydd671972010-10-04 16:33:58 +0200226
Derek Allard2067d1a2008-11-13 22:59:24 +0000227 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500228 // Values Parsing
Derek Allard2067d1a2008-11-13 22:59:24 +0000229 //-------------------------------------
230
231 function values_parsing($value, $return = FALSE)
232 {
Derek Jones8c4b5e72010-01-06 22:21:41 +0000233 if (is_array($value) && array_key_exists(0, $value))
Derek Allard2067d1a2008-11-13 22:59:24 +0000234 {
Pascal Kriete14287f32011-02-14 13:39:34 -0500235 if ( ! isset($value['1']) OR ( ! isset($this->xmlrpcTypes[$value['1']])))
Derek Allard2067d1a2008-11-13 22:59:24 +0000236 {
237 if (is_array($value[0]))
238 {
239 $temp = new XML_RPC_Values($value['0'], 'array');
240 }
241 else
242 {
243 $temp = new XML_RPC_Values($value['0'], 'string');
244 }
245 }
Pascal Kriete14287f32011-02-14 13:39:34 -0500246 elseif (is_array($value['0']) && ($value['1'] == 'struct' OR $value['1'] == 'array'))
Derek Allard2067d1a2008-11-13 22:59:24 +0000247 {
248 while (list($k) = each($value['0']))
249 {
250 $value['0'][$k] = $this->values_parsing($value['0'][$k], TRUE);
251 }
Barry Mienydd671972010-10-04 16:33:58 +0200252
Derek Allard2067d1a2008-11-13 22:59:24 +0000253 $temp = new XML_RPC_Values($value['0'], $value['1']);
254 }
255 else
256 {
257 $temp = new XML_RPC_Values($value['0'], $value['1']);
258 }
259 }
260 else
261 {
262 $temp = new XML_RPC_Values($value, 'string');
263 }
264
265 return $temp;
266 }
267 // END
268
269
270 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500271 // Sends XML-RPC Request
Derek Allard2067d1a2008-11-13 22:59:24 +0000272 //-------------------------------------
273
274 function send_request()
275 {
276 $this->message = new XML_RPC_Message($this->method,$this->data);
277 $this->message->debug = $this->debug;
Barry Mienydd671972010-10-04 16:33:58 +0200278
Derek Allard2067d1a2008-11-13 22:59:24 +0000279 if ( ! $this->result = $this->client->send($this->message))
280 {
281 $this->error = $this->result->errstr;
282 return FALSE;
283 }
Pascal Kriete14287f32011-02-14 13:39:34 -0500284 elseif ( ! is_object($this->result->val))
Derek Allard2067d1a2008-11-13 22:59:24 +0000285 {
286 $this->error = $this->result->errstr;
287 return FALSE;
288 }
Barry Mienydd671972010-10-04 16:33:58 +0200289
Derek Allard2067d1a2008-11-13 22:59:24 +0000290 $this->response = $this->result->decode();
Barry Mienydd671972010-10-04 16:33:58 +0200291
Derek Allard2067d1a2008-11-13 22:59:24 +0000292 return TRUE;
293 }
294 // END
Barry Mienydd671972010-10-04 16:33:58 +0200295
Derek Allard2067d1a2008-11-13 22:59:24 +0000296 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500297 // Returns Error
Derek Allard2067d1a2008-11-13 22:59:24 +0000298 //-------------------------------------
299
300 function display_error()
301 {
302 return $this->error;
303 }
304 // END
Barry Mienydd671972010-10-04 16:33:58 +0200305
Derek Allard2067d1a2008-11-13 22:59:24 +0000306 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500307 // Returns Remote Server Response
Derek Allard2067d1a2008-11-13 22:59:24 +0000308 //-------------------------------------
309
310 function display_response()
311 {
312 return $this->response;
313 }
314 // END
Barry Mienydd671972010-10-04 16:33:58 +0200315
Derek Allard2067d1a2008-11-13 22:59:24 +0000316 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500317 // Sends an Error Message for Server Request
Derek Allard2067d1a2008-11-13 22:59:24 +0000318 //-------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200319
Derek Allard2067d1a2008-11-13 22:59:24 +0000320 function send_error_message($number, $message)
321 {
322 return new XML_RPC_Response('0',$number, $message);
323 }
324 // END
Barry Mienydd671972010-10-04 16:33:58 +0200325
326
Derek Allard2067d1a2008-11-13 22:59:24 +0000327 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500328 // Send Response for Server Request
Derek Allard2067d1a2008-11-13 22:59:24 +0000329 //-------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200330
Derek Allard2067d1a2008-11-13 22:59:24 +0000331 function send_response($response)
332 {
333 // $response should be array of values, which will be parsed
334 // based on their data and type into a valid group of XML-RPC values
Barry Mienydd671972010-10-04 16:33:58 +0200335
Derek Allard2067d1a2008-11-13 22:59:24 +0000336 $response = $this->values_parsing($response);
Barry Mienydd671972010-10-04 16:33:58 +0200337
Derek Allard2067d1a2008-11-13 22:59:24 +0000338 return new XML_RPC_Response($response);
339 }
340 // END
Barry Mienydd671972010-10-04 16:33:58 +0200341
Derek Allard2067d1a2008-11-13 22:59:24 +0000342} // END XML_RPC Class
343
Barry Mienydd671972010-10-04 16:33:58 +0200344
345
Derek Allard2067d1a2008-11-13 22:59:24 +0000346/**
347 * XML-RPC Client class
348 *
349 * @category XML-RPC
350 * @author ExpressionEngine Dev Team
351 * @link http://codeigniter.com/user_guide/libraries/xmlrpc.html
352 */
353class XML_RPC_Client extends CI_Xmlrpc
354{
355 var $path = '';
356 var $server = '';
357 var $port = 80;
358 var $errno = '';
359 var $errstring = '';
360 var $timeout = 5;
Pascal Kriete8761ef52011-02-14 13:13:52 -0500361 var $no_multicall = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000362
Greg Akera9263282010-11-10 15:26:43 -0600363 public function __construct($path, $server, $port=80)
Derek Allard2067d1a2008-11-13 22:59:24 +0000364 {
Greg Akera9263282010-11-10 15:26:43 -0600365 parent::__construct();
Barry Mienydd671972010-10-04 16:33:58 +0200366
Derek Allard2067d1a2008-11-13 22:59:24 +0000367 $this->port = $port;
368 $this->server = $server;
369 $this->path = $path;
370 }
Barry Mienydd671972010-10-04 16:33:58 +0200371
Derek Allard2067d1a2008-11-13 22:59:24 +0000372 function send($msg)
373 {
374 if (is_array($msg))
375 {
376 // Multi-call disabled
377 $r = new XML_RPC_Response(0, $this->xmlrpcerr['multicall_recursion'],$this->xmlrpcstr['multicall_recursion']);
378 return $r;
379 }
380
381 return $this->sendPayload($msg);
382 }
383
384 function sendPayload($msg)
Barry Mienydd671972010-10-04 16:33:58 +0200385 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000386 $fp = @fsockopen($this->server, $this->port,$this->errno, $this->errstr, $this->timeout);
Barry Mienydd671972010-10-04 16:33:58 +0200387
Derek Allard2067d1a2008-11-13 22:59:24 +0000388 if ( ! is_resource($fp))
389 {
390 error_log($this->xmlrpcstr['http_error']);
391 $r = new XML_RPC_Response(0, $this->xmlrpcerr['http_error'],$this->xmlrpcstr['http_error']);
392 return $r;
393 }
Barry Mienydd671972010-10-04 16:33:58 +0200394
Pascal Kriete14287f32011-02-14 13:39:34 -0500395 if (empty($msg->payload))
Derek Allard2067d1a2008-11-13 22:59:24 +0000396 {
397 // $msg = XML_RPC_Messages
398 $msg->createPayload();
399 }
Barry Mienydd671972010-10-04 16:33:58 +0200400
Derek Allard2067d1a2008-11-13 22:59:24 +0000401 $r = "\r\n";
Derek Jones37f4b9c2011-07-01 17:56:50 -0500402 $op = "POST {$this->path} HTTP/1.0$r";
Derek Allard2067d1a2008-11-13 22:59:24 +0000403 $op .= "Host: {$this->server}$r";
404 $op .= "Content-Type: text/xml$r";
405 $op .= "User-Agent: {$this->xmlrpcName}$r";
406 $op .= "Content-Length: ".strlen($msg->payload). "$r$r";
407 $op .= $msg->payload;
Barry Mienydd671972010-10-04 16:33:58 +0200408
Derek Allard2067d1a2008-11-13 22:59:24 +0000409
410 if ( ! fputs($fp, $op, strlen($op)))
411 {
412 error_log($this->xmlrpcstr['http_error']);
413 $r = new XML_RPC_Response(0, $this->xmlrpcerr['http_error'], $this->xmlrpcstr['http_error']);
414 return $r;
415 }
416 $resp = $msg->parseResponse($fp);
417 fclose($fp);
418 return $resp;
419 }
420
421} // end class XML_RPC_Client
422
423
424/**
425 * XML-RPC Response class
426 *
427 * @category XML-RPC
428 * @author ExpressionEngine Dev Team
429 * @link http://codeigniter.com/user_guide/libraries/xmlrpc.html
430 */
431class XML_RPC_Response
432{
433 var $val = 0;
434 var $errno = 0;
435 var $errstr = '';
436 var $headers = array();
Robin Sowellff3ecae2010-04-16 16:13:23 -0400437 var $xss_clean = TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000438
Greg Akera9263282010-11-10 15:26:43 -0600439 public function __construct($val, $code = 0, $fstr = '')
Barry Mienydd671972010-10-04 16:33:58 +0200440 {
Derek Allard2067d1a2008-11-13 22:59:24 +0000441 if ($code != 0)
442 {
443 // error
444 $this->errno = $code;
445 $this->errstr = htmlentities($fstr);
446 }
447 else if ( ! is_object($val))
448 {
449 // programmer error, not an object
Derek Jones37f4b9c2011-07-01 17:56:50 -0500450 error_log("Invalid type '" . gettype($val) . "' (value: $val) passed to XML_RPC_Response. Defaulting to empty value.");
Derek Allard2067d1a2008-11-13 22:59:24 +0000451 $this->val = new XML_RPC_Values();
452 }
453 else
454 {
455 $this->val = $val;
456 }
457 }
458
459 function faultCode()
460 {
461 return $this->errno;
462 }
463
464 function faultString()
465 {
466 return $this->errstr;
467 }
468
469 function value()
470 {
471 return $this->val;
472 }
Barry Mienydd671972010-10-04 16:33:58 +0200473
Derek Allard2067d1a2008-11-13 22:59:24 +0000474 function prepare_response()
475 {
476 $result = "<methodResponse>\n";
477 if ($this->errno)
478 {
479 $result .= '<fault>
480 <value>
481 <struct>
482 <member>
483 <name>faultCode</name>
484 <value><int>' . $this->errno . '</int></value>
485 </member>
486 <member>
487 <name>faultString</name>
488 <value><string>' . $this->errstr . '</string></value>
489 </member>
490 </struct>
491 </value>
492</fault>';
493 }
494 else
495 {
496 $result .= "<params>\n<param>\n" .
497 $this->val->serialize_class() .
498 "</param>\n</params>";
499 }
500 $result .= "\n</methodResponse>";
501 return $result;
502 }
Barry Mienydd671972010-10-04 16:33:58 +0200503
Derek Allard2067d1a2008-11-13 22:59:24 +0000504 function decode($array=FALSE)
505 {
506 $CI =& get_instance();
Derek Jones37f4b9c2011-07-01 17:56:50 -0500507
Derek Allard2067d1a2008-11-13 22:59:24 +0000508 if ($array !== FALSE && is_array($array))
509 {
510 while (list($key) = each($array))
511 {
512 if (is_array($array[$key]))
513 {
514 $array[$key] = $this->decode($array[$key]);
515 }
516 else
517 {
Robin Sowell66a3fc02010-03-18 09:44:55 -0400518 $array[$key] = ($this->xss_clean) ? $CI->security->xss_clean($array[$key]) : $array[$key];
Derek Allard2067d1a2008-11-13 22:59:24 +0000519 }
520 }
Barry Mienydd671972010-10-04 16:33:58 +0200521
Derek Allard2067d1a2008-11-13 22:59:24 +0000522 $result = $array;
523 }
524 else
525 {
526 $result = $this->xmlrpc_decoder($this->val);
Barry Mienydd671972010-10-04 16:33:58 +0200527
Derek Allard2067d1a2008-11-13 22:59:24 +0000528 if (is_array($result))
529 {
530 $result = $this->decode($result);
531 }
532 else
533 {
Robin Sowell66a3fc02010-03-18 09:44:55 -0400534 $result = ($this->xss_clean) ? $CI->security->xss_clean($result) : $result;
Derek Allard2067d1a2008-11-13 22:59:24 +0000535 }
536 }
Barry Mienydd671972010-10-04 16:33:58 +0200537
Derek Allard2067d1a2008-11-13 22:59:24 +0000538 return $result;
539 }
540
Barry Mienydd671972010-10-04 16:33:58 +0200541
542
Derek Allard2067d1a2008-11-13 22:59:24 +0000543 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500544 // XML-RPC Object to PHP Types
Derek Allard2067d1a2008-11-13 22:59:24 +0000545 //-------------------------------------
546
547 function xmlrpc_decoder($xmlrpc_val)
548 {
549 $kind = $xmlrpc_val->kindOf();
550
Pascal Kriete14287f32011-02-14 13:39:34 -0500551 if ($kind == 'scalar')
Derek Allard2067d1a2008-11-13 22:59:24 +0000552 {
553 return $xmlrpc_val->scalarval();
554 }
Pascal Kriete14287f32011-02-14 13:39:34 -0500555 elseif ($kind == 'array')
Derek Allard2067d1a2008-11-13 22:59:24 +0000556 {
557 reset($xmlrpc_val->me);
558 list($a,$b) = each($xmlrpc_val->me);
Derek Jones33559102009-02-02 18:50:38 +0000559 $size = count($b);
Barry Mienydd671972010-10-04 16:33:58 +0200560
Derek Allard2067d1a2008-11-13 22:59:24 +0000561 $arr = array();
562
Pascal Kriete14287f32011-02-14 13:39:34 -0500563 for ($i = 0; $i < $size; $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000564 {
565 $arr[] = $this->xmlrpc_decoder($xmlrpc_val->me['array'][$i]);
566 }
567 return $arr;
568 }
Pascal Kriete14287f32011-02-14 13:39:34 -0500569 elseif ($kind == 'struct')
Derek Allard2067d1a2008-11-13 22:59:24 +0000570 {
571 reset($xmlrpc_val->me['struct']);
572 $arr = array();
573
Pascal Kriete14287f32011-02-14 13:39:34 -0500574 while (list($key,$value) = each($xmlrpc_val->me['struct']))
Derek Allard2067d1a2008-11-13 22:59:24 +0000575 {
576 $arr[$key] = $this->xmlrpc_decoder($value);
577 }
578 return $arr;
579 }
580 }
Barry Mienydd671972010-10-04 16:33:58 +0200581
582
Derek Allard2067d1a2008-11-13 22:59:24 +0000583 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500584 // ISO-8601 time to server or UTC time
Derek Allard2067d1a2008-11-13 22:59:24 +0000585 //-------------------------------------
586
587 function iso8601_decode($time, $utc=0)
588 {
589 // return a timet in the localtime, or UTC
590 $t = 0;
591 if (preg_match('/([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})/', $time, $regs))
592 {
Pascal Kriete14287f32011-02-14 13:39:34 -0500593 $fnc = ($utc == 1) ? 'gmmktime' : 'mktime';
594 $t = $fnc($regs[4], $regs[5], $regs[6], $regs[2], $regs[3], $regs[1]);
Derek Allard2067d1a2008-11-13 22:59:24 +0000595 }
596 return $t;
597 }
Barry Mienydd671972010-10-04 16:33:58 +0200598
Derek Allard2067d1a2008-11-13 22:59:24 +0000599} // End Response Class
600
601
602
603/**
604 * XML-RPC Message class
605 *
606 * @category XML-RPC
607 * @author ExpressionEngine Dev Team
608 * @link http://codeigniter.com/user_guide/libraries/xmlrpc.html
609 */
610class XML_RPC_Message extends CI_Xmlrpc
611{
612 var $payload;
613 var $method_name;
614 var $params = array();
Barry Mienydd671972010-10-04 16:33:58 +0200615 var $xh = array();
Derek Allard2067d1a2008-11-13 22:59:24 +0000616
Greg Akera9263282010-11-10 15:26:43 -0600617 public function __construct($method, $pars=0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000618 {
Greg Akera9263282010-11-10 15:26:43 -0600619 parent::__construct();
Barry Mienydd671972010-10-04 16:33:58 +0200620
Derek Allard2067d1a2008-11-13 22:59:24 +0000621 $this->method_name = $method;
Derek Jones33559102009-02-02 18:50:38 +0000622 if (is_array($pars) && count($pars) > 0)
Derek Allard2067d1a2008-11-13 22:59:24 +0000623 {
Pascal Kriete14287f32011-02-14 13:39:34 -0500624 for ($i=0; $i<count($pars); $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000625 {
626 // $pars[$i] = XML_RPC_Values
627 $this->params[] = $pars[$i];
628 }
629 }
630 }
Barry Mienydd671972010-10-04 16:33:58 +0200631
Derek Allard2067d1a2008-11-13 22:59:24 +0000632 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500633 // Create Payload to Send
Derek Allard2067d1a2008-11-13 22:59:24 +0000634 //-------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200635
Derek Allard2067d1a2008-11-13 22:59:24 +0000636 function createPayload()
637 {
638 $this->payload = "<?xml version=\"1.0\"?".">\r\n<methodCall>\r\n";
639 $this->payload .= '<methodName>' . $this->method_name . "</methodName>\r\n";
640 $this->payload .= "<params>\r\n";
Barry Mienydd671972010-10-04 16:33:58 +0200641
Pascal Kriete14287f32011-02-14 13:39:34 -0500642 for ($i=0; $i<count($this->params); $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +0000643 {
644 // $p = XML_RPC_Values
645 $p = $this->params[$i];
646 $this->payload .= "<param>\r\n".$p->serialize_class()."</param>\r\n";
647 }
Barry Mienydd671972010-10-04 16:33:58 +0200648
Derek Allard2067d1a2008-11-13 22:59:24 +0000649 $this->payload .= "</params>\r\n</methodCall>\r\n";
650 }
Barry Mienydd671972010-10-04 16:33:58 +0200651
Derek Allard2067d1a2008-11-13 22:59:24 +0000652 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500653 // Parse External XML-RPC Server's Response
Derek Allard2067d1a2008-11-13 22:59:24 +0000654 //-------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200655
Derek Allard2067d1a2008-11-13 22:59:24 +0000656 function parseResponse($fp)
657 {
658 $data = '';
Barry Mienydd671972010-10-04 16:33:58 +0200659
Pascal Kriete14287f32011-02-14 13:39:34 -0500660 while ($datum = fread($fp, 4096))
Derek Allard2067d1a2008-11-13 22:59:24 +0000661 {
662 $data .= $datum;
663 }
Barry Mienydd671972010-10-04 16:33:58 +0200664
Derek Allard2067d1a2008-11-13 22:59:24 +0000665 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500666 // DISPLAY HTTP CONTENT for DEBUGGING
Derek Allard2067d1a2008-11-13 22:59:24 +0000667 //-------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200668
Derek Allard2067d1a2008-11-13 22:59:24 +0000669 if ($this->debug === TRUE)
670 {
671 echo "<pre>";
672 echo "---DATA---\n" . htmlspecialchars($data) . "\n---END DATA---\n\n";
673 echo "</pre>";
674 }
Barry Mienydd671972010-10-04 16:33:58 +0200675
Derek Allard2067d1a2008-11-13 22:59:24 +0000676 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500677 // Check for data
Derek Allard2067d1a2008-11-13 22:59:24 +0000678 //-------------------------------------
679
Pascal Kriete14287f32011-02-14 13:39:34 -0500680 if ($data == "")
Derek Allard2067d1a2008-11-13 22:59:24 +0000681 {
682 error_log($this->xmlrpcstr['no_data']);
683 $r = new XML_RPC_Response(0, $this->xmlrpcerr['no_data'], $this->xmlrpcstr['no_data']);
684 return $r;
685 }
Barry Mienydd671972010-10-04 16:33:58 +0200686
687
Derek Allard2067d1a2008-11-13 22:59:24 +0000688 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500689 // Check for HTTP 200 Response
Derek Allard2067d1a2008-11-13 22:59:24 +0000690 //-------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200691
Derek Allard2067d1a2008-11-13 22:59:24 +0000692 if (strncmp($data, 'HTTP', 4) == 0 && ! preg_match('/^HTTP\/[0-9\.]+ 200 /', $data))
693 {
694 $errstr= substr($data, 0, strpos($data, "\n")-1);
695 $r = new XML_RPC_Response(0, $this->xmlrpcerr['http_error'], $this->xmlrpcstr['http_error']. ' (' . $errstr . ')');
696 return $r;
697 }
Barry Mienydd671972010-10-04 16:33:58 +0200698
Derek Allard2067d1a2008-11-13 22:59:24 +0000699 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500700 // Create and Set Up XML Parser
Derek Allard2067d1a2008-11-13 22:59:24 +0000701 //-------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200702
Derek Allard2067d1a2008-11-13 22:59:24 +0000703 $parser = xml_parser_create($this->xmlrpc_defencoding);
704
Barry Mienydd671972010-10-04 16:33:58 +0200705 $this->xh[$parser] = array();
706 $this->xh[$parser]['isf'] = 0;
707 $this->xh[$parser]['ac'] = '';
708 $this->xh[$parser]['headers'] = array();
709 $this->xh[$parser]['stack'] = array();
710 $this->xh[$parser]['valuestack'] = array();
711 $this->xh[$parser]['isf_reason'] = 0;
Derek Allard2067d1a2008-11-13 22:59:24 +0000712
713 xml_set_object($parser, $this);
714 xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, true);
715 xml_set_element_handler($parser, 'open_tag', 'closing_tag');
716 xml_set_character_data_handler($parser, 'character_data');
717 //xml_set_default_handler($parser, 'default_handler');
718
719
720 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500721 // GET HEADERS
Derek Allard2067d1a2008-11-13 22:59:24 +0000722 //-------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200723
Derek Allard2067d1a2008-11-13 22:59:24 +0000724 $lines = explode("\r\n", $data);
725 while (($line = array_shift($lines)))
726 {
727 if (strlen($line) < 1)
728 {
729 break;
730 }
731 $this->xh[$parser]['headers'][] = $line;
732 }
733 $data = implode("\r\n", $lines);
Barry Mienydd671972010-10-04 16:33:58 +0200734
735
Derek Allard2067d1a2008-11-13 22:59:24 +0000736 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500737 // PARSE XML DATA
Barry Mienydd671972010-10-04 16:33:58 +0200738 //-------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000739
Derek Jones33559102009-02-02 18:50:38 +0000740 if ( ! xml_parse($parser, $data, count($data)))
Derek Allard2067d1a2008-11-13 22:59:24 +0000741 {
742 $errstr = sprintf('XML error: %s at line %d',
743 xml_error_string(xml_get_error_code($parser)),
744 xml_get_current_line_number($parser));
745 //error_log($errstr);
746 $r = new XML_RPC_Response(0, $this->xmlrpcerr['invalid_return'], $this->xmlrpcstr['invalid_return']);
747 xml_parser_free($parser);
748 return $r;
749 }
750 xml_parser_free($parser);
Barry Mienydd671972010-10-04 16:33:58 +0200751
Derek Allard2067d1a2008-11-13 22:59:24 +0000752 // ---------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500753 // Got Ourselves Some Badness, It Seems
Derek Allard2067d1a2008-11-13 22:59:24 +0000754 // ---------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200755
Derek Allard2067d1a2008-11-13 22:59:24 +0000756 if ($this->xh[$parser]['isf'] > 1)
757 {
758 if ($this->debug === TRUE)
759 {
760 echo "---Invalid Return---\n";
761 echo $this->xh[$parser]['isf_reason'];
762 echo "---Invalid Return---\n\n";
763 }
Barry Mienydd671972010-10-04 16:33:58 +0200764
Derek Allard2067d1a2008-11-13 22:59:24 +0000765 $r = new XML_RPC_Response(0, $this->xmlrpcerr['invalid_return'],$this->xmlrpcstr['invalid_return'].' '.$this->xh[$parser]['isf_reason']);
766 return $r;
767 }
768 elseif ( ! is_object($this->xh[$parser]['value']))
769 {
770 $r = new XML_RPC_Response(0, $this->xmlrpcerr['invalid_return'],$this->xmlrpcstr['invalid_return'].' '.$this->xh[$parser]['isf_reason']);
771 return $r;
772 }
Barry Mienydd671972010-10-04 16:33:58 +0200773
Derek Allard2067d1a2008-11-13 22:59:24 +0000774 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500775 // DISPLAY XML CONTENT for DEBUGGING
Barry Mienydd671972010-10-04 16:33:58 +0200776 //-------------------------------------
777
Derek Allard2067d1a2008-11-13 22:59:24 +0000778 if ($this->debug === TRUE)
779 {
780 echo "<pre>";
Barry Mienydd671972010-10-04 16:33:58 +0200781
Derek Allard2067d1a2008-11-13 22:59:24 +0000782 if (count($this->xh[$parser]['headers'] > 0))
783 {
784 echo "---HEADERS---\n";
785 foreach ($this->xh[$parser]['headers'] as $header)
786 {
787 echo "$header\n";
788 }
789 echo "---END HEADERS---\n\n";
790 }
Barry Mienydd671972010-10-04 16:33:58 +0200791
Derek Allard2067d1a2008-11-13 22:59:24 +0000792 echo "---DATA---\n" . htmlspecialchars($data) . "\n---END DATA---\n\n";
Barry Mienydd671972010-10-04 16:33:58 +0200793
Derek Allard2067d1a2008-11-13 22:59:24 +0000794 echo "---PARSED---\n" ;
795 var_dump($this->xh[$parser]['value']);
796 echo "\n---END PARSED---</pre>";
797 }
Barry Mienydd671972010-10-04 16:33:58 +0200798
Derek Allard2067d1a2008-11-13 22:59:24 +0000799 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500800 // SEND RESPONSE
Derek Allard2067d1a2008-11-13 22:59:24 +0000801 //-------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200802
Derek Allard2067d1a2008-11-13 22:59:24 +0000803 $v = $this->xh[$parser]['value'];
Barry Mienydd671972010-10-04 16:33:58 +0200804
Derek Allard2067d1a2008-11-13 22:59:24 +0000805 if ($this->xh[$parser]['isf'])
806 {
807 $errno_v = $v->me['struct']['faultCode'];
808 $errstr_v = $v->me['struct']['faultString'];
809 $errno = $errno_v->scalarval();
810
811 if ($errno == 0)
812 {
813 // FAULT returned, errno needs to reflect that
814 $errno = -1;
815 }
816
817 $r = new XML_RPC_Response($v, $errno, $errstr_v->scalarval());
818 }
819 else
820 {
821 $r = new XML_RPC_Response($v);
822 }
823
824 $r->headers = $this->xh[$parser]['headers'];
825 return $r;
826 }
Barry Mienydd671972010-10-04 16:33:58 +0200827
Derek Allard2067d1a2008-11-13 22:59:24 +0000828 // ------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500829 // Begin Return Message Parsing section
Derek Allard2067d1a2008-11-13 22:59:24 +0000830 // ------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +0200831
Derek Allard2067d1a2008-11-13 22:59:24 +0000832 // quick explanation of components:
Derek Jones37f4b9c2011-07-01 17:56:50 -0500833 // ac - used to accumulate values
834 // isf - used to indicate a fault
835 // lv - used to indicate "looking for a value": implements
Derek Allard2067d1a2008-11-13 22:59:24 +0000836 // the logic to allow values with no types to be strings
Derek Jones37f4b9c2011-07-01 17:56:50 -0500837 // params - used to store parameters in method calls
838 // method - used to store method name
Derek Allard2067d1a2008-11-13 22:59:24 +0000839 // stack - array with parent tree of the xml element,
840 // used to validate the nesting of elements
841
842 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500843 // Start Element Handler
Derek Allard2067d1a2008-11-13 22:59:24 +0000844 //-------------------------------------
845
846 function open_tag($the_parser, $name, $attrs)
847 {
848 // If invalid nesting, then return
849 if ($this->xh[$the_parser]['isf'] > 1) return;
Barry Mienydd671972010-10-04 16:33:58 +0200850
Derek Allard2067d1a2008-11-13 22:59:24 +0000851 // Evaluate and check for correct nesting of XML elements
Barry Mienydd671972010-10-04 16:33:58 +0200852
Derek Allard2067d1a2008-11-13 22:59:24 +0000853 if (count($this->xh[$the_parser]['stack']) == 0)
854 {
855 if ($name != 'METHODRESPONSE' && $name != 'METHODCALL')
856 {
857 $this->xh[$the_parser]['isf'] = 2;
858 $this->xh[$the_parser]['isf_reason'] = 'Top level XML-RPC element is missing';
859 return;
860 }
861 }
862 else
863 {
864 // not top level element: see if parent is OK
865 if ( ! in_array($this->xh[$the_parser]['stack'][0], $this->valid_parents[$name], TRUE))
866 {
867 $this->xh[$the_parser]['isf'] = 2;
868 $this->xh[$the_parser]['isf_reason'] = "XML-RPC element $name cannot be child of ".$this->xh[$the_parser]['stack'][0];
869 return;
870 }
871 }
Barry Mienydd671972010-10-04 16:33:58 +0200872
Derek Allard2067d1a2008-11-13 22:59:24 +0000873 switch($name)
874 {
875 case 'STRUCT':
876 case 'ARRAY':
877 // Creates array for child elements
Barry Mienydd671972010-10-04 16:33:58 +0200878
Derek Allard2067d1a2008-11-13 22:59:24 +0000879 $cur_val = array('value' => array(),
880 'type' => $name);
Barry Mienydd671972010-10-04 16:33:58 +0200881
Derek Allard2067d1a2008-11-13 22:59:24 +0000882 array_unshift($this->xh[$the_parser]['valuestack'], $cur_val);
883 break;
884 case 'METHODNAME':
885 case 'NAME':
886 $this->xh[$the_parser]['ac'] = '';
887 break;
888 case 'FAULT':
889 $this->xh[$the_parser]['isf'] = 1;
890 break;
891 case 'PARAM':
Pascal Kriete8761ef52011-02-14 13:13:52 -0500892 $this->xh[$the_parser]['value'] = NULL;
Derek Allard2067d1a2008-11-13 22:59:24 +0000893 break;
894 case 'VALUE':
895 $this->xh[$the_parser]['vt'] = 'value';
896 $this->xh[$the_parser]['ac'] = '';
897 $this->xh[$the_parser]['lv'] = 1;
898 break;
899 case 'I4':
900 case 'INT':
901 case 'STRING':
902 case 'BOOLEAN':
903 case 'DOUBLE':
904 case 'DATETIME.ISO8601':
905 case 'BASE64':
906 if ($this->xh[$the_parser]['vt'] != 'value')
907 {
908 //two data elements inside a value: an error occurred!
909 $this->xh[$the_parser]['isf'] = 2;
910 $this->xh[$the_parser]['isf_reason'] = "'Twas a $name element following a ".$this->xh[$the_parser]['vt']." element inside a single value";
911 return;
912 }
Barry Mienydd671972010-10-04 16:33:58 +0200913
Derek Allard2067d1a2008-11-13 22:59:24 +0000914 $this->xh[$the_parser]['ac'] = '';
915 break;
916 case 'MEMBER':
917 // Set name of <member> to nothing to prevent errors later if no <name> is found
918 $this->xh[$the_parser]['valuestack'][0]['name'] = '';
Barry Mienydd671972010-10-04 16:33:58 +0200919
Derek Allard2067d1a2008-11-13 22:59:24 +0000920 // Set NULL value to check to see if value passed for this param/member
Pascal Kriete8761ef52011-02-14 13:13:52 -0500921 $this->xh[$the_parser]['value'] = NULL;
Derek Allard2067d1a2008-11-13 22:59:24 +0000922 break;
923 case 'DATA':
924 case 'METHODCALL':
925 case 'METHODRESPONSE':
926 case 'PARAMS':
927 // valid elements that add little to processing
928 break;
929 default:
930 /// An Invalid Element is Found, so we have trouble
931 $this->xh[$the_parser]['isf'] = 2;
932 $this->xh[$the_parser]['isf_reason'] = "Invalid XML-RPC element found: $name";
933 break;
934 }
Barry Mienydd671972010-10-04 16:33:58 +0200935
Derek Allard2067d1a2008-11-13 22:59:24 +0000936 // Add current element name to stack, to allow validation of nesting
937 array_unshift($this->xh[$the_parser]['stack'], $name);
938
939 if ($name != 'VALUE') $this->xh[$the_parser]['lv'] = 0;
940 }
941 // END
942
943
944 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -0500945 // End Element Handler
Derek Allard2067d1a2008-11-13 22:59:24 +0000946 //-------------------------------------
947
948 function closing_tag($the_parser, $name)
949 {
950 if ($this->xh[$the_parser]['isf'] > 1) return;
Barry Mienydd671972010-10-04 16:33:58 +0200951
Derek Allard2067d1a2008-11-13 22:59:24 +0000952 // Remove current element from stack and set variable
953 // NOTE: If the XML validates, then we do not have to worry about
Derek Jones37f4b9c2011-07-01 17:56:50 -0500954 // the opening and closing of elements. Nesting is checked on the opening
Derek Allard2067d1a2008-11-13 22:59:24 +0000955 // tag so we be safe there as well.
Barry Mienydd671972010-10-04 16:33:58 +0200956
Derek Allard2067d1a2008-11-13 22:59:24 +0000957 $curr_elem = array_shift($this->xh[$the_parser]['stack']);
Barry Mienydd671972010-10-04 16:33:58 +0200958
Derek Allard2067d1a2008-11-13 22:59:24 +0000959 switch($name)
960 {
961 case 'STRUCT':
962 case 'ARRAY':
963 $cur_val = array_shift($this->xh[$the_parser]['valuestack']);
964 $this->xh[$the_parser]['value'] = ( ! isset($cur_val['values'])) ? array() : $cur_val['values'];
965 $this->xh[$the_parser]['vt'] = strtolower($name);
966 break;
967 case 'NAME':
968 $this->xh[$the_parser]['valuestack'][0]['name'] = $this->xh[$the_parser]['ac'];
969 break;
970 case 'BOOLEAN':
971 case 'I4':
972 case 'INT':
973 case 'STRING':
974 case 'DOUBLE':
975 case 'DATETIME.ISO8601':
976 case 'BASE64':
977 $this->xh[$the_parser]['vt'] = strtolower($name);
Barry Mienydd671972010-10-04 16:33:58 +0200978
Derek Allard2067d1a2008-11-13 22:59:24 +0000979 if ($name == 'STRING')
980 {
981 $this->xh[$the_parser]['value'] = $this->xh[$the_parser]['ac'];
982 }
983 elseif ($name=='DATETIME.ISO8601')
984 {
985 $this->xh[$the_parser]['vt'] = $this->xmlrpcDateTime;
986 $this->xh[$the_parser]['value'] = $this->xh[$the_parser]['ac'];
987 }
988 elseif ($name=='BASE64')
989 {
990 $this->xh[$the_parser]['value'] = base64_decode($this->xh[$the_parser]['ac']);
991 }
992 elseif ($name=='BOOLEAN')
993 {
994 // Translated BOOLEAN values to TRUE AND FALSE
995 if ($this->xh[$the_parser]['ac'] == '1')
996 {
997 $this->xh[$the_parser]['value'] = TRUE;
998 }
999 else
1000 {
1001 $this->xh[$the_parser]['value'] = FALSE;
1002 }
1003 }
1004 elseif ($name=='DOUBLE')
1005 {
1006 // we have a DOUBLE
1007 // we must check that only 0123456789-.<space> are characters here
1008 if ( ! preg_match('/^[+-]?[eE0-9\t \.]+$/', $this->xh[$the_parser]['ac']))
1009 {
1010 $this->xh[$the_parser]['value'] = 'ERROR_NON_NUMERIC_FOUND';
1011 }
1012 else
1013 {
1014 $this->xh[$the_parser]['value'] = (double)$this->xh[$the_parser]['ac'];
1015 }
1016 }
1017 else
1018 {
1019 // we have an I4/INT
1020 // we must check that only 0123456789-<space> are characters here
1021 if ( ! preg_match('/^[+-]?[0-9\t ]+$/', $this->xh[$the_parser]['ac']))
1022 {
1023 $this->xh[$the_parser]['value'] = 'ERROR_NON_NUMERIC_FOUND';
1024 }
1025 else
1026 {
1027 $this->xh[$the_parser]['value'] = (int)$this->xh[$the_parser]['ac'];
1028 }
1029 }
1030 $this->xh[$the_parser]['ac'] = '';
1031 $this->xh[$the_parser]['lv'] = 3; // indicate we've found a value
1032 break;
1033 case 'VALUE':
1034 // This if() detects if no scalar was inside <VALUE></VALUE>
1035 if ($this->xh[$the_parser]['vt']=='value')
1036 {
1037 $this->xh[$the_parser]['value'] = $this->xh[$the_parser]['ac'];
1038 $this->xh[$the_parser]['vt'] = $this->xmlrpcString;
1039 }
Barry Mienydd671972010-10-04 16:33:58 +02001040
Derek Allard2067d1a2008-11-13 22:59:24 +00001041 // build the XML-RPC value out of the data received, and substitute it
1042 $temp = new XML_RPC_Values($this->xh[$the_parser]['value'], $this->xh[$the_parser]['vt']);
Barry Mienydd671972010-10-04 16:33:58 +02001043
Derek Allard2067d1a2008-11-13 22:59:24 +00001044 if (count($this->xh[$the_parser]['valuestack']) && $this->xh[$the_parser]['valuestack'][0]['type'] == 'ARRAY')
1045 {
1046 // Array
1047 $this->xh[$the_parser]['valuestack'][0]['values'][] = $temp;
1048 }
1049 else
1050 {
1051 // Struct
1052 $this->xh[$the_parser]['value'] = $temp;
1053 }
1054 break;
1055 case 'MEMBER':
1056 $this->xh[$the_parser]['ac']='';
Barry Mienydd671972010-10-04 16:33:58 +02001057
Derek Allard2067d1a2008-11-13 22:59:24 +00001058 // If value add to array in the stack for the last element built
1059 if ($this->xh[$the_parser]['value'])
1060 {
1061 $this->xh[$the_parser]['valuestack'][0]['values'][$this->xh[$the_parser]['valuestack'][0]['name']] = $this->xh[$the_parser]['value'];
1062 }
1063 break;
1064 case 'DATA':
1065 $this->xh[$the_parser]['ac']='';
1066 break;
1067 case 'PARAM':
1068 if ($this->xh[$the_parser]['value'])
1069 {
1070 $this->xh[$the_parser]['params'][] = $this->xh[$the_parser]['value'];
1071 }
1072 break;
1073 case 'METHODNAME':
1074 $this->xh[$the_parser]['method'] = ltrim($this->xh[$the_parser]['ac']);
1075 break;
1076 case 'PARAMS':
1077 case 'FAULT':
1078 case 'METHODCALL':
1079 case 'METHORESPONSE':
1080 // We're all good kids with nuthin' to do
1081 break;
1082 default:
Derek Jones37f4b9c2011-07-01 17:56:50 -05001083 // End of an Invalid Element. Taken care of during the opening tag though
Derek Allard2067d1a2008-11-13 22:59:24 +00001084 break;
1085 }
1086 }
1087
1088 //-------------------------------------
Derek Jones37f4b9c2011-07-01 17:56:50 -05001089 // Parses Character Data
Derek Allard2067d1a2008-11-13 22:59:24 +00001090 //-------------------------------------
1091
1092 function character_data($the_parser, $data)
1093 {
1094 if ($this->xh[$the_parser]['isf'] > 1) return; // XML Fault found already
Barry Mienydd671972010-10-04 16:33:58 +02001095
Derek Allard2067d1a2008-11-13 22:59:24 +00001096 // If a value has not been found
1097 if ($this->xh[$the_parser]['lv'] != 3)
1098 {
1099 if ($this->xh[$the_parser]['lv'] == 1)
1100 {
1101 $this->xh[$the_parser]['lv'] = 2; // Found a value
1102 }
Barry Mienydd671972010-10-04 16:33:58 +02001103
Pascal Kriete14287f32011-02-14 13:39:34 -05001104 if ( ! @isset($this->xh[$the_parser]['ac']))
Derek Allard2067d1a2008-11-13 22:59:24 +00001105 {
1106 $this->xh[$the_parser]['ac'] = '';
1107 }
Barry Mienydd671972010-10-04 16:33:58 +02001108
Derek Allard2067d1a2008-11-13 22:59:24 +00001109 $this->xh[$the_parser]['ac'] .= $data;
1110 }
1111 }
Barry Mienydd671972010-10-04 16:33:58 +02001112
1113
Derek Allard2067d1a2008-11-13 22:59:24 +00001114 function addParam($par) { $this->params[]=$par; }
Barry Mienydd671972010-10-04 16:33:58 +02001115
Derek Allard2067d1a2008-11-13 22:59:24 +00001116 function output_parameters($array=FALSE)
1117 {
Barry Mienydd671972010-10-04 16:33:58 +02001118 $CI =& get_instance();
Derek Jones37f4b9c2011-07-01 17:56:50 -05001119
Derek Allard2067d1a2008-11-13 22:59:24 +00001120 if ($array !== FALSE && is_array($array))
1121 {
1122 while (list($key) = each($array))
1123 {
1124 if (is_array($array[$key]))
1125 {
1126 $array[$key] = $this->output_parameters($array[$key]);
1127 }
1128 else
1129 {
Derek Jonesa9647e82010-03-02 22:59:07 -06001130 // 'bits' is for the MetaWeblog API image bits
1131 // @todo - this needs to be made more general purpose
Robin Sowell66a3fc02010-03-18 09:44:55 -04001132 $array[$key] = ($key == 'bits' OR $this->xss_clean == FALSE) ? $array[$key] : $CI->security->xss_clean($array[$key]);
Derek Allard2067d1a2008-11-13 22:59:24 +00001133 }
1134 }
Barry Mienydd671972010-10-04 16:33:58 +02001135
Derek Allard2067d1a2008-11-13 22:59:24 +00001136 $parameters = $array;
1137 }
1138 else
1139 {
1140 $parameters = array();
Barry Mienydd671972010-10-04 16:33:58 +02001141
Derek Jones33559102009-02-02 18:50:38 +00001142 for ($i = 0; $i < count($this->params); $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001143 {
1144 $a_param = $this->decode_message($this->params[$i]);
Barry Mienydd671972010-10-04 16:33:58 +02001145
Derek Allard2067d1a2008-11-13 22:59:24 +00001146 if (is_array($a_param))
1147 {
1148 $parameters[] = $this->output_parameters($a_param);
1149 }
1150 else
1151 {
Robin Sowell66a3fc02010-03-18 09:44:55 -04001152 $parameters[] = ($this->xss_clean) ? $CI->security->xss_clean($a_param) : $a_param;
Derek Allard2067d1a2008-11-13 22:59:24 +00001153 }
Barry Mienydd671972010-10-04 16:33:58 +02001154 }
Derek Allard2067d1a2008-11-13 22:59:24 +00001155 }
Barry Mienydd671972010-10-04 16:33:58 +02001156
Derek Allard2067d1a2008-11-13 22:59:24 +00001157 return $parameters;
1158 }
Barry Mienydd671972010-10-04 16:33:58 +02001159
1160
Derek Allard2067d1a2008-11-13 22:59:24 +00001161 function decode_message($param)
1162 {
1163 $kind = $param->kindOf();
1164
Pascal Kriete14287f32011-02-14 13:39:34 -05001165 if ($kind == 'scalar')
Derek Allard2067d1a2008-11-13 22:59:24 +00001166 {
1167 return $param->scalarval();
1168 }
Pascal Kriete14287f32011-02-14 13:39:34 -05001169 elseif ($kind == 'array')
Derek Allard2067d1a2008-11-13 22:59:24 +00001170 {
1171 reset($param->me);
1172 list($a,$b) = each($param->me);
Barry Mienydd671972010-10-04 16:33:58 +02001173
Derek Allard2067d1a2008-11-13 22:59:24 +00001174 $arr = array();
1175
Derek Jones33559102009-02-02 18:50:38 +00001176 for($i = 0; $i < count($b); $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001177 {
1178 $arr[] = $this->decode_message($param->me['array'][$i]);
1179 }
Barry Mienydd671972010-10-04 16:33:58 +02001180
Derek Allard2067d1a2008-11-13 22:59:24 +00001181 return $arr;
1182 }
Pascal Kriete14287f32011-02-14 13:39:34 -05001183 elseif ($kind == 'struct')
Derek Allard2067d1a2008-11-13 22:59:24 +00001184 {
1185 reset($param->me['struct']);
Barry Mienydd671972010-10-04 16:33:58 +02001186
Derek Allard2067d1a2008-11-13 22:59:24 +00001187 $arr = array();
1188
Pascal Kriete14287f32011-02-14 13:39:34 -05001189 while (list($key,$value) = each($param->me['struct']))
Derek Allard2067d1a2008-11-13 22:59:24 +00001190 {
1191 $arr[$key] = $this->decode_message($value);
1192 }
Barry Mienydd671972010-10-04 16:33:58 +02001193
Derek Allard2067d1a2008-11-13 22:59:24 +00001194 return $arr;
1195 }
1196 }
Barry Mienydd671972010-10-04 16:33:58 +02001197
Derek Allard2067d1a2008-11-13 22:59:24 +00001198} // End XML_RPC_Messages class
1199
1200
1201
1202/**
1203 * XML-RPC Values class
1204 *
1205 * @category XML-RPC
1206 * @author ExpressionEngine Dev Team
1207 * @link http://codeigniter.com/user_guide/libraries/xmlrpc.html
1208 */
1209class XML_RPC_Values extends CI_Xmlrpc
1210{
Barry Mienydd671972010-10-04 16:33:58 +02001211 var $me = array();
Derek Allard2067d1a2008-11-13 22:59:24 +00001212 var $mytype = 0;
1213
Greg Akera9263282010-11-10 15:26:43 -06001214 public function __construct($val=-1, $type='')
Barry Mienydd671972010-10-04 16:33:58 +02001215 {
Greg Akera9263282010-11-10 15:26:43 -06001216 parent::__construct();
Barry Mienydd671972010-10-04 16:33:58 +02001217
Derek Allard2067d1a2008-11-13 22:59:24 +00001218 if ($val != -1 OR $type != '')
1219 {
1220 $type = $type == '' ? 'string' : $type;
Barry Mienydd671972010-10-04 16:33:58 +02001221
Derek Allard2067d1a2008-11-13 22:59:24 +00001222 if ($this->xmlrpcTypes[$type] == 1)
1223 {
1224 $this->addScalar($val,$type);
1225 }
1226 elseif ($this->xmlrpcTypes[$type] == 2)
1227 {
1228 $this->addArray($val);
1229 }
1230 elseif ($this->xmlrpcTypes[$type] == 3)
1231 {
1232 $this->addStruct($val);
1233 }
1234 }
1235 }
1236
1237 function addScalar($val, $type='string')
1238 {
1239 $typeof = $this->xmlrpcTypes[$type];
Barry Mienydd671972010-10-04 16:33:58 +02001240
Derek Allard2067d1a2008-11-13 22:59:24 +00001241 if ($this->mytype==1)
1242 {
1243 echo '<strong>XML_RPC_Values</strong>: scalar can have only one value<br />';
1244 return 0;
1245 }
Barry Mienydd671972010-10-04 16:33:58 +02001246
Derek Allard2067d1a2008-11-13 22:59:24 +00001247 if ($typeof != 1)
1248 {
1249 echo '<strong>XML_RPC_Values</strong>: not a scalar type (${typeof})<br />';
1250 return 0;
1251 }
1252
1253 if ($type == $this->xmlrpcBoolean)
1254 {
1255 if (strcasecmp($val,'true')==0 OR $val==1 OR ($val==true && strcasecmp($val,'false')))
1256 {
1257 $val = 1;
1258 }
1259 else
1260 {
1261 $val=0;
1262 }
1263 }
1264
1265 if ($this->mytype == 2)
1266 {
1267 // adding to an array here
1268 $ar = $this->me['array'];
1269 $ar[] = new XML_RPC_Values($val, $type);
1270 $this->me['array'] = $ar;
1271 }
1272 else
1273 {
1274 // a scalar, so set the value and remember we're scalar
1275 $this->me[$type] = $val;
1276 $this->mytype = $typeof;
1277 }
1278 return 1;
1279 }
1280
1281 function addArray($vals)
1282 {
1283 if ($this->mytype != 0)
1284 {
1285 echo '<strong>XML_RPC_Values</strong>: already initialized as a [' . $this->kindOf() . ']<br />';
1286 return 0;
1287 }
1288
1289 $this->mytype = $this->xmlrpcTypes['array'];
1290 $this->me['array'] = $vals;
1291 return 1;
1292 }
1293
1294 function addStruct($vals)
1295 {
1296 if ($this->mytype != 0)
1297 {
1298 echo '<strong>XML_RPC_Values</strong>: already initialized as a [' . $this->kindOf() . ']<br />';
1299 return 0;
1300 }
1301 $this->mytype = $this->xmlrpcTypes['struct'];
1302 $this->me['struct'] = $vals;
1303 return 1;
1304 }
1305
1306 function kindOf()
1307 {
1308 switch($this->mytype)
1309 {
1310 case 3:
1311 return 'struct';
1312 break;
1313 case 2:
1314 return 'array';
1315 break;
1316 case 1:
1317 return 'scalar';
1318 break;
1319 default:
1320 return 'undef';
1321 }
1322 }
1323
1324 function serializedata($typ, $val)
1325 {
1326 $rs = '';
Derek Jonesa9647e82010-03-02 22:59:07 -06001327
Derek Allard2067d1a2008-11-13 22:59:24 +00001328 switch($this->xmlrpcTypes[$typ])
1329 {
1330 case 3:
1331 // struct
1332 $rs .= "<struct>\n";
1333 reset($val);
Pascal Kriete14287f32011-02-14 13:39:34 -05001334 while (list($key2, $val2) = each($val))
Derek Allard2067d1a2008-11-13 22:59:24 +00001335 {
1336 $rs .= "<member>\n<name>{$key2}</name>\n";
1337 $rs .= $this->serializeval($val2);
1338 $rs .= "</member>\n";
1339 }
1340 $rs .= '</struct>';
1341 break;
1342 case 2:
1343 // array
1344 $rs .= "<array>\n<data>\n";
Derek Jones33559102009-02-02 18:50:38 +00001345 for($i=0; $i < count($val); $i++)
Derek Allard2067d1a2008-11-13 22:59:24 +00001346 {
1347 $rs .= $this->serializeval($val[$i]);
1348 }
1349 $rs.="</data>\n</array>\n";
1350 break;
1351 case 1:
1352 // others
1353 switch ($typ)
1354 {
1355 case $this->xmlrpcBase64:
Derek Jonesb8d3c3d2009-06-24 15:27:01 +00001356 $rs .= "<{$typ}>" . base64_encode((string)$val) . "</{$typ}>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +00001357 break;
1358 case $this->xmlrpcBoolean:
Derek Jonesb8d3c3d2009-06-24 15:27:01 +00001359 $rs .= "<{$typ}>" . ((bool)$val ? '1' : '0') . "</{$typ}>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +00001360 break;
1361 case $this->xmlrpcString:
Derek Jonesb8d3c3d2009-06-24 15:27:01 +00001362 $rs .= "<{$typ}>" . htmlspecialchars((string)$val). "</{$typ}>\n";
Derek Allard2067d1a2008-11-13 22:59:24 +00001363 break;
1364 default:
1365 $rs .= "<{$typ}>{$val}</{$typ}>\n";
1366 break;
1367 }
1368 default:
1369 break;
1370 }
1371 return $rs;
1372 }
1373
1374 function serialize_class()
1375 {
1376 return $this->serializeval($this);
1377 }
1378
1379 function serializeval($o)
1380 {
1381 $ar = $o->me;
1382 reset($ar);
Barry Mienydd671972010-10-04 16:33:58 +02001383
Derek Allard2067d1a2008-11-13 22:59:24 +00001384 list($typ, $val) = each($ar);
1385 $rs = "<value>\n".$this->serializedata($typ, $val)."</value>\n";
1386 return $rs;
1387 }
Barry Mienydd671972010-10-04 16:33:58 +02001388
Derek Allard2067d1a2008-11-13 22:59:24 +00001389 function scalarval()
1390 {
1391 reset($this->me);
1392 list($a,$b) = each($this->me);
1393 return $b;
1394 }
1395
1396
1397 //-------------------------------------
1398 // Encode time in ISO-8601 form.
1399 //-------------------------------------
Barry Mienydd671972010-10-04 16:33:58 +02001400
Derek Allard2067d1a2008-11-13 22:59:24 +00001401 // Useful for sending time in XML-RPC
1402
1403 function iso8601_encode($time, $utc=0)
Barry Mienydd671972010-10-04 16:33:58 +02001404 {
Derek Allard2067d1a2008-11-13 22:59:24 +00001405 if ($utc == 1)
1406 {
1407 $t = strftime("%Y%m%dT%H:%M:%S", $time);
1408 }
1409 else
1410 {
1411 if (function_exists('gmstrftime'))
1412 $t = gmstrftime("%Y%m%dT%H:%M:%S", $time);
1413 else
1414 $t = strftime("%Y%m%dT%H:%M:%S", $time - date('Z'));
1415 }
1416 return $t;
1417 }
Barry Mienydd671972010-10-04 16:33:58 +02001418
Derek Allard2067d1a2008-11-13 22:59:24 +00001419}
1420// END XML_RPC_Values Class
1421
1422/* End of file Xmlrpc.php */
Derek Jonesa3ffbbb2008-05-11 18:18:29 +00001423/* Location: ./system/libraries/Xmlrpc.php */