Source for file _xmlrpc.inc.php
Documentation is available at _xmlrpc.inc.php
// by Edd Dumbill (C) 1999-2002
// $Id: _xmlrpc.inc.php,v 1.1 2008/01/14 07:17:31 fplanque Exp $
// Copyright (c) 1999,2000,2002 Edd Dumbill.
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following
// disclaimer in the documentation and/or other materials provided
// with the distribution.
// * Neither the name of the "XML-RPC for PHP" nor the names of its
// contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
// REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
// OF THE POSSIBILITY OF SUCH DAMAGE.
// G. Giunta 2005/01/29: declare global these variables,
// so that xmlrpc.inc will work even if included from within a function
// Milosch: 2005/08/07 - explicitly request these via $GLOBALS where used.
$GLOBALS['xmlrpcI4']=
'i4';
$GLOBALS['xmlrpcInt']=
'int';
$GLOBALS['xmlrpcBoolean']=
'boolean';
$GLOBALS['xmlrpcDouble']=
'double';
$GLOBALS['xmlrpcString']=
'string';
$GLOBALS['xmlrpcDateTime']=
'dateTime.iso8601';
$GLOBALS['xmlrpcBase64']=
'base64';
$GLOBALS['xmlrpcArray']=
'array';
$GLOBALS['xmlrpcStruct']=
'struct';
$GLOBALS['xmlrpcValue']=
'undefined';
$GLOBALS['xmlrpcTypes']=
array(
$GLOBALS['xmlrpcI4'] =>
1,
$GLOBALS['xmlrpcInt'] =>
1,
$GLOBALS['xmlrpcBoolean'] =>
1,
$GLOBALS['xmlrpcString'] =>
1,
$GLOBALS['xmlrpcDouble'] =>
1,
$GLOBALS['xmlrpcDateTime'] =>
1,
$GLOBALS['xmlrpcBase64'] =>
1,
$GLOBALS['xmlrpcArray'] =>
2,
$GLOBALS['xmlrpcStruct'] =>
3
$GLOBALS['xmlrpc_valid_parents'] =
array(
'VALUE' =>
array('MEMBER', 'DATA', 'PARAM', 'FAULT'),
'BOOLEAN' =>
array('VALUE'),
'STRING' =>
array('VALUE'),
'DOUBLE' =>
array('VALUE'),
'DATETIME.ISO8601' =>
array('VALUE'),
'BASE64' =>
array('VALUE'),
'MEMBER' =>
array('STRUCT'),
'NAME' =>
array('MEMBER'),
'DATA' =>
array('ARRAY'),
'ARRAY' =>
array('VALUE'),
'STRUCT' =>
array('VALUE'),
'PARAM' =>
array('PARAMS'),
'METHODNAME' =>
array('METHODCALL'),
'PARAMS' =>
array('METHODCALL', 'METHODRESPONSE'),
'FAULT' =>
array('METHODRESPONSE'),
'NIL' =>
array('VALUE') // only used when extension activated
// define extra types for supporting NULL (useful for json or <NIL/>)
$GLOBALS['xmlrpcNull']=
'null';
$GLOBALS['xmlrpcTypes']['null']=
1;
// Not in use anymore since 2.0. Shall we remove it?
$GLOBALS['xmlEntities']=
array(
// tables used for transcoding different charsets into us-ascii xml
$GLOBALS['xml_iso88591_Entities']=
array();
$GLOBALS['xml_iso88591_Entities']['in'] =
array();
$GLOBALS['xml_iso88591_Entities']['out'] =
array();
for ($i =
0; $i <
32; $i++
)
$GLOBALS['xml_iso88591_Entities']['in'][] =
chr($i);
$GLOBALS['xml_iso88591_Entities']['out'][] =
'&#'.
$i.
';';
for ($i =
160; $i <
256; $i++
)
$GLOBALS['xml_iso88591_Entities']['in'][] =
chr($i);
$GLOBALS['xml_iso88591_Entities']['out'][] =
'&#'.
$i.
';';
/// @todo add to iso table the characters from cp_1252 range, i.e. 128 to 159.
/// These will NOT be present in true ISO-8859-1, but will save the unwary
/// windows user from sending junk.
'\x80'=>'€', '\x81'=>'?', '\x82'=>'‚', '\x83'=>'ƒ',
'\x84'=>'„', '\x85'=>'…', '\x86'=>'†', \x87'=>'‡',
'\x88'=>'ˆ', '\x89'=>'‰', '\x8A'=>'Š', '\x8B'=>'‹',
'\x8C'=>'Œ', '\x8D'=>'?', '\x8E'=>'Ž', '\x8F'=>'?',
'\x90'=>'?', '\x91'=>'‘', '\x92'=>'’', '\x93'=>'“',
'\x94'=>'”', '\x95'=>'•', '\x96'=>'–', '\x97'=>'—',
'\x98'=>'˜', '\x99'=>'™', '\x9A'=>'š', '\x9B'=>'›',
'\x9C'=>'œ', '\x9D'=>'?', '\x9E'=>'ž', '\x9F'=>'Ÿ'
$GLOBALS['xmlrpcerr']['unknown_method']=
1;
$GLOBALS['xmlrpcstr']['unknown_method']=
'Unknown method';
$GLOBALS['xmlrpcerr']['invalid_return']=
2;
$GLOBALS['xmlrpcstr']['invalid_return']=
'Invalid return payload: enable debugging to examine incoming payload';
$GLOBALS['xmlrpcerr']['incorrect_params']=
3;
$GLOBALS['xmlrpcstr']['incorrect_params']=
'Incorrect parameters passed to method';
$GLOBALS['xmlrpcerr']['introspect_unknown']=
4;
$GLOBALS['xmlrpcstr']['introspect_unknown']=
"Can't introspect: method unknown";
$GLOBALS['xmlrpcerr']['http_error']=
5;
$GLOBALS['xmlrpcstr']['http_error']=
"Didn't receive 200 OK from remote server.";
$GLOBALS['xmlrpcerr']['no_data']=
6;
$GLOBALS['xmlrpcstr']['no_data']=
'No data received from server.';
$GLOBALS['xmlrpcerr']['no_ssl']=
7;
$GLOBALS['xmlrpcstr']['no_ssl']=
'No SSL support compiled in.';
$GLOBALS['xmlrpcerr']['curl_fail']=
8;
$GLOBALS['xmlrpcstr']['curl_fail']=
'CURL error';
$GLOBALS['xmlrpcerr']['invalid_request']=
15;
$GLOBALS['xmlrpcstr']['invalid_request']=
'Invalid request payload';
$GLOBALS['xmlrpcerr']['no_curl']=
16;
$GLOBALS['xmlrpcstr']['no_curl']=
'No CURL support compiled in.';
$GLOBALS['xmlrpcerr']['server_error']=
17;
$GLOBALS['xmlrpcstr']['server_error']=
'Internal server error';
$GLOBALS['xmlrpcerr']['multicall_error']=
18;
$GLOBALS['xmlrpcstr']['multicall_error']=
'Received from server invalid multicall response';
$GLOBALS['xmlrpcerr']['multicall_notstruct'] =
9;
$GLOBALS['xmlrpcstr']['multicall_notstruct'] =
'system.multicall expected struct';
$GLOBALS['xmlrpcerr']['multicall_nomethod'] =
10;
$GLOBALS['xmlrpcstr']['multicall_nomethod'] =
'missing methodName';
$GLOBALS['xmlrpcerr']['multicall_notstring'] =
11;
$GLOBALS['xmlrpcstr']['multicall_notstring'] =
'methodName is not a string';
$GLOBALS['xmlrpcerr']['multicall_recursion'] =
12;
$GLOBALS['xmlrpcstr']['multicall_recursion'] =
'recursive system.multicall forbidden';
$GLOBALS['xmlrpcerr']['multicall_noparams'] =
13;
$GLOBALS['xmlrpcstr']['multicall_noparams'] =
'missing params';
$GLOBALS['xmlrpcerr']['multicall_notarray'] =
14;
$GLOBALS['xmlrpcstr']['multicall_notarray'] =
'params is not an array';
$GLOBALS['xmlrpcerr']['cannot_decompress']=
103;
$GLOBALS['xmlrpcstr']['cannot_decompress']=
'Received from server compressed HTTP and cannot decompress';
$GLOBALS['xmlrpcerr']['decompress_fail']=
104;
$GLOBALS['xmlrpcstr']['decompress_fail']=
'Received from server invalid compressed HTTP';
$GLOBALS['xmlrpcerr']['dechunk_fail']=
105;
$GLOBALS['xmlrpcstr']['dechunk_fail']=
'Received from server invalid chunked HTTP';
$GLOBALS['xmlrpcerr']['server_cannot_decompress']=
106;
$GLOBALS['xmlrpcstr']['server_cannot_decompress']=
'Received from client compressed HTTP request and cannot decompress';
$GLOBALS['xmlrpcerr']['server_decompress_fail']=
107;
$GLOBALS['xmlrpcstr']['server_decompress_fail']=
'Received from client invalid compressed HTTP request';
// The charset encoding used by the server for received messages and
// by the client for received responses when received charset cannot be determined
$GLOBALS['xmlrpc_defencoding']=
'UTF-8';
// The encoding used internally by PHP.
// String values received as xml will be converted to this, and php strings will be converted to xml
// as if having been coded with this
$GLOBALS['xmlrpc_internalencoding']=
'ISO-8859-1';
$GLOBALS['xmlrpcName']=
'XML-RPC for PHP';
$GLOBALS['xmlrpcVersion']=
'2.2';
// let user errors start at 800
$GLOBALS['xmlrpcerruser']=
800;
// let XML parse errors start at 100
$GLOBALS['xmlrpcerrxml']=
100;
// formulate backslashes for escaping regexp
// Not in use anymore since 2.0. Shall we remove it?
$GLOBALS['xmlrpc_backslash']=
chr(92).
chr(92);
// set to TRUE to enable correct decoding of <NIL/> values
$GLOBALS['xmlrpc_null_extension']=
false;
// used to store state during parsing
// quick explanation of components:
// ac - used to accumulate values
// isf - used to indicate a parsing fault (2) or xmlrpcresp fault (1)
// isf_reason - used for storing xmlrpcresp fault string
// lv - used to indicate "looking for a value": implements
// the logic to allow values with no types to be strings
// params - used to store parameters in method calls
// method - used to store method name
// stack - array with genealogy of xml elements names:
// used to validate nesting of xmlrpc elements
* Convert a string to the correct XML representation in a target charset
* To help correct communication of non-ascii chars inside strings, regardless
* of the charset used when sending requests, parsing them, sending responses
* and parsing responses, an option is to convert all non-ascii chars present in the message
* into their equivalent 'charset entity'. Charset entities enumerated this way
* are independent of the charset encoding used to transmit them, and all XML
* parsers are bound to understand them.
* Note that in the std case we are not sending a charset encoding mime type
* along with http headers, so we are bound by RFC 3023 to emit strict us-ascii.
* @todo do a bit of basic benchmarking (strtr vs. str_replace)
* @todo make usage of iconv() or recode_string() or mb_string() where available
// lame, but we know no better...
$src_encoding =
$GLOBALS['xmlrpc_internalencoding'];
switch(strtoupper($src_encoding.
'_'.
$dest_encoding))
case 'ISO-8859-1_US-ASCII':
$escaped_data =
str_replace(array('&', '"', "'", '<', '>'), array('&', '"', ''', '<', '>'), $data);
$escaped_data =
str_replace($GLOBALS['xml_iso88591_Entities']['in'], $GLOBALS['xml_iso88591_Entities']['out'], $escaped_data);
$escaped_data =
str_replace(array('&', '"', "'", '<', '>'), array('&', '"', ''', '<', '>'), $data);
case 'ISO-8859-1_ISO-8859-1':
case 'US-ASCII_US-ASCII':
case 'US-ASCII_ISO-8859-1':
$escaped_data =
str_replace(array('&', '"', "'", '<', '>'), array('&', '"', ''', '<', '>'), $data);
// NB: this will choke on invalid UTF-8, going most likely beyond EOF
// be kind to users creating string xmlrpcvals out of different php types
for ($nn =
0; $nn <
$ns; $nn++
)
/// @todo shall we replace this with a (supposedly) faster str_replace?
$escaped_data .=
'"';
$escaped_data .=
'&';
$escaped_data .=
''';
//2 11 110bbbbb 10bbbbbb (2047)
//3 16 1110bbbb 10bbbbbb 10bbbbbb
$ii =
((($b1 *
64) +
$b2) *
64) +
$b3;
//4 21 11110bbb 10bbbbbb 10bbbbbb 10bbbbbb
$ii =
((((($b1 *
64) +
$b2) *
64) +
$b3) *
64) +
$b4;
error_log("Converting from $src_encoding to $dest_encoding: not supported...");
/// xml parser handler function for opening element tags
function xmlrpc_se($parser, $name, $attrs, $accept_single_vals=
false)
// if invalid xmlrpc already detected, skip all processing
if ($GLOBALS['_xh']['isf'] <
2)
// check for correct element nesting
// top level element can only be of 2 types
/// @todo optimization creep: save this check into a bool variable, instead of using count() every time:
/// there is only a single top level element in xml anyway
if (count($GLOBALS['_xh']['stack']) ==
0)
if ($name !=
'METHODRESPONSE' &&
$name !=
'METHODCALL' &&
(
$name !=
'VALUE' &&
!$accept_single_vals))
$GLOBALS['_xh']['isf'] =
2;
$GLOBALS['_xh']['isf_reason'] =
'missing top level xmlrpc element';
// not top level element: see if parent is OK
$parent =
end($GLOBALS['_xh']['stack']);
if (!array_key_exists($name, $GLOBALS['xmlrpc_valid_parents']) ||
!in_array($parent, $GLOBALS['xmlrpc_valid_parents'][$name]))
$GLOBALS['_xh']['isf'] =
2;
$GLOBALS['_xh']['isf_reason'] =
"xmlrpc element $name cannot be child of $parent";
// optimize for speed switch cases: most common cases first
/// @todo we could check for 2 VALUE elements inside a MEMBER or PARAM element
$GLOBALS['_xh']['vt']=
'value'; // indicator: no value found yet
$GLOBALS['_xh']['ac']=
'';
$GLOBALS['_xh']['php_class']=
null;
if ($GLOBALS['_xh']['vt']!=
'value')
//two data elements inside a value: an error occurred!
$GLOBALS['_xh']['isf'] =
2;
$GLOBALS['_xh']['isf_reason'] =
"$name element following a {$GLOBALS['_xh']['vt']} element inside a single value";
$GLOBALS['_xh']['ac']=
''; // reset the accumulator
if ($GLOBALS['_xh']['vt']!=
'value')
//two data elements inside a value: an error occurred!
$GLOBALS['_xh']['isf'] =
2;
$GLOBALS['_xh']['isf_reason'] =
"$name element following a {$GLOBALS['_xh']['vt']} element inside a single value";
// create an empty array to hold child values, and push it onto appropriate stack
$cur_val['values'] =
array();
$cur_val['type'] =
$name;
// check for out-of-band information to rebuild php objs
// and in case it is found, save it
if (@isset
($attrs['PHP_CLASS']))
$cur_val['php_class'] =
$attrs['PHP_CLASS'];
$GLOBALS['_xh']['valuestack'][] =
$cur_val;
$GLOBALS['_xh']['vt']=
'data'; // be prepared for a data element next
if ($GLOBALS['_xh']['vt']!=
'data')
//two data elements inside a value: an error occurred!
$GLOBALS['_xh']['isf'] =
2;
$GLOBALS['_xh']['isf_reason'] =
"found two data elements inside an array element";
// valid elements that add little to processing
/// @todo we could check for 2 NAME elements inside a MEMBER element
$GLOBALS['_xh']['ac']=
'';
$GLOBALS['_xh']['isf']=
1;
$GLOBALS['_xh']['valuestack'][count($GLOBALS['_xh']['valuestack'])-
1]['name']=
''; // set member name to null, in case we do not find in the xml later on
//$GLOBALS['_xh']['ac']='';
// Drop trough intentionally
// clear value type, so we can check later if no value has been passed for this param/member
$GLOBALS['_xh']['vt']=
null;
if ($GLOBALS['xmlrpc_null_extension'])
if ($GLOBALS['_xh']['vt']!=
'value')
//two data elements inside a value: an error occurred!
$GLOBALS['_xh']['isf'] =
2;
$GLOBALS['_xh']['isf_reason'] =
"$name element following a {$GLOBALS['_xh']['vt']} element inside a single value";
$GLOBALS['_xh']['ac']=
''; // reset the accumulator
// we do not support the <NIL/> extension, so
// drop through intentionally
/// INVALID ELEMENT: RAISE ISF so that it is later recognized!!!
$GLOBALS['_xh']['isf'] =
2;
$GLOBALS['_xh']['isf_reason'] =
"found not-xmlrpc xml element $name";
// Save current element name to stack, to validate nesting
$GLOBALS['_xh']['stack'][] =
$name;
/// @todo optimization creep: move this inside the big switch() above
/// Used in decoding xml chunks that might represent single xmlrpc values
/// xml parser handler function for close element tags
function xmlrpc_ee($parser, $name, $rebuild_xmlrpcvals =
true)
if ($GLOBALS['_xh']['isf'] <
2)
// push this element name from stack
// NB: if XML validates, correct opening/closing is guaranteed and
// we do not have to check for $name == $curr_elem.
// we also checked for proper nesting at start of elements...
$curr_elem =
array_pop($GLOBALS['_xh']['stack']);
// This if() detects if no scalar was inside <VALUE></VALUE>
if ($GLOBALS['_xh']['vt']==
'value')
$GLOBALS['_xh']['value']=
$GLOBALS['_xh']['ac'];
$GLOBALS['_xh']['vt']=
$GLOBALS['xmlrpcString'];
// build the xmlrpc val out of the data received, and substitute it
$temp =
& new xmlrpcval($GLOBALS['_xh']['value'], $GLOBALS['_xh']['vt']);
// in case we got info about underlying php class, save it
// in the object we're rebuilding
if (isset
($GLOBALS['_xh']['php_class']))
$temp->_php_class =
$GLOBALS['_xh']['php_class'];
// check if we are inside an array or struct:
// if value just built is inside an array, let's move it into array on the stack
$vscount =
count($GLOBALS['_xh']['valuestack']);
if ($vscount &&
$GLOBALS['_xh']['valuestack'][$vscount-
1]['type']==
'ARRAY')
$GLOBALS['_xh']['valuestack'][$vscount-
1]['values'][] =
$temp;
$GLOBALS['_xh']['value'] =
$temp;
/// @todo this needs to treat correctly php-serialized objects,
/// since std deserializing is done by php_xmlrpc_decode,
/// which we will not be calling...
if (isset
($GLOBALS['_xh']['php_class']))
// check if we are inside an array or struct:
// if value just built is inside an array, let's move it into array on the stack
$vscount =
count($GLOBALS['_xh']['valuestack']);
if ($vscount &&
$GLOBALS['_xh']['valuestack'][$vscount-
1]['type']==
'ARRAY')
$GLOBALS['_xh']['valuestack'][$vscount-
1]['values'][] =
$GLOBALS['_xh']['value'];
/// @todo: optimization creep - remove the if/elseif cycle below
/// since the case() in which we are already did that
$GLOBALS['_xh']['value']=
$GLOBALS['_xh']['ac'];
elseif ($name==
'DATETIME.ISO8601')
if (!preg_match('/^[0-9]{8}T[0-9]{2}:[0-9]{2}:[0-9]{2}$/', $GLOBALS['_xh']['ac']))
error_log('XML-RPC: invalid value received in DATETIME: '.
$GLOBALS['_xh']['ac']);
$GLOBALS['_xh']['vt']=
$GLOBALS['xmlrpcDateTime'];
$GLOBALS['_xh']['value']=
$GLOBALS['_xh']['ac'];
/// @todo check for failure of base64 decoding / catch warnings
elseif ($name==
'BOOLEAN')
// special case here: we translate boolean 1 or 0 into PHP
// constants true or false.
// Strings 'true' and 'false' are accepted, even though the
// spec never mentions them (see eg. Blogger api docs)
// NB: this simple checks helps a lot sanitizing input, ie no
// security problems around here
if ($GLOBALS['_xh']['ac']==
'1' ||
strcasecmp($GLOBALS['_xh']['ac'], 'true') ==
0)
$GLOBALS['_xh']['value']=
true;
// log if receiveing something strange, even though we set the value to false anyway
if ($GLOBALS['_xh']['ac']!=
'0' &&
strcasecmp($_xh[$parser]['ac'], 'false') !=
0)
error_log('XML-RPC: invalid value received in BOOLEAN: '.
$GLOBALS['_xh']['ac']);
$GLOBALS['_xh']['value']=
false;
// we must check that only 0123456789-.<space> are characters here
if (!preg_match('/^[+-]?[eE0123456789 \t.]+$/', $GLOBALS['_xh']['ac']))
/// @todo: find a better way of throwing an error
error_log('XML-RPC: non numeric value received in DOUBLE: '.
$GLOBALS['_xh']['ac']);
$GLOBALS['_xh']['value']=
'ERROR_NON_NUMERIC_FOUND';
$GLOBALS['_xh']['value']=(double)
$GLOBALS['_xh']['ac'];
// we must check that only 0123456789-<space> are characters here
if (!preg_match('/^[+-]?[0123456789 \t]+$/', $GLOBALS['_xh']['ac']))
/// @todo find a better way of throwing an error
error_log('XML-RPC: non numeric value received in INT: '.
$GLOBALS['_xh']['ac']);
$GLOBALS['_xh']['value']=
'ERROR_NON_NUMERIC_FOUND';
$GLOBALS['_xh']['value']=(int)
$GLOBALS['_xh']['ac'];
//$GLOBALS['_xh']['ac']=''; // is this necessary?
$GLOBALS['_xh']['lv']=
3; // indicate we've found a value
$GLOBALS['_xh']['valuestack'][count($GLOBALS['_xh']['valuestack'])-
1]['name'] =
$GLOBALS['_xh']['ac'];
//$GLOBALS['_xh']['ac']=''; // is this necessary?
// add to array in the stack the last element built,
// unless no VALUE was found
if ($GLOBALS['_xh']['vt'])
$vscount =
count($GLOBALS['_xh']['valuestack']);
$GLOBALS['_xh']['valuestack'][$vscount-
1]['values'][$GLOBALS['_xh']['valuestack'][$vscount-
1]['name']] =
$GLOBALS['_xh']['value'];
error_log('XML-RPC: missing VALUE inside STRUCT in received xml');
//$GLOBALS['_xh']['ac']=''; // is this necessary?
$GLOBALS['_xh']['vt']=
null; // reset this to check for 2 data elements in a row - even if they're empty
// fetch out of stack array of values, and promote it to current value
$curr_val =
array_pop($GLOBALS['_xh']['valuestack']);
$GLOBALS['_xh']['value'] =
$curr_val['values'];
if (isset
($curr_val['php_class']))
$GLOBALS['_xh']['php_class'] =
$curr_val['php_class'];
// add to array of params the current value,
// unless no VALUE was found
if ($GLOBALS['_xh']['vt'])
$GLOBALS['_xh']['params'][]=
$GLOBALS['_xh']['value'];
$GLOBALS['_xh']['pt'][]=
$GLOBALS['_xh']['vt'];
error_log('XML-RPC: missing VALUE inside PARAM in received xml');
$GLOBALS['_xh']['method']=
preg_replace('/^[\n\r\t ]+/', '', $GLOBALS['_xh']['ac']);
if ($GLOBALS['xmlrpc_null_extension'])
$GLOBALS['_xh']['vt']=
'null';
$GLOBALS['_xh']['value']=
null;
// drop through intentionally if nil extension not enabled
// End of INVALID ELEMENT!
// shall we add an assert here for unreachable code???
/// Used in decoding xmlrpc requests/responses without rebuilding xmlrpc values
/// xml parser handler function for character data
// skip processing if xml fault already detected
if ($GLOBALS['_xh']['isf'] <
2)
// "lookforvalue==3" means that we've found an entire value
// and should discard any further character data
if($GLOBALS['_xh']['lv']!=
3)
// G. Giunta 2006-08-23: useless change of 'lv' from 1 to 2
//if($GLOBALS['_xh']['lv']==1)
// if we've found text and we're just in a <value> then
// say we've found a value
//$GLOBALS['_xh']['lv']=2;
// we always initialize the accumulator before starting parsing, anyway...
//if(!@isset($GLOBALS['_xh']['ac']))
// $GLOBALS['_xh']['ac'] = '';
$GLOBALS['_xh']['ac'].=
$data;
/// xml parser handler function for 'other stuff', ie. not char data or
/// element start/end tag. In fact it only gets called on unknown entities...
// skip processing if xml fault already detected
if ($GLOBALS['_xh']['isf'] <
2)
if(substr($data, 0, 1) ==
'&' &&
substr($data, -
1, 1) ==
';')
// G. Giunta 2006-08-25: useless change of 'lv' from 1 to 2
//if($GLOBALS['_xh']['lv']==1)
// $GLOBALS['_xh']['lv']=2;
$GLOBALS['_xh']['ac'].=
$data;
* List of http compression methods accepted by the client for responses.
* NB: PHP supports deflate, gzip compressions out of the box if compiled w. zlib
* NNB: you can set it to any non-empty array for HTTP11 and HTTPS, since
* in those cases it will be up to CURL to decide the compression methods
* it supports. You might check for the presence of 'zlib' in the output of
* curl_version() to determine wheter compression is supported or not
* Name of compression scheme to be used for sending requests.
* Either null, gzip or deflate
* CURL handle: used for keep-alive connections (PHP 4.3.8 up, see:
* http://curl.haxx.se/docs/faq.html#7.3)
/// Wheter to use persistent connections for http 1.1 and https
/// Charset encodings that can be decoded without problems by the client
/// Charset encoding to be used in serializing request. NULL = use ASCII
* Decides the content of xmlrpcresp objects returned by calls to send()
* valid strings are 'xmlrpcvals', 'phpvals' or 'xml'
* @param string $path either the complete server URL or the PATH part of the xmlrc server URL, e.g. /xmlrpc/server.php
* @param string $server the server name / ip address
* @param integer $port the port the server is listening on, defaults to 80 or 443 depending on protocol used
* @param string $method the http protocol variant: defaults to 'http', 'https' and 'http11' can be used if CURL is installed
// allow user to specify all params in $path
if($server ==
'' and $port ==
'' and $method ==
'')
$server =
$parts['host'];
if(isset
($parts['query']))
$path .=
'?'.
$parts['query'];
if(isset
($parts['fragment']))
$path .=
'#'.
$parts['fragment'];
if(isset
($parts['port']))
if(isset
($parts['scheme']))
$method =
$parts['scheme'];
if(isset
($parts['user']))
if(isset
($parts['pass']))
if($path ==
'' ||
$path[0] !=
'/')
// if ZLIB is enabled, let the client by default accept compressed responses
((is_string($info) &&
strpos($info, 'zlib') !==
null) || isset
($info['libz_version'])))
// keepalives: enabled by default ONLY for PHP >= 4.3.8
// (see http://curl.haxx.se/docs/faq.html#7.3)
// by default the xml parser can support these 3 charset encodings
* Enables/disables the echoing to screen of the xmlrpc responses received
* @param integer $debug values 0, 1 and 2 are supported (2 = echo sent msg too, before received response)
* Add some http BASIC AUTH credentials, used by the client to authenticate
* @param string $u username
* @param string $p password
* @param integer $t auth type. See curl_setopt man page for supported auth types. Defaults to CURLAUTH_BASIC (basic auth)
* Add a client-side https certificate
* @param string $certpass
* Add a CA certificate to verify server with (see man page about
* CURLOPT_CAINFO for more details
* @param string $cacert certificate file name (or dir holding certificates)
* @param bool $is_dir set to true to indicate cacert is a dir. defaults to false
* Set attributes for SSL communication: private SSL key
* @param string $key The name of a file containing a private SSL key
* @param string $keypass The secret password needed to use the private SSL key
* NB: does not work in older php/curl installs
* Thanks to Daniel Convissor
function setKey($key, $keypass)
* Set attributes for SSL communication: verify server certificate
* @param bool $i enable/disable verification of peer certificate
* Set attributes for SSL communication: verify match of server cert w. hostname
* @param string $proxyhost
* @param string $proxyport Defaults to 8080 for HTTP and 443 for HTTPS
* @param string $proxyusername Leave blank if proxy has public access
* @param string $proxypassword Leave blank if proxy has public access
* @param int $proxyauthtype set to constant CURLAUTH_NTLM to use NTLM auth with proxy
function setProxy($proxyhost, $proxyport, $proxyusername =
'', $proxypassword =
'', $proxyauthtype =
1)
$this->proxy =
$proxyhost;
* Enables/disables reception of compressed xmlrpc responses.
* Note that enabling reception of compressed responses merely adds some standard
* http headers to xmlrpc requests. It is up to the xmlrpc server to return
* compressed responses when receiving such requests.
* @param string $compmethod either 'gzip', 'deflate', 'any' or ''
if ($compmethod ==
'any')
* Enables/disables http compression of xmlrpc request.
* Take care when sending compressed requests: servers might not support them
* (and automatic fallback to uncompressed requests is not yet implemented)
* @param string $compmethod either 'gzip', 'deflate' or ''
* Adds a cookie to list of cookies that will be sent to server.
* NB: setting any param but name and value will turn the cookie into a 'version 1' cookie:
* do not do it unless you know what you are doing
* @todo check correctness of urlencoding cookie value (copied from php way of doing it...)
function setCookie($name, $value=
'', $path=
'', $domain=
'', $port=
null)
if ($path ||
$domain ||
$port)
$this->cookies[$name]['path'] =
$path;
$this->cookies[$name]['domain'] =
$domain;
$this->cookies[$name]['port'] =
$port;
$this->cookies[$name]['version'] =
1;
$this->cookies[$name]['version'] =
0;
* @param mixed $msg The message object, or an array of messages for using multicall, or the complete xml representation of a request
* @param integer $timeout Connection timeout, in seconds, If unspecified, a platform specific timeout will apply
* @param string $method if left unspecified, the http protocol chosen during creation of the object will be used
function& send($msg, $timeout=
0, $method=
'')
// if user deos not specify http protocol, use native method of this client
// (i.e. method set during call to constructor)
// $msg is an array of xmlrpcmsg's
$r =
$this->multicall($msg, $timeout, $method);
// where msg is an xmlrpcmsg
$msg->debug=
$this->debug;
$r =
& $this->sendPayloadHTTPS(
elseif($method ==
'http11')
$r =
& $this->sendPayloadCURL(
$r =
& $this->sendPayloadHTTP10(
function &sendPayloadHTTP10($msg, $server, $port, $timeout=
0,
$username=
'', $password=
'', $authtype=
1, $proxyhost=
'',
$proxyport=
0, $proxyusername=
'', $proxypassword=
'', $proxyauthtype=
1)
// Only create the payload if it was not created previously
$payload =
$msg->payload;
// Deflate request body and set appropriate request headers
$encoding_hdr =
"Content-Encoding: gzip\r\n";
$encoding_hdr =
"Content-Encoding: deflate\r\n";
// thanks to Grant Rauscher <grant7@firstworld.net> for this
$credentials=
'Authorization: Basic ' .
base64_encode($username .
':' .
$password) .
"\r\n";
error_log('XML-RPC: xmlrpc_client::send: warning. Only Basic auth is supported with HTTP 1.0');
$connectserver =
$proxyhost;
$connectport =
$proxyport;
$uri =
'http://'.
$server.
':'.
$port.
$this->path;
error_log('XML-RPC: xmlrpc_client::send: warning. Only Basic auth to proxy is supported with HTTP 1.0');
$proxy_credentials =
'Proxy-Authorization: Basic ' .
base64_encode($proxyusername.
':'.
$proxypassword) .
"\r\n";
$connectserver =
$server;
// Cookie generation, as per rfc2965 (version 1 cookies) or
// netscape's rules (version 0 cookies)
foreach ($this->cookies as $name =>
$cookie)
$cookieheader .=
'Cookie: $Version="' .
$cookie['version'] .
'"; ';
$cookieheader .=
$name .
'="' .
$cookie['value'] .
'";';
$cookieheader .=
' $Path="' .
$cookie['path'] .
'";';
$cookieheader .=
' $Domain="' .
$cookie['domain'] .
'";';
$cookieheader .=
' $Port="' .
$cookie['domain'] .
'";';
$cookieheader =
substr($cookieheader, 0, -
1) .
"\r\n";
$cookieheader .=
'Cookie: ' .
$name .
'=' .
$cookie['value'] .
"\r\n";
$op=
'POST ' .
$uri.
" HTTP/1.0\r\n" .
'User-Agent: ' .
$GLOBALS['xmlrpcName'] .
' ' .
$GLOBALS['xmlrpcVersion'] .
"\r\n" .
'Host: '.
$server .
':' .
$port .
"\r\n" .
'Content-Type: ' .
$msg->content_type .
"\r\nContent-Length: " .
strlen($payload) .
"\r\n\r\n" .
print
"<PRE>\n---SENDING---\n" .
htmlentities($op) .
"\n---END---\n</PRE>";
// let the client see this now in case http times out...
// reset errno and errstr on succesful socket connection
// G. Giunta 2005/10/24: close socket before parsing.
// should yeld slightly better execution times, and make easier recursive calls (e.g. to follow http redirects)
while($data=
fread($fp, 32768))
// shall we check for $data === FALSE?
// as per the manual, it signals an error
$r =
& $msg->parseResponse($ipd, false, $this->return_type);
function &sendPayloadHTTPS($msg, $server, $port, $timeout=
0, $username=
'',
$password=
'', $authtype=
1, $cert=
'',$certpass=
'', $cacert=
'', $cacertdir=
'',
$proxyhost=
'', $proxyport=
0, $proxyusername=
'', $proxypassword=
'', $proxyauthtype=
1,
$keepalive=
false, $key=
'', $keypass=
'')
$r =
& $this->sendPayloadCURL($msg, $server, $port, $timeout, $username,
$password, $authtype, $cert, $certpass, $cacert, $cacertdir, $proxyhost, $proxyport,
$proxyusername, $proxypassword, $proxyauthtype, 'https', $keepalive, $key, $keypass);
* Contributed by Justin Miller <justin@voxel.net>
* Requires curl to be built into PHP
* NB: CURL versions before 7.11.10 cannot use proxy to talk to https servers!
function &sendPayloadCURL($msg, $server, $port, $timeout=
0, $username=
'',
$password=
'', $authtype=
1, $cert=
'', $certpass=
'', $cacert=
'', $cacertdir=
'',
$proxyhost=
'', $proxyport=
0, $proxyusername=
'', $proxypassword=
'', $proxyauthtype=
1, $method=
'https',
$keepalive=
false, $key=
'', $keypass=
'')
$this->errstr=
'CURL unavailable on this install';
$r=
&new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['no_curl'], $GLOBALS['xmlrpcstr']['no_curl']);
$this->errstr=
'SSL unavailable on this install';
$r=
&new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['no_ssl'], $GLOBALS['xmlrpcstr']['no_ssl']);
// Only create the payload if it was not created previously
// Deflate request body and set appropriate request headers
$payload =
$msg->payload;
$encoding_hdr =
'Content-Encoding: gzip';
$encoding_hdr =
'Content-Encoding: deflate';
print
"<PRE>\n---SENDING---\n" .
htmlentities($payload) .
"\n---END---\n</PRE>";
// let the client see this now in case http times out...
$curl =
curl_init($method .
'://' .
$server .
':' .
$port .
$this->path);
curl_setopt($curl, CURLOPT_USERAGENT, $GLOBALS['xmlrpcName'].
' '.
$GLOBALS['xmlrpcVersion']);
// required for XMLRPC: post the data
// will only work with PHP >= 5.0
// NB: if we set an empty string, CURL will add http header indicating
// ALL methods it is supporting. This is possibly a better option than
// letting the user tell what curl can / cannot do...
//curl_setopt($curl, CURLOPT_ENCODING, implode(',', $this->accepted_compression));
// empty string means 'any supported by CURL' (shall we catch errors in case CURLOPT_SSLKEY undefined ?)
// if no keepalive is wanted, let the server know it in advance
$headers[] =
'Connection: close';
// request compression header
$headers[] =
$encoding_hdr;
curl_setopt($curl, CURLOPT_TIMEOUT, $timeout ==
1 ?
1 :
$timeout -
1);
if($username &&
$password)
curl_setopt($curl, CURLOPT_USERPWD, $username.
':'.
$password);
error_log('XML-RPC: xmlrpc_client::send: warning. Only Basic auth is supported by the current PHP/curl install');
// whether to verify remote host's cert
// set ca certificates file/dir
// set key file (shall we catch errors in case CURLOPT_SSLKEY undefined ?)
// set key password (shall we catch errors in case CURLOPT_SSLKEY undefined ?)
// whether to verify cert's common name (CN); 0 for no, 1 to verify that it exists, and 2 to verify that it matches the hostname used
$proxyport =
8080; // NB: even for HTTPS, local connection is on port 8080
curl_setopt($curl, CURLOPT_PROXY,$proxyhost.
':'.
$proxyport);
//curl_setopt($curl, CURLOPT_PROXYPORT,$proxyport);
curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyusername.
':'.
$proxypassword);
else if ($proxyauthtype !=
1)
error_log('XML-RPC: xmlrpc_client::send: warning. Only Basic auth to proxy is supported by the current PHP/curl install');
// NB: should we build cookie http headers by hand rather than let CURL do it?
// the following code does not honour 'expires', 'path' and 'domain' cookie attributes
// set to clint obj the the user...
foreach ($this->cookies as $name =>
$cookie)
$cookieheader .=
$name .
'=' .
$cookie['value'] .
', ';
$resp=
&new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['curl_fail'], $GLOBALS['xmlrpcstr']['curl_fail'].
': '.
curl_error($curl));
$resp =
& $msg->parseResponse($result, true, $this->return_type);
* Send an array of request messages and return an array of responses.
* Unless $this->no_multicall has been set to true, it will try first
* to use one single xmlrpc call to server method system.multicall, and
* revert to sending many successive calls in case of failure.
* This failure is also stored in $this->no_multicall for subsequent calls.
* Unfortunately, there is no server error code universally used to denote
* the fact that multicall is unsupported, so there is no way to reliably
* distinguish between that and a temporary failure.
* If you are sure that server supports multicall and do not want to
* fallback to using many single calls, set the fourth parameter to FALSE.
* NB: trying to shoehorn extra functionality into existing syntax has resulted
* in pretty much convoluted code...
* @param array $msgs an array of xmlrpcmsg objects
* @param integer $timeout connection timeout (in seconds)
* @param string $method the http protocol variant to be used
* @param boolean fallback When true, upon receiveing an error during multicall, multiple single calls will be attempted
function multicall($msgs, $timeout=
0, $method=
'', $fallback=
true)
$results =
$this->_try_multicall($msgs, $timeout, $method);
// System.multicall succeeded
// either system.multicall is unsupported by server,
// or call failed for some other reason.
// Don't try it next time...
if (is_a($results, 'xmlrpcresp'))
$result =
& new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['multicall_error'], $GLOBALS['xmlrpcstr']['multicall_error']);
// override fallback, in case careless user tries to do two
// opposite things at the same time
// system.multicall is (probably) unsupported by server:
// emulate multicall via multiple requests
$results[] =
& $this->send($msg, $timeout, $method);
// user does NOT want to fallback on many single calls:
// since we should always return an array of responses,
// return an array with the same error repeated n times
* Attempt to boxcar $msgs via system.multicall.
* Returns either an array of xmlrpcreponses, an xmlrpc error response
* or false (when received response does not respect valid multicall syntax)
function _try_multicall($msgs, $timeout, $method)
// Construct multicall message
$call['methodName'] =
& new xmlrpcval($msg->method(),'string');
$numParams =
$msg->getNumParams();
for($i =
0; $i <
$numParams; $i++
)
$params[$i] =
$msg->getParam($i);
$call['params'] =
& new xmlrpcval($params, 'array');
$multicall =
& new xmlrpcmsg('system.multicall');
$multicall->addParam(new xmlrpcval($calls, 'array'));
$result =
& $this->send($multicall, $timeout, $method);
if($result->faultCode() !=
0)
// call to system.multicall failed
$rets =
$result->value();
///@todo test this code branch...
$rets =
$result->value();
return false; // bad return type from system.multicall
if($numRets !=
count($msgs))
return false; // wrong number of return values.
for($i =
0; $i <
$numRets; $i++
)
return false; // Bad value
$response[$i] =
& new xmlrpcresp($val[0], 0, '', 'phpvals');
/// @todo remove usage of @: it is apparently quite slow
$code =
@$val['faultCode'];
$str =
@$val['faultString'];
else // return type == 'xmlrpcvals'
$rets =
$result->value();
if($rets->kindOf() !=
'array')
return false; // bad return type from system.multicall
$numRets =
$rets->arraysize();
if($numRets !=
count($msgs))
return false; // wrong number of return values.
for($i =
0; $i <
$numRets; $i++
)
$val =
$rets->arraymem($i);
if($val->arraysize() !=
1)
return false; // Bad value
$response[$i] =
& new xmlrpcresp($val->arraymem(0));
$code =
$val->structmem('faultCode');
if($code->kindOf() !=
'scalar' ||
$code->scalartyp() !=
'int')
$str =
$val->structmem('faultString');
if($str->kindOf() !=
'scalar' ||
$str->scalartyp() !=
'string')
$response[$i] =
& new xmlrpcresp(0, $code->scalarval(), $str->scalarval());
} // end class xmlrpc_client
* @param mixed $val either an xmlrpcval obj, a php value or the xml serialization of an xmlrpcval (a string)
* @param integer $fcode set it to anything but 0 to create an error response
* @param string $fstr the error string, in case of an error response
* @param string $valtyp either 'xmlrpcvals', 'phpvals' or 'xml'
* @todo add check that $val / $fcode / $fstr is of correct type???
* NB: as of now we do not do it, since it might be either an xmlrpcval or a plain
* php val, or a complete xml chunk, depending on usage of xmlrpc_client::send() inside which creator is called...
function xmlrpcresp($val, $fcode =
0, $fstr =
'', $valtyp=
'')
//$this->errstr = htmlspecialchars($fstr); // XXX: encoding probably shouldn't be done here; fix later.
// user did not declare type of response value: try to guess it
// user declares type of resp value: believe him
* Returns the error code of the response.
* @return integer the error code of this response (0 for not-error responses)
* Returns the error code of the response.
* @return string the error string of this response ('' for not-error responses)
* Returns the value received by the server.
* @return mixed the xmlrpcval object returned by the server. Might be an xml string or php value if the response has been created by specially configured xmlrpc_client objects
* Returns an array with the cookies received from the server.
* Array has the form: $cookiename => array ('value' => $val, $attr1 => $val1, $attr2 = $val2, ...)
* with attributes being e.g. 'expires', 'path', domain'.
* NB: cookies sent as 'expired' by the server (i.e. with an expiry date in the past)
* are still present in the array. It is up to the user-defined code to decide
* how to use the received cookies, and wheter they have to be sent back with the next
* request to the server (using xmlrpc_client::setCookie) or not
* @return array array of cookies received from the server
* Returns xml representation of the response. XML prologue not included
* @param string $charset_encoding the charset to be used for serialization. if null, US-ASCII is assumed
* @return string the xml representation of the response
if ($charset_encoding !=
'')
$this->content_type =
'text/xml; charset=' .
$charset_encoding;
$result =
"<methodResponse>\n";
// G. Giunta 2005/2/13: let non-ASCII response messages be tolerated by clients
// by xml-encoding non ascii chars
"<value>\n<struct><member><name>faultCode</name>\n<value><int>" .
$this->errno .
"</int></value>\n</member>\n<member>\n<name>faultString</name>\n<value><string>" .
"</struct>\n</value>\n</fault>";
$result .=
"<params>\n<param>\n" .
/// @todo try to build something serializable?
die('cannot serialize xmlrpcresp objects whose content is native php values');
$result .=
"<params>\n<param>\n" .
$this->val->serialize($charset_encoding) .
$result .=
"\n</methodResponse>";
* @param string $meth the name of the method to invoke
* @param array $pars array of parameters to be paased to the method (xmlrpcval objects)
for($i=
0; $i<
count($pars); $i++
)
function xml_header($charset_encoding=
'')
if ($charset_encoding !=
'')
return "<?xml version=\"1.0\" encoding=\"$charset_encoding\" ?" .
">\n<methodCall>\n";
return "<?xml version=\"1.0\"?" .
">\n<methodCall>\n";
function createPayload($charset_encoding=
'')
if ($charset_encoding !=
'')
$this->content_type =
'text/xml; charset=' .
$charset_encoding;
$this->payload=
$this->xml_header($charset_encoding);
$this->payload.=
"<param>\n" .
$p->serialize($charset_encoding) .
$this->payload.=
$this->xml_footer();
* Gets/sets the xmlrpc method to be invoked
* @param string $meth the method to be set (leave empty not to set it)
* @return string the method that will be invoked
* Returns xml representation of the message. XML prologue included
* @return string the xml representation of the message, xml prologue included
$this->createPayload($charset_encoding);
* Add a parameter to the list of parameters to be used upon method invocation
* @return boolean false on failure
// add check: do not add to self params which are not xmlrpcvals
* Returns the nth parameter in the message. The index zero-based.
* @param integer $i the index of the parameter to fetch (zero based)
* @return xmlrpcval the i-th parameter
* Returns the number of parameters in the messge.
* @return integer the number of parameters currently set
* Given an open file handle, read all data available and parse it as axmlrpc response.
* NB: the file handle is not closed by this function.
* @todo add 2nd & 3rd param to be passed to ParseResponse() ???
while($data=
fread($fp, 32768))
* Parses HTTP headers and separates them from data.
function &parseResponseHeaders(&$data, $headers_processed=
false)
// Support "web-proxy-tunelling" connections for https through proxies
if(preg_match('/^HTTP\/1\.[0-1] 200 Connection established/', $data))
// Look for CR/LF or simple LF as line separator,
// (even though it is not valid http)
$pos =
strpos($data,"\r\n\r\n");
// No separation between response headers and body: fault?
// this filters out all http headers from proxy.
// maybe we could take them into account, too?
error_log('XML-RPC: xmlrpcmsg::parseResponse: HTTPS via proxy error, tunnel connection possibly failed');
$r=
&new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['http_error'], $GLOBALS['xmlrpcstr']['http_error'].
' (HTTPS via proxy error, tunnel connection possibly failed)');
// Strip HTTP 1.1 100 Continue header if present
while(preg_match('/^HTTP\/1\.1 1[0-9]{2} /', $data))
$pos =
strpos($data, 'HTTP', 12);
// server sent a Continue header without any (valid) content following...
// give the client a chance to know it
if(!$pos &&
!is_int($pos)) // works fine in php 3, 4 and 5
error_log('XML-RPC: xmlrpcmsg::parseResponse: HTTP error, got response: ' .
$errstr);
$r=
&new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['http_error'], $GLOBALS['xmlrpcstr']['http_error'].
' (' .
$errstr .
')');
$GLOBALS['_xh']['headers'] =
array();
$GLOBALS['_xh']['cookies'] =
array();
// be tolerant to usage of \n instead of \r\n to separate headers and data
// (even though it is not valid http)
$pos =
strpos($data,"\r\n\r\n");
// No separation between response headers and body: fault?
// we could take some action here instead of going on...
// be tolerant to line endings, and extra empty lines
while(list
(,$line) =
@each($ar))
// take care of multi-line headers and cookies
/// @todo some other headers (the ones that allow a CSV list of values)
/// do allow many values to be passed using multiple header lines.
/// We should add content to $GLOBALS['_xh']['headers'][$header_name]
/// instead of replacing it for those...
if ($header_name ==
'set-cookie' ||
$header_name ==
'set-cookie2')
if ($header_name ==
'set-cookie2')
// there could be many cookies on one line, comma separated
$cookies =
array($arr[1]);
foreach ($cookies as $cookie)
// glue together all received cookies, using a comma to separate them
// (same as php does with getallheaders())
if (isset
($GLOBALS['_xh']['headers'][$header_name]))
$GLOBALS['_xh']['headers'][$header_name] .=
', ' .
trim($cookie);
$GLOBALS['_xh']['headers'][$header_name] =
trim($cookie);
// parse cookie attributes, in case user wants to correctly honour them
// feature creep: only allow rfc-compliant cookie attributes?
foreach ($cookie as $pos =>
$val)
/// @todo with version 1 cookies, we should strip leading and trailing " chars
$GLOBALS['_xh']['cookies'][$tag] =
array();
$GLOBALS['_xh']['cookies'][$cookiename]['value'] =
urldecode($val);
$GLOBALS['_xh']['cookies'][$cookiename][$tag] =
$val;
$GLOBALS['_xh']['headers'][$header_name] =
trim($arr[1]);
elseif(isset
($header_name))
/// @todo version1 cookies might span multiple lines, thus breaking the parsing above
$GLOBALS['_xh']['headers'][$header_name] .=
' ' .
trim($line);
if($this->debug &&
count($GLOBALS['_xh']['headers']))
foreach($GLOBALS['_xh']['headers'] as $header =>
$value)
foreach($GLOBALS['_xh']['cookies'] as $header =>
$value)
// if CURL was used for the call, http headers have been processed,
// and dechunking + reinflating have been carried out
// Decode chunked encoding sent by http 1.1 servers
if(isset
($GLOBALS['_xh']['headers']['transfer-encoding']) &&
$GLOBALS['_xh']['headers']['transfer-encoding'] ==
'chunked')
error_log('XML-RPC: xmlrpcmsg::parseResponse: errors occurred when trying to rebuild the chunked data received from server');
$r =
& new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['dechunk_fail'], $GLOBALS['xmlrpcstr']['dechunk_fail']);
// Decode gzip-compressed stuff
// code shamelessly inspired from nusoap library by Dietrich Ayala
if(isset
($GLOBALS['_xh']['headers']['content-encoding']))
$GLOBALS['_xh']['headers']['content-encoding'] =
str_replace('x-', '', $GLOBALS['_xh']['headers']['content-encoding']);
if($GLOBALS['_xh']['headers']['content-encoding'] ==
'deflate' ||
$GLOBALS['_xh']['headers']['content-encoding'] ==
'gzip')
// if decoding works, use it. else assume data wasn't gzencoded
if($GLOBALS['_xh']['headers']['content-encoding'] ==
'deflate' &&
$degzdata =
@gzuncompress($data))
print
"<PRE>---INFLATED RESPONSE---[".
strlen($data).
" chars]---\n" .
htmlentities($data) .
"\n---END---</PRE>";
elseif($GLOBALS['_xh']['headers']['content-encoding'] ==
'gzip' &&
$degzdata =
@gzinflate(substr($data, 10)))
print
"<PRE>---INFLATED RESPONSE---[".
strlen($data).
" chars]---\n" .
htmlentities($data) .
"\n---END---</PRE>";
error_log('XML-RPC: xmlrpcmsg::parseResponse: errors occurred when trying to decode the deflated data received from server');
$r =
& new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['decompress_fail'], $GLOBALS['xmlrpcstr']['decompress_fail']);
error_log('XML-RPC: xmlrpcmsg::parseResponse: the server sent deflated data. Your php install must have the Zlib extension compiled in to support this.');
$r =
& new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['cannot_decompress'], $GLOBALS['xmlrpcstr']['cannot_decompress']);
} // end of 'if needed, de-chunk, re-inflate response'
// real stupid hack to avoid PHP 4 complaining about returning NULL by ref
* Parse the xmlrpc response contained in the string $data and return an xmlrpcresp object.
* @param string $data the xmlrpc response, eventually including http headers
* @param bool $headers_processed when true prevents parsing HTTP headers for interpretation of content-encoding and consequent decoding
* @param string $return_type decides return type, i.e. content of response->value(). Either 'xmlrpcvals', 'xml' or 'phpvals'
function &parseResponse($data=
'', $headers_processed=
false, $return_type=
'xmlrpcvals')
//by maHo, replaced htmlspecialchars with htmlentities
print
"<PRE>---GOT---\n" .
htmlentities($data) .
"\n---END---\n</PRE>";
error_log('XML-RPC: xmlrpcmsg::parseResponse: no response received from server.');
$r =
& new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['no_data'], $GLOBALS['xmlrpcstr']['no_data']);
// parse the HTTP headers of the response, if present, and separate them from data
if(substr($data, 0, 4) ==
'HTTP')
$r =
& $this->parseResponseHeaders($data, $headers_processed);
// failed processing of HTTP response headers
// save into response obj the full payload received, for debugging
$GLOBALS['_xh']['headers'] =
array();
$GLOBALS['_xh']['cookies'] =
array();
$start =
strpos($data, '<!-- SERVER DEBUG INFO (BASE64 ENCODED):');
$start +=
strlen('<!-- SERVER DEBUG INFO (BASE64 ENCODED):');
$end =
strpos($data, '-->', $start);
$comments =
substr($data, $start, $end-
$start);
// be tolerant of extra whitespace in response body
/// @todo return an error msg if $data=='' ?
// be tolerant of junk after methodResponse (e.g. javascript ads automatically inserted by free hosts)
// idea from Luca Mariano <luca.mariano@email.it> originally in PEARified version of the lib
// Poor man's version of strrpos for php 4...
$pos =
strpos($data, '</methodResponse>');
$pos =
strpos($data, '</methodResponse>', $bd);
$data =
substr($data, 0, $bd);
// if user wants back raw xml, give it to him
if ($return_type ==
'xml')
$r->hdrs =
$GLOBALS['_xh']['headers'];
$r->_cookies =
$GLOBALS['_xh']['cookies'];
$r->raw_data =
$raw_data;
// try to 'guestimate' the character encoding of the received response
$resp_encoding =
guess_encoding(@$GLOBALS['_xh']['headers']['content-type'], $data);
$GLOBALS['_xh']['ac']=
'';
//$GLOBALS['_xh']['qt']=''; //unused...
$GLOBALS['_xh']['stack'] =
array();
$GLOBALS['_xh']['valuestack'] =
array();
$GLOBALS['_xh']['isf']=
0; // 0 = OK, 1 for xmlrpc fault responses, 2 = invalid xmlrpc
$GLOBALS['_xh']['isf_reason']=
'';
$GLOBALS['_xh']['rt']=
''; // 'methodcall or 'methodresponse'
// if response charset encoding is not known / supported, try to use
// the default encoding and parse the xml anyway, but log a warning...
if (!in_array($resp_encoding, array('UTF-8', 'ISO-8859-1', 'US-ASCII')))
// the following code might be better for mb_string enabled installs, but
// makes the lib about 200% slower...
//if (!is_valid_charset($resp_encoding, array('UTF-8', 'ISO-8859-1', 'US-ASCII')))
error_log('XML-RPC: xmlrpcmsg::parseResponse: invalid charset encoding of received response: '.
$resp_encoding);
$resp_encoding =
$GLOBALS['xmlrpc_defencoding'];
// G. Giunta 2005/02/13: PHP internally uses ISO-8859-1, so we have to tell
// the xml parser to give us back data in the expected charset
if ($return_type ==
'phpvals')
// first error check: xml not well formed
// thanks to Peter Kocks <peter.kocks@baygate.com>
$errstr =
'XML error at line 1, check URL';
$errstr =
sprintf('XML error: %s at line %d, column %d',
$r=
&new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['invalid_return'], $GLOBALS['xmlrpcstr']['invalid_return'].
' ('.
$errstr.
')');
$r->hdrs =
$GLOBALS['_xh']['headers'];
$r->_cookies =
$GLOBALS['_xh']['cookies'];
$r->raw_data =
$raw_data;
// second error check: xml well formed but not xml-rpc compliant
if ($GLOBALS['_xh']['isf'] >
1)
/// @todo echo something for user?
$r =
& new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['invalid_return'],
$GLOBALS['xmlrpcstr']['invalid_return'] .
' ' .
$GLOBALS['_xh']['isf_reason']);
// third error check: parsing of the response has somehow gone boink.
// NB: shall we omit this check, since we trust the parsing code?
elseif ($return_type ==
'xmlrpcvals' &&
!is_object($GLOBALS['_xh']['value']))
// something odd has happened
// and it's time to generate a client side error
// indicating something odd went on
$r=
&new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['invalid_return'],
$GLOBALS['xmlrpcstr']['invalid_return']);
print
"<PRE>---PARSED---\n";
// somehow htmlentities chokes on var_export, and some full html string...
//print htmlentitites(var_export($GLOBALS['_xh']['value'], true));
print
"\n---END---</PRE>";
// note that using =& will raise an error if $GLOBALS['_xh']['st'] does not generate an object.
$v =
& $GLOBALS['_xh']['value'];
if($GLOBALS['_xh']['isf'])
/// @todo we should test here if server sent an int and a string,
/// and/or coerce them into such...
if ($return_type ==
'xmlrpcvals')
$errno_v =
$v->structmem('faultCode');
$errstr_v =
$v->structmem('faultString');
$errno =
$errno_v->scalarval();
$errstr =
$errstr_v->scalarval();
$errno =
$v['faultCode'];
$errstr =
$v['faultString'];
// FAULT returned, errno needs to reflect that
$r->hdrs =
$GLOBALS['_xh']['headers'];
$r->_cookies =
$GLOBALS['_xh']['cookies'];
$r->raw_data =
$raw_data;
* @param string $type any valid xmlrpc type name (lowercase). If null, 'string' is assumed
/// @todo: optimization creep - do not call addXX, do it all inline.
/// downside: booleans will not be coerced anymore
if($val!==-
1 ||
$type!=
'')
// optimization creep: inlined all work done by constructor
$this->me['string']=
$val;
$this->me['struct']=
$val;
error_log("XML-RPC: xmlrpcval::xmlrpcval: not a known type ($type)");
if($GLOBALS['xmlrpcTypes'][$type]==1)
$this->addScalar($val,$type);
elseif($GLOBALS['xmlrpcTypes'][$type]==2)
elseif($GLOBALS['xmlrpcTypes'][$type]==3)
* Add a single php value to an (unitialized) xmlrpcval
* @return int 1 or 0 on failure
$typeof=
@$GLOBALS['xmlrpcTypes'][$type];
error_log("XML-RPC: xmlrpcval::addScalar: not a scalar type ($type)");
// coerce booleans into correct values
// NB: we should iether do it for datetimes, integers and doubles, too,
// or just plain remove this check, implemnted on booleans only...
if($type==
$GLOBALS['xmlrpcBoolean'])
error_log('XML-RPC: xmlrpcval::addScalar: scalar xmlrpcval can have only one value');
error_log('XML-RPC: xmlrpcval::addScalar: cannot add anonymous scalar to struct xmlrpcval');
// we're adding a scalar value to an array here
//$ar=$this->me['array'];
//$ar[]=&new xmlrpcval($val, $type);
//$this->me['array']=$ar;
// Faster (?) avoid all the costly array-copy-by-val done here...
// a scalar, so set the value and remember we're scalar
* Add an array of xmlrpcval objects to an xmlrpcval
* @return int 1 or 0 on failure
* @todo add some checking for $vals to be an array of xmlrpcvals?
$this->mytype=
$GLOBALS['xmlrpcTypes']['array'];
$this->me['array']=
$vals;
// we're adding to an array here
error_log('XML-RPC: xmlrpcval::addArray: already initialized as a [' .
$this->kindOf() .
']');
* Add an array of named xmlrpcval objects to an xmlrpcval
* @return int 1 or 0 on failure
* @todo add some checking for $vals to be an array?
$this->mytype=
$GLOBALS['xmlrpcTypes']['struct'];
$this->me['struct']=
$vals;
// we're adding to a struct here
error_log('XML-RPC: xmlrpcval::addStruct: already initialized as a [' .
$this->kindOf() .
']');
// poor man's version of print_r ???
foreach($ar as $key =>
$val)
echo
"$key => $val<br />";
while(list
($key2, $val2) =
each($val))
echo
"-- $key2 => $val2<br />";
* Returns a string containing "struct", "array" or "scalar" describing the base type of the value
function serializedata($typ, $val, $charset_encoding=
'')
switch(@$GLOBALS['xmlrpcTypes'][$typ])
case $GLOBALS['xmlrpcBase64']:
case $GLOBALS['xmlrpcBoolean']:
$rs.=
"<${typ}>" .
($val ?
'1' :
'0') .
"</${typ}>";
case $GLOBALS['xmlrpcString']:
// G. Giunta 2005/2/13: do NOT use htmlentities, since
// it will produce named html entities, which are invalid xml
$rs.=
"<${typ}>" .
xmlrpc_encode_entitites($val, $GLOBALS['xmlrpc_internalencoding'], $charset_encoding).
"</${typ}>";
case $GLOBALS['xmlrpcInt']:
case $GLOBALS['xmlrpcI4']:
$rs.=
"<${typ}>".(int)
$val.
"</${typ}>";
case $GLOBALS['xmlrpcDouble']:
$rs.=
"<${typ}>".(double)
$val.
"</${typ}>";
case $GLOBALS['xmlrpcNull']:
// no standard type value should arrive here, but provide a possibility
// for xmlrpcvals of unknown type...
$rs.=
"<${typ}>${val}</${typ}>";
$rs.=
'<struct php_class="' .
$this->_php_class .
"\">\n";
foreach($val as $key2 =>
$val2)
$rs.=
'<member><name>'.
xmlrpc_encode_entitites($key2, $GLOBALS['xmlrpc_internalencoding'], $charset_encoding).
"</name>\n";
//$rs.=$this->serializeval($val2);
$rs.=
$val2->serialize($charset_encoding);
$rs.=
"<array>\n<data>\n";
for($i=
0; $i<
count($val); $i++
)
//$rs.=$this->serializeval($val[$i]);
$rs.=
$val[$i]->serialize($charset_encoding);
$rs.=
"</data>\n</array>";
* Returns xml representation of the value. XML prologue not included
* @param string $charset_encoding the charset to be used for serialization. if null, US-ASCII is assumed
// add check? slower, but helps to avoid recursion in serializing broken xmlrpcvals...
//if (is_object($o) && (get_class($o) == 'xmlrpcval' || is_subclass_of($o, 'xmlrpcval')))
list
($typ, $val) =
each($this->me);
return '<value>' .
$this->serializedata($typ, $val, $charset_encoding) .
"</value>\n";
// add check? slower, but helps to avoid recursion in serializing broken xmlrpcvals...
//if (is_object($o) && (get_class($o) == 'xmlrpcval' || is_subclass_of($o, 'xmlrpcval')))
list
($typ, $val) =
each($ar);
return '<value>' .
$this->serializedata($typ, $val) .
"</value>\n";
* Checks wheter a struct member with a given name is present.
* Works only on xmlrpcvals of type struct.
* @param string $m the name of the struct member to be looked up
* Returns the value of a given struct member (an xmlrpcval object in itself).
* Will raise a php warning if struct member of given name does not exist
* @param string $m the name of the struct member to be looked up
return $this->me['struct'][$m];
* Reset internal pointer for xmlrpcvals of type struct.
* Return next member element for xmlrpcvals of type struct.
return each($this->me['struct']);
// DEPRECATED! this code looks like it is very fragile and has not been fixed
// for a long long time. Shall we remove it for 2.0?
// contributed by I Sofer, 2001-03-24
// add support for nested arrays to scalarval
// i've created a new method here, so as to
// preserve back compatibility
while(list
($id,$cont) =
@each($b))
$b[$id] =
$cont->scalarval();
// add support for structures directly encoding php objects
while(list
($id,$cont) =
@each($t))
$t[$id] =
$cont->scalarval();
while(list
($id,$cont) =
@each($t))
* Returns the value of a scalar xmlrpcval
* Returns the type of the xmlrpcval.
* For integers, 'int' is always returned in place of 'i4'
if($a==
$GLOBALS['xmlrpcI4'])
$a=
$GLOBALS['xmlrpcInt'];
* Returns the m-th member of an xmlrpcval of struct type
* @param integer $m the index of the value to be retrieved (zero based)
return $this->me['array'][$m];
* Returns the number of members in an xmlrpcval of array type
* Returns the number of members in an xmlrpcval of struct type
* Given a timestamp, return the corresponding ISO8601 encoded string.
* Really, timezones ought to be supported
* but the XML-RPC spec says:
* "Don't assume a timezone. It should be specified by the server in its
* documentation what assumptions it makes about timezones."
* These routines always assume localtime unless
* $utc is set to 1, in which case UTC is assumed
* and an adjustment for locale is made when encoding
* @param int $timet (timestamp)
* @param int $utc (0 or 1)
// gmstrftime doesn't exist in some versions
* Given an ISO8601 date string, return a timet in the localtime, or UTC
* @param int $utc either 0 or 1
if(preg_match('/([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})/', $idate, $regs))
$t=
gmmktime($regs[4], $regs[5], $regs[6], $regs[2], $regs[3], $regs[1]);
$t=
mktime($regs[4], $regs[5], $regs[6], $regs[2], $regs[3], $regs[1]);
* Takes an xmlrpc value in PHP xmlrpcval object format and translates it into native PHP types.
* Works with xmlrpc message objects as input, too.
* Given proper options parameter, can rebuild generic php object instances
* (provided those have been encoded to xmlrpc format using a corresponding
* option in php_xmlrpc_encode())
* PLEASE NOTE that rebuilding php objects involves calling their constructor function.
* This means that the remote communication end can decide which php code will
* get executed on your server, leaving the door possibly open to 'php-injection'
* style of attacks (provided you have some classes defined on your server that
* might wreak havoc if instances are built outside an appropriate context).
* Make sure you trust the remote server/client before eanbling this!
* @author Dan Libby (dan@libby.com)
* @param xmlrpcval $xmlrpc_val
* @param array $options if 'decode_php_objs' is set in the options array, xmlrpc structs can be decoded into php objects
if (in_array('extension_api', $options))
list
($typ,$val) =
each($xmlrpc_val->me);
$xmlrpc_val->scalar =
$val;
$xmlrpc_val->xmlrpc_type =
'datetime';
$xmlrpc_val->scalar =
$val;
$xmlrpc_val->type =
$typ;
for($i =
0; $i <
$size; $i++
)
// If user said so, try to rebuild php objects for specific struct vals.
/// @todo should we raise a warning for class not found?
// shall we check for proper subclass of xmlrpcval instead of
// presence of _php_class to detect what we can do?
while(list
($key,$value)=
$xmlrpc_val->structeach())
while(list
($key,$value)=
$xmlrpc_val->structeach())
$paramcount =
$xmlrpc_val->getNumParams();
for($i =
0; $i <
$paramcount; $i++
)
// This constant left here only for historical reasons...
// it was used to decide if we have to define xmlrpc_encode on our own, but
// we do not do it anymore
define('XMLRPC_EPI_ENABLED','1');
define('XMLRPC_EPI_ENABLED','0');
* Takes native php types and encodes them into xmlrpc PHP object format.
* It will not re-encode xmlrpcval objects.
* Feature creep -- could support more types via optional type argument
* (string => datetime support has been added, ??? => base64 not yet)
* If given a proper options parameter, php object instances will be encoded
* into 'special' xmlrpc values, that can later be decoded into php objects
* by calling php_xmlrpc_decode() with a corresponding option
* @author Dan Libby (dan@libby.com)
* @param mixed $php_val the value to be converted into an xmlrpcval object
* @param array $options can include 'encode_php_objs', 'auto_dates', 'null_extension' or 'extension_api'
if (in_array('auto_dates', $options) &&
preg_match('/^[0-9]{8}T[0-9]{2}:[0-9]{2}:[0-9]{2}$/', $php_val))
$xmlrpc_val =
& new xmlrpcval($php_val, $GLOBALS['xmlrpcDateTime']);
$xmlrpc_val =
& new xmlrpcval($php_val, $GLOBALS['xmlrpcString']);
$xmlrpc_val =
& new xmlrpcval($php_val, $GLOBALS['xmlrpcInt']);
$xmlrpc_val =
& new xmlrpcval($php_val, $GLOBALS['xmlrpcDouble']);
// Add support for encoding/decoding of booleans, since they are supported in PHP
$xmlrpc_val =
& new xmlrpcval($php_val, $GLOBALS['xmlrpcBoolean']);
// </G_Giunta_2001-02-29>
// PHP arrays can be encoded to either xmlrpc structs or arrays,
// depending on wheter they are hashes or plain 0..n integer indexed
// A shorter one-liner would be
// $tmp = array_diff(array_keys($php_val), range(0, count($php_val)-1));
// but execution time skyrockets!
foreach($php_val as $key =>
$val)
$xmlrpc_val =
& new xmlrpcval($arr, $GLOBALS['xmlrpcStruct']);
$xmlrpc_val =
& new xmlrpcval($arr, $GLOBALS['xmlrpcArray']);
if(is_a($php_val, 'xmlrpcval'))
while(list
($k,$v) =
each($php_val))
$xmlrpc_val =
& new xmlrpcval($arr, $GLOBALS['xmlrpcStruct']);
if (in_array('encode_php_objs', $options))
// let's save original class name into xmlrpcval:
// might be useful later on...
if (in_array('extension_api', $options))
$xmlrpc_val =
& new xmlrpcval('', $GLOBALS['xmlrpcString']);
if (in_array('null_extension', $options))
$xmlrpc_val =
& new xmlrpcval('', $GLOBALS['xmlrpcNull']);
if (in_array('extension_api', $options))
$xmlrpc_val =
& new xmlrpcval((int)
$php_val, $GLOBALS['xmlrpcInt']);
// catch "user function", "unknown type"
// giancarlo pinerolo <ping@alt.it>
// an empty object in case, not a boolean.
* Convert the xml representation of a method response, method request or single
* xmlrpc value into the appropriate object (a.k.a. deserialize)
* @return mixed false on error, or an instance of either xmlrpcval, xmlrpcmsg or xmlrpcresp
$GLOBALS['_xh'] =
array();
$GLOBALS['_xh']['ac'] =
'';
$GLOBALS['_xh']['stack'] =
array();
$GLOBALS['_xh']['valuestack'] =
array();
$GLOBALS['_xh']['params'] =
array();
$GLOBALS['_xh']['pt'] =
array();
$GLOBALS['_xh']['isf'] =
0;
$GLOBALS['_xh']['isf_reason'] =
'';
$GLOBALS['_xh']['method'] =
false;
$GLOBALS['_xh']['rt'] =
'';
/// @todo 'guestimate' encoding
$errstr =
sprintf('XML error: %s at line %d, column %d',
if ($GLOBALS['_xh']['isf'] >
1) // test that $GLOBALS['_xh']['value'] is an obj, too???
switch ($GLOBALS['_xh']['rt'])
$v =
& $GLOBALS['_xh']['value'];
if ($GLOBALS['_xh']['isf'] ==
1)
$m =
& new xmlrpcmsg($GLOBALS['_xh']['method']);
for($i=
0; $i <
count($GLOBALS['_xh']['params']); $i++
)
$m->addParam($GLOBALS['_xh']['params'][$i]);
return $GLOBALS['_xh']['value'];
* decode a string that is encoded w/ "chunked" transfer encoding
* as defined in rfc2068 par. 19.4.6
* code shamelessly stolen from nusoap library by Dietrich Ayala
* @param string $buffer the string to be decoded
// read chunk-size, chunk-extension (if any) and crlf
// get the position of the linebreak
$chunkend =
strpos($buffer,"\r\n") +
2;
$temp =
substr($buffer,0,$chunkend);
$chunkend =
strpos($buffer, "\r\n", $chunkstart +
$chunk_size);
// just in case we got a broken connection
$chunk =
substr($buffer,$chunkstart);
// append chunk-data to entity-body
// read chunk-data and crlf
$chunk =
substr($buffer,$chunkstart,$chunkend-
$chunkstart);
// append chunk-data to entity-body
// length := length + chunk-size
// read chunk-size and crlf
$chunkstart =
$chunkend +
2;
$chunkend =
strpos($buffer,"\r\n",$chunkstart)+
2;
break; //just in case we got a broken connection
$temp =
substr($buffer,$chunkstart,$chunkend-
$chunkstart);
* xml charset encoding guessing helper function.
* Tries to determine the charset encoding of an XML chunk
* NB: according to the spec (RFC 3023, if text/xml content-type is received over HTTP without a content-type,
* we SHOULD assume it is strictly US-ASCII. But we try to be more tolerant of unconforming (legacy?) clients/servers,
* which will be most probably using UTF-8 anyway...
* @param string $httpheaders the http Content-type header
* @param string $xmlchunk xml content buffer
* @param string $encoding_prefs comma separated list of character encodings to be used as default (when mb extension is enabled)
* @todo explore usage of mb_http_input(): does it detect http headers + post data? if so, use it instead of hand-detection!!!
function guess_encoding($httpheader=
'', $xmlchunk=
'', $encoding_prefs=
null)
// discussion: see http://www.yale.edu/pclt/encoding/
// 1 - test if encoding is specified in HTTP HEADERS
// token: (any char but excluded stuff)+
// header: Content-type = ...; charset=value(; ...)*
// where value is of type token, no LWS allowed between 'charset' and value
// Note: we do not check for invalid chars in VALUE:
// this had better be done using pure ereg as below
/// @todo this test will pass if ANY header has charset specification, not only Content-Type. Fix it?
if(preg_match('/;\s*charset=([^;]+)/i', $httpheader, $matches))
// 2 - scan the first bytes of the data for a UTF-16 (or other) BOM pattern
// (source: http://www.w3.org/TR/2000/REC-xml-20001006)
// NOTE: actually, according to the spec, even if we find the BOM and determine
// an encoding, we should check if there is an encoding specified
// in the xml declaration, and verify if they match.
/// @todo implement check as described above?
/// @todo implement check for first bytes of string even without a BOM? (It sure looks harder than for cases WITH a BOM)
if(preg_match('/^(\x00\x00\xFE\xFF|\xFF\xFE\x00\x00|\x00\x00\xFF\xFE|\xFE\xFF\x00\x00)/', $xmlchunk))
elseif(preg_match('/^(\xFE\xFF|\xFF\xFE)/', $xmlchunk))
elseif(preg_match('/^(\xEF\xBB\xBF)/', $xmlchunk))
// 3 - test if encoding is specified in the xml declaration
// SPACE: (#x20 | #x9 | #xD | #xA)+ === [ \x9\xD\xA]+
// EQ: SPACE?=SPACE? === [ \x9\xD\xA]*=[ \x9\xD\xA]*
if (preg_match('/^<\?xml\s+version\s*=\s*'.
"((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))".
'\s+encoding\s*=\s*' .
"((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/",
// 4 - if mbstring is available, let it do the guesswork
// NB: we favour finding an encoding that is compatible with what we can process
// NB: mb_detect likes to call it ascii, xml parser likes to call it US_ASCII...
// IANA also likes better US-ASCII, so go with it
// no encoding specified: as per HTTP1.1 assume it is iso-8859-1?
// Both RFC 2616 (HTTP 1.1) and 1945(http 1.0) clearly state that for text/xxx content types
// this should be the standard. And we should be getting text/xml as request and response.
// BUT we have to be backward compatible with the lib, which always used UTF-8 as default...
return $GLOBALS['xmlrpc_defencoding'];
* Checks if a given charset encoding is present in a list of encodings or
* if it is a valid subset of any encoding in the list
* @param string $encoding charset to be tested
* @param mixed $validlist comma separated list of valid charsets (or array of charsets)
$charset_supersets =
array(
'US-ASCII' =>
array ('ISO-8859-1', 'ISO-8859-2', 'ISO-8859-3', 'ISO-8859-4',
'ISO-8859-5', 'ISO-8859-6', 'ISO-8859-7', 'ISO-8859-8',
'ISO-8859-9', 'ISO-8859-10', 'ISO-8859-11', 'ISO-8859-12',
'ISO-8859-13', 'ISO-8859-14', 'ISO-8859-15', 'UTF-8',
'EUC-JP', 'EUC-', 'EUC-KR', 'EUC-CN')
$validlist =
explode(',', $validlist);
foreach ($validlist as $allowed)
if (in_array($allowed, $charset_supersets[$encoding]))
* $Log: _xmlrpc.inc.php,v $
* Revision 1.1 2008/01/14 07:17:31 fplanque
* Upgraded XML-RPC for PHP library