5 use PhpXmlRpc\Helper\XMLParser;
10 * Takes an xmlrpc value in object format and translates it into native PHP types.
12 * Works with xmlrpc requests objects as input, too.
14 * Given proper options parameter, can rebuild generic php object instances
15 * (provided those have been encoded to xmlrpc format using a corresponding
16 * option in php_xmlrpc_encode())
17 * PLEASE NOTE that rebuilding php objects involves calling their constructor function.
18 * This means that the remote communication end can decide which php code will
19 * get executed on your server, leaving the door possibly open to 'php-injection'
20 * style of attacks (provided you have some classes defined on your server that
21 * might wreak havoc if instances are built outside an appropriate context).
22 * Make sure you trust the remote server/client before eanbling this!
24 * @author Dan Libby (dan@libby.com)
26 * @param Value|Request $xmlrpcVal
27 * @param array $options if 'decode_php_objs' is set in the options array, xmlrpc structs can be decoded into php objects; if 'dates_as_objects' is set xmlrpc datetimes are decoded as php DateTime objects (standard is
31 public function decode($xmlrpcVal, $options = array())
33 switch ($xmlrpcVal->kindOf()) {
35 if (in_array('extension_api', $options)) {
36 reset($xmlrpcVal->me);
37 list($typ, $val) = each($xmlrpcVal->me);
39 case 'dateTime.iso8601':
40 $xmlrpcVal->scalar = $val;
41 $xmlrpcVal->type = 'datetime';
42 $xmlrpcVal->timestamp = \PhpXmlRpc\Helper\Date::iso8601_decode($val);
46 $xmlrpcVal->scalar = $val;
47 $xmlrpcVal->type = $typ;
51 return $xmlrpcVal->scalarval();
54 if (in_array('dates_as_objects', $options) && $xmlrpcVal->scalartyp() == 'dateTime.iso8601') {
55 // we return a Datetime object instead of a string
56 // since now the constructor of xmlrpc value accepts safely strings, ints and datetimes,
57 // we cater to all 3 cases here
58 $out = $xmlrpcVal->scalarval();
59 if (is_string($out)) {
60 $out = strtotime($out);
63 $result = new \Datetime();
64 $result->setTimestamp($out);
67 } elseif (is_a($out, 'Datetime')) {
72 return $xmlrpcVal->scalarval();
74 $size = $xmlrpcVal->arraysize();
76 for ($i = 0; $i < $size; $i++) {
77 $arr[] = $this->decode($xmlrpcVal->arraymem($i), $options);
82 $xmlrpcVal->structreset();
83 // If user said so, try to rebuild php objects for specific struct vals.
84 /// @todo should we raise a warning for class not found?
85 // shall we check for proper subclass of xmlrpc value instead of
86 // presence of _php_class to detect what we can do?
87 if (in_array('decode_php_objs', $options) && $xmlrpcVal->_php_class != ''
88 && class_exists($xmlrpcVal->_php_class)
90 $obj = @new $xmlrpcVal->_php_class();
91 while (list($key, $value) = $xmlrpcVal->structeach()) {
92 $obj->$key = $this->decode($value, $options);
98 while (list($key, $value) = $xmlrpcVal->structeach()) {
99 $arr[$key] = $this->decode($value, $options);
105 $paramCount = $xmlrpcVal->getNumParams();
107 for ($i = 0; $i < $paramCount; $i++) {
108 $arr[] = $this->decode($xmlrpcVal->getParam($i));
116 * Takes native php types and encodes them into xmlrpc PHP object format.
117 * It will not re-encode xmlrpc value objects.
119 * Feature creep -- could support more types via optional type argument
120 * (string => datetime support has been added, ??? => base64 not yet)
122 * If given a proper options parameter, php object instances will be encoded
123 * into 'special' xmlrpc values, that can later be decoded into php objects
124 * by calling php_xmlrpc_decode() with a corresponding option
126 * @author Dan Libby (dan@libby.com)
128 * @param mixed $phpVal the value to be converted into an xmlrpc value object
129 * @param array $options can include 'encode_php_objs', 'auto_dates', 'null_extension' or 'extension_api'
131 * @return \PhpXmlrpc\Value
133 public function encode($phpVal, $options = array())
135 $type = gettype($phpVal);
138 if (in_array('auto_dates', $options) && preg_match('/^[0-9]{8}T[0-9]{2}:[0-9]{2}:[0-9]{2}$/', $phpVal)) {
139 $xmlrpcVal = new Value($phpVal, Value::$xmlrpcDateTime);
141 $xmlrpcVal = new Value($phpVal, Value::$xmlrpcString);
145 $xmlrpcVal = new Value($phpVal, Value::$xmlrpcInt);
148 $xmlrpcVal = new Value($phpVal, Value::$xmlrpcDouble);
150 // <G_Giunta_2001-02-29>
151 // Add support for encoding/decoding of booleans, since they are supported in PHP
153 $xmlrpcVal = new Value($phpVal, Value::$xmlrpcBoolean);
155 // </G_Giunta_2001-02-29>
157 // PHP arrays can be encoded to either xmlrpc structs or arrays,
158 // depending on wheter they are hashes or plain 0..n integer indexed
159 // A shorter one-liner would be
160 // $tmp = array_diff(array_keys($phpVal), range(0, count($phpVal)-1));
161 // but execution time skyrockets!
165 foreach ($phpVal as $key => $val) {
166 $arr[$key] = $this->encode($val, $options);
167 if (!$ko && $key !== $j) {
173 $xmlrpcVal = new Value($arr, Value::$xmlrpcStruct);
175 $xmlrpcVal = new Value($arr, Value::$xmlrpcArray);
179 if (is_a($phpVal, 'PhpXmlRpc\Value')) {
180 $xmlrpcVal = $phpVal;
181 } elseif (is_a($phpVal, 'DateTime')) {
182 $xmlrpcVal = new Value($phpVal->format('Ymd\TH:i:s'), Value::$xmlrpcStruct);
186 while (list($k, $v) = each($phpVal)) {
187 $arr[$k] = $this->encode($v, $options);
189 $xmlrpcVal = new Value($arr, Value::$xmlrpcStruct);
190 if (in_array('encode_php_objs', $options)) {
191 // let's save original class name into xmlrpc value:
192 // might be useful later on...
193 $xmlrpcVal->_php_class = get_class($phpVal);
198 if (in_array('extension_api', $options)) {
199 $xmlrpcVal = new Value('', Value::$xmlrpcString);
200 } elseif (in_array('null_extension', $options)) {
201 $xmlrpcVal = new Value('', Value::$xmlrpcNull);
203 $xmlrpcVal = new Value();
207 if (in_array('extension_api', $options)) {
208 $xmlrpcVal = new Value((int)$phpVal, Value::$xmlrpcInt);
210 $xmlrpcVal = new Value();
212 // catch "user function", "unknown type"
214 // giancarlo pinerolo <ping@alt.it>
216 // an empty object in case, not a boolean.
217 $xmlrpcVal = new Value();
225 * Convert the xml representation of a method response, method request or single
226 * xmlrpc value into the appropriate object (a.k.a. deserialize).
228 * @param string $xmlVal
229 * @param array $options
231 * @return mixed false on error, or an instance of either Value, Request or Response
233 public function decode_xml($xmlVal, $options = array())
235 // 'guestimate' encoding
236 $valEncoding = XMLParser::guessEncoding('', $xmlVal);
237 if ($valEncoding != '') {
239 // Since parsing will fail if charset is not specified in the xml prologue,
240 // the encoding is not UTF8 and there are non-ascii chars in the text, we try to work round that...
241 // The following code might be better for mb_string enabled installs, but
242 // makes the lib about 200% slower...
243 //if (!is_valid_charset($valEncoding, array('UTF-8'))
244 if (!in_array($valEncoding, array('UTF-8', 'US-ASCII')) && !XMLParser::hasEncoding($xmlVal)) {
245 if ($valEncoding == 'ISO-8859-1') {
246 $xmlVal = utf8_encode($xmlVal);
249 if (extension_loaded('mbstring')) {
250 $xmlVal = mb_convert_encoding($xmlVal, 'UTF-8', $valEncoding);
252 error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of xml text: ' . $valEncoding);
258 $parser = xml_parser_create();
259 xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, true);
260 // What if internal encoding is not in one of the 3 allowed?
261 // we use the broadest one, ie. utf8!
262 if (!in_array(PhpXmlRpc::$xmlrpc_internalencoding, array('UTF-8', 'ISO-8859-1', 'US-ASCII'))) {
263 xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, 'UTF-8');
265 xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, PhpXmlRpc::$xmlrpc_internalencoding);
268 $xmlRpcParser = new XMLParser();
269 xml_set_object($parser, $xmlRpcParser);
271 xml_set_element_handler($parser, 'xmlrpc_se_any', 'xmlrpc_ee');
272 xml_set_character_data_handler($parser, 'xmlrpc_cd');
273 xml_set_default_handler($parser, 'xmlrpc_dh');
274 if (!xml_parse($parser, $xmlVal, 1)) {
275 $errstr = sprintf('XML error: %s at line %d, column %d',
276 xml_error_string(xml_get_error_code($parser)),
277 xml_get_current_line_number($parser), xml_get_current_column_number($parser));
279 xml_parser_free($parser);
283 xml_parser_free($parser);
284 if ($xmlRpcParser->_xh['isf'] > 1) {
285 // test that $xmlrpc->_xh['value'] is an obj, too???
287 error_log($xmlRpcParser->_xh['isf_reason']);
291 switch ($xmlRpcParser->_xh['rt']) {
292 case 'methodresponse':
293 $v = &$xmlRpcParser->_xh['value'];
294 if ($xmlRpcParser->_xh['isf'] == 1) {
295 $vc = $v->structmem('faultCode');
296 $vs = $v->structmem('faultString');
297 $r = new Response(0, $vc->scalarval(), $vs->scalarval());
299 $r = new Response($v);
304 $m = new Request($xmlRpcParser->_xh['method']);
305 for ($i = 0; $i < count($xmlRpcParser->_xh['params']); $i++) {
306 $m->addParam($xmlRpcParser->_xh['params'][$i]);
311 return $xmlRpcParser->_xh['value'];