2016-04-24 11:50:47 +03:00
< ? php
2015-10-07 23:22:20 +03:00
/**
* CodeIgniter
*
2016-04-24 11:50:47 +03:00
* An open source application development framework for PHP
2015-10-07 23:22:20 +03:00
*
2016-04-24 11:50:47 +03:00
* This content is released under the MIT License ( MIT )
*
* Copyright ( c ) 2014 - 2016 , British Columbia Institute of Technology
*
* Permission is hereby granted , free of charge , to any person obtaining a copy
* of this software and associated documentation files ( the " Software " ), to deal
* in the Software without restriction , including without limitation the rights
* to use , copy , modify , merge , publish , distribute , sublicense , and / or sell
* copies of the Software , and to permit persons to whom the Software is
* furnished to do so , subject to the following conditions :
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software .
*
* THE SOFTWARE IS PROVIDED " AS IS " , WITHOUT WARRANTY OF ANY KIND , EXPRESS OR
* IMPLIED , INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY ,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT . IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM , DAMAGES OR OTHER
* LIABILITY , WHETHER IN AN ACTION OF CONTRACT , TORT OR OTHERWISE , ARISING FROM ,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE .
*
* @ package CodeIgniter
* @ author EllisLab Dev Team
* @ copyright Copyright ( c ) 2008 - 2014 , EllisLab , Inc . ( https :// ellislab . com / )
* @ copyright Copyright ( c ) 2014 - 2016 , British Columbia Institute of Technology ( http :// bcit . ca / )
* @ license http :// opensource . org / licenses / MIT MIT License
* @ link https :// codeigniter . com
* @ since Version 1.0 . 0
2015-10-07 23:22:20 +03:00
* @ filesource
*/
2016-04-24 11:50:47 +03:00
defined ( 'BASEPATH' ) OR exit ( 'No direct script access allowed' );
2015-10-07 23:22:20 +03:00
if ( ! function_exists ( 'xml_parser_create' ))
{
show_error ( 'Your PHP installation does not support XML' );
}
// ------------------------------------------------------------------------
/**
* XML - RPC request handler class
*
* @ package CodeIgniter
* @ subpackage Libraries
* @ category XML - RPC
* @ author EllisLab Dev Team
2016-04-24 11:50:47 +03:00
* @ link https :// codeigniter . com / user_guide / libraries / xmlrpc . html
2015-10-07 23:22:20 +03:00
*/
class CI_Xmlrpc {
2016-04-24 11:50:47 +03:00
/**
* Debug flag
*
* @ var bool
*/
public $debug = FALSE ;
/**
* I4 data type
*
* @ var string
*/
public $xmlrpcI4 = 'i4' ;
/**
* Integer data type
*
* @ var string
*/
public $xmlrpcInt = 'int' ;
/**
* Boolean data type
*
* @ var string
*/
public $xmlrpcBoolean = 'boolean' ;
/**
* Double data type
*
* @ var string
*/
public $xmlrpcDouble = 'double' ;
/**
* String data type
*
* @ var string
*/
public $xmlrpcString = 'string' ;
/**
* DateTime format
*
* @ var string
*/
public $xmlrpcDateTime = 'dateTime.iso8601' ;
/**
* Base64 data type
*
* @ var string
*/
public $xmlrpcBase64 = 'base64' ;
/**
* Array data type
*
* @ var string
*/
public $xmlrpcArray = 'array' ;
/**
* Struct data type
*
* @ var string
*/
public $xmlrpcStruct = 'struct' ;
/**
* Data types list
*
* @ var array
*/
public $xmlrpcTypes = array ();
/**
* Valid parents list
*
* @ var array
*/
public $valid_parents = array ();
/**
* Response error numbers list
*
* @ var array
*/
public $xmlrpcerr = array ();
/**
* Response error messages list
*
* @ var string []
*/
public $xmlrpcstr = array ();
/**
* Encoding charset
*
* @ var string
*/
public $xmlrpc_defencoding = 'UTF-8' ;
/**
* XML - RPC client name
*
* @ var string
*/
public $xmlrpcName = 'XML-RPC for CodeIgniter' ;
/**
* XML - RPC version
*
* @ var string
*/
public $xmlrpcVersion = '1.1' ;
/**
* Start of user errors
*
* @ var int
*/
public $xmlrpcerruser = 800 ;
/**
* Start of XML parse errors
*
* @ var int
*/
public $xmlrpcerrxml = 100 ;
/**
* Backslash replacement value
*
* @ var string
*/
public $xmlrpc_backslash = '' ;
/**
* XML - RPC Client object
*
* @ var object
*/
public $client ;
/**
* XML - RPC Method name
*
* @ var string
*/
public $method ;
/**
* XML - RPC Data
*
* @ var array
*/
public $data ;
/**
* XML - RPC Message
*
* @ var string
*/
public $message = '' ;
/**
* Request error message
*
* @ var string
*/
public $error = '' ;
/**
* XML - RPC result object
*
* @ var object
*/
public $result ;
/**
* XML - RPC Reponse
*
* @ var array
*/
public $response = array (); // Response from remote server
/**
* XSS Filter flag
*
* @ var bool
*/
public $xss_clean = TRUE ;
// --------------------------------------------------------------------
/**
* Constructor
*
* Initializes property default values
*
* @ param array $config
* @ return void
*/
2015-10-07 23:22:20 +03:00
public function __construct ( $config = array ())
{
$this -> xmlrpc_backslash = chr ( 92 ) . chr ( 92 );
// Types for info sent back and forth
$this -> xmlrpcTypes = array (
$this -> xmlrpcI4 => '1' ,
$this -> xmlrpcInt => '1' ,
$this -> xmlrpcBoolean => '1' ,
$this -> xmlrpcString => '1' ,
$this -> xmlrpcDouble => '1' ,
$this -> xmlrpcDateTime => '1' ,
$this -> xmlrpcBase64 => '1' ,
$this -> xmlrpcArray => '2' ,
$this -> xmlrpcStruct => '3'
2016-04-24 11:50:47 +03:00
);
2015-10-07 23:22:20 +03:00
// Array of Valid Parents for Various XML-RPC elements
2016-04-24 11:50:47 +03:00
$this -> valid_parents = array ( 'BOOLEAN' => array ( 'VALUE' ),
'I4' => array ( 'VALUE' ),
'INT' => array ( 'VALUE' ),
'STRING' => array ( 'VALUE' ),
'DOUBLE' => array ( 'VALUE' ),
'DATETIME.ISO8601' => array ( 'VALUE' ),
'BASE64' => array ( 'VALUE' ),
'ARRAY' => array ( 'VALUE' ),
'STRUCT' => array ( 'VALUE' ),
'PARAM' => array ( 'PARAMS' ),
'METHODNAME' => array ( 'METHODCALL' ),
'PARAMS' => array ( 'METHODCALL' , 'METHODRESPONSE' ),
'MEMBER' => array ( 'STRUCT' ),
'NAME' => array ( 'MEMBER' ),
'DATA' => array ( 'ARRAY' ),
'FAULT' => array ( 'METHODRESPONSE' ),
'VALUE' => array ( 'MEMBER' , 'DATA' , 'PARAM' , 'FAULT' )
);
2015-10-07 23:22:20 +03:00
// XML-RPC Responses
$this -> xmlrpcerr [ 'unknown_method' ] = '1' ;
$this -> xmlrpcstr [ 'unknown_method' ] = 'This is not a known method for this XML-RPC Server' ;
$this -> xmlrpcerr [ 'invalid_return' ] = '2' ;
2016-04-24 11:50:47 +03:00
$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.' ;
2015-10-07 23:22:20 +03:00
$this -> xmlrpcerr [ 'incorrect_params' ] = '3' ;
$this -> xmlrpcstr [ 'incorrect_params' ] = 'Incorrect parameters were passed to method' ;
$this -> xmlrpcerr [ 'introspect_unknown' ] = '4' ;
2016-04-24 11:50:47 +03:00
$this -> xmlrpcstr [ 'introspect_unknown' ] = 'Cannot inspect signature for request: method unknown' ;
2015-10-07 23:22:20 +03:00
$this -> xmlrpcerr [ 'http_error' ] = '5' ;
$this -> xmlrpcstr [ 'http_error' ] = " Did not receive a '200 OK' response from remote server. " ;
$this -> xmlrpcerr [ 'no_data' ] = '6' ;
2016-04-24 11:50:47 +03:00
$this -> xmlrpcstr [ 'no_data' ] = 'No data received from server.' ;
2015-10-07 23:22:20 +03:00
$this -> initialize ( $config );
2016-04-24 11:50:47 +03:00
log_message ( 'info' , 'XML-RPC Class Initialized' );
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Initialize
*
* @ param array $config
* @ return void
*/
public function initialize ( $config = array ())
2015-10-07 23:22:20 +03:00
{
if ( count ( $config ) > 0 )
{
foreach ( $config as $key => $val )
{
if ( isset ( $this -> $key ))
{
$this -> $key = $val ;
}
}
}
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Parse server URL
*
* @ param string $url
* @ param int $port
* @ param string $proxy
* @ param int $proxy_port
* @ return void
*/
public function server ( $url , $port = 80 , $proxy = FALSE , $proxy_port = 8080 )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
if ( strpos ( $url , 'http' ) !== 0 )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$url = 'http://' . $url ;
2015-10-07 23:22:20 +03:00
}
$parts = parse_url ( $url );
2016-04-24 11:50:47 +03:00
if ( isset ( $parts [ 'user' ], $parts [ 'pass' ]))
{
$parts [ 'host' ] = $parts [ 'user' ] . ':' . $parts [ 'pass' ] . '@' . $parts [ 'host' ];
}
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
$path = isset ( $parts [ 'path' ]) ? $parts [ 'path' ] : '/' ;
if ( ! empty ( $parts [ 'query' ]))
2015-10-07 23:22:20 +03:00
{
$path .= '?' . $parts [ 'query' ];
}
2016-04-24 11:50:47 +03:00
$this -> client = new XML_RPC_Client ( $path , $parts [ 'host' ], $port , $proxy , $proxy_port );
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Set Timeout
*
* @ param int $seconds
* @ return void
*/
public function timeout ( $seconds = 5 )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
if ( $this -> client !== NULL && is_int ( $seconds ))
2015-10-07 23:22:20 +03:00
{
$this -> client -> timeout = $seconds ;
}
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Set Methods
*
* @ param string $function Method name
* @ return void
*/
public function method ( $function )
2015-10-07 23:22:20 +03:00
{
$this -> method = $function ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Take Array of Data and Create Objects
*
* @ param array $incoming
* @ return void
*/
public function request ( $incoming )
2015-10-07 23:22:20 +03:00
{
if ( ! is_array ( $incoming ))
{
// Send Error
2016-04-24 11:50:47 +03:00
return ;
2015-10-07 23:22:20 +03:00
}
$this -> data = array ();
foreach ( $incoming as $key => $value )
{
$this -> data [ $key ] = $this -> values_parsing ( $value );
}
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Set Debug
*
* @ param bool $flag
* @ return void
*/
public function set_debug ( $flag = TRUE )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$this -> debug = ( $flag === TRUE );
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Values Parsing
*
* @ param mixed $value
* @ return object
*/
public function values_parsing ( $value )
2015-10-07 23:22:20 +03:00
{
if ( is_array ( $value ) && array_key_exists ( 0 , $value ))
{
2016-04-24 11:50:47 +03:00
if ( ! isset ( $value [ 1 ], $this -> xmlrpcTypes [ $value [ 1 ]]))
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$temp = new XML_RPC_Values ( $value [ 0 ], ( is_array ( $value [ 0 ]) ? 'array' : 'string' ));
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
else
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
if ( is_array ( $value [ 0 ]) && ( $value [ 1 ] === 'struct' OR $value [ 1 ] === 'array' ))
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
while ( list ( $k ) = each ( $value [ 0 ]))
{
$value [ 0 ][ $k ] = $this -> values_parsing ( $value [ 0 ][ $k ]);
}
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
$temp = new XML_RPC_Values ( $value [ 0 ], $value [ 1 ]);
2015-10-07 23:22:20 +03:00
}
}
else
{
$temp = new XML_RPC_Values ( $value , 'string' );
}
return $temp ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Sends XML - RPC Request
*
* @ return bool
*/
public function send_request ()
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$this -> message = new XML_RPC_Message ( $this -> method , $this -> data );
2015-10-07 23:22:20 +03:00
$this -> message -> debug = $this -> debug ;
2016-04-24 11:50:47 +03:00
if ( ! $this -> result = $this -> client -> send ( $this -> message ) OR ! is_object ( $this -> result -> val ))
2015-10-07 23:22:20 +03:00
{
$this -> error = $this -> result -> errstr ;
return FALSE ;
}
$this -> response = $this -> result -> decode ();
return TRUE ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Returns Error
*
* @ return string
*/
public function display_error ()
2015-10-07 23:22:20 +03:00
{
return $this -> error ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Returns Remote Server Response
*
* @ return string
*/
public function display_response ()
2015-10-07 23:22:20 +03:00
{
return $this -> response ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Sends an Error Message for Server Request
*
* @ param int $number
* @ param string $message
* @ return object
*/
public function send_error_message ( $number , $message )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
return new XML_RPC_Response ( 0 , $number , $message );
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Send Response for Server Request
*
* @ param array $response
* @ return object
*/
public function send_response ( $response )
2015-10-07 23:22:20 +03:00
{
// $response should be array of values, which will be parsed
// based on their data and type into a valid group of XML-RPC values
2016-04-24 11:50:47 +03:00
return new XML_RPC_Response ( $this -> values_parsing ( $response ));
2015-10-07 23:22:20 +03:00
}
} // END XML_RPC Class
/**
* XML - RPC Client class
*
* @ category XML - RPC
2016-04-24 11:50:47 +03:00
* @ author EllisLab Dev Team
* @ link https :// codeigniter . com / user_guide / libraries / xmlrpc . html
2015-10-07 23:22:20 +03:00
*/
class XML_RPC_Client extends CI_Xmlrpc
{
2016-04-24 11:50:47 +03:00
/**
* Path
*
* @ var string
*/
public $path = '' ;
/**
* Server hostname
*
* @ var string
*/
public $server = '' ;
/**
* Server port
*
* @ var int
*/
public $port = 80 ;
/**
*
* Server username
*
* @ var string
*/
public $username ;
/**
* Server password
*
* @ var string
*/
public $password ;
/**
* Proxy hostname
*
* @ var string
*/
public $proxy = FALSE ;
/**
* Proxy port
*
* @ var int
*/
public $proxy_port = 8080 ;
/**
* Error number
*
* @ var string
*/
public $errno = '' ;
/**
* Error message
*
* @ var string
*/
public $errstring = '' ;
/**
* Timeout in seconds
*
* @ var int
*/
public $timeout = 5 ;
/**
* No Multicall flag
*
* @ var bool
*/
public $no_multicall = FALSE ;
// --------------------------------------------------------------------
/**
* Constructor
*
* @ param string $path
* @ param object $server
* @ param int $port
* @ param string $proxy
* @ param int $proxy_port
* @ return void
*/
public function __construct ( $path , $server , $port = 80 , $proxy = FALSE , $proxy_port = 8080 )
2015-10-07 23:22:20 +03:00
{
parent :: __construct ();
2016-04-24 11:50:47 +03:00
$url = parse_url ( 'http://' . $server );
if ( isset ( $url [ 'user' ], $url [ 'pass' ]))
{
$this -> username = $url [ 'user' ];
$this -> password = $url [ 'pass' ];
}
2015-10-07 23:22:20 +03:00
$this -> port = $port ;
2016-04-24 11:50:47 +03:00
$this -> server = $url [ 'host' ];
2015-10-07 23:22:20 +03:00
$this -> path = $path ;
2016-04-24 11:50:47 +03:00
$this -> proxy = $proxy ;
$this -> proxy_port = $proxy_port ;
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Send message
*
* @ param mixed $msg
* @ return object
*/
public function send ( $msg )
2015-10-07 23:22:20 +03:00
{
if ( is_array ( $msg ))
{
// Multi-call disabled
2016-04-24 11:50:47 +03:00
return new XML_RPC_Response ( 0 , $this -> xmlrpcerr [ 'multicall_recursion' ], $this -> xmlrpcstr [ 'multicall_recursion' ]);
2015-10-07 23:22:20 +03:00
}
return $this -> sendPayload ( $msg );
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Send payload
*
* @ param object $msg
* @ return object
*/
public function sendPayload ( $msg )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
if ( $this -> proxy === FALSE )
{
$server = $this -> server ;
$port = $this -> port ;
}
else
{
$server = $this -> proxy ;
$port = $this -> proxy_port ;
}
$fp = @ fsockopen ( $server , $port , $this -> errno , $this -> errstring , $this -> timeout );
2015-10-07 23:22:20 +03:00
if ( ! is_resource ( $fp ))
{
error_log ( $this -> xmlrpcstr [ 'http_error' ]);
2016-04-24 11:50:47 +03:00
return new XML_RPC_Response ( 0 , $this -> xmlrpcerr [ 'http_error' ], $this -> xmlrpcstr [ 'http_error' ]);
2015-10-07 23:22:20 +03:00
}
if ( empty ( $msg -> payload ))
{
// $msg = XML_RPC_Messages
$msg -> createPayload ();
}
$r = " \r \n " ;
2016-04-24 11:50:47 +03:00
$op = 'POST ' . $this -> path . ' HTTP/1.0' . $r
. 'Host: ' . $this -> server . $r
. 'Content-Type: text/xml' . $r
. ( isset ( $this -> username , $this -> password ) ? 'Authorization: Basic ' . base64_encode ( $this -> username . ':' . $this -> password ) . $r : '' )
. 'User-Agent: ' . $this -> xmlrpcName . $r
. 'Content-Length: ' . strlen ( $msg -> payload ) . $r . $r
. $msg -> payload ;
for ( $written = $timestamp = 0 , $length = strlen ( $op ); $written < $length ; $written += $result )
{
if (( $result = fwrite ( $fp , substr ( $op , $written ))) === FALSE )
{
break ;
}
// See https://bugs.php.net/bug.php?id=39598 and http://php.net/manual/en/function.fwrite.php#96951
elseif ( $result === 0 )
{
if ( $timestamp === 0 )
{
$timestamp = time ();
}
elseif ( $timestamp < ( time () - $this -> timeout ))
{
$result = FALSE ;
break ;
}
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
usleep ( 250000 );
continue ;
}
else
{
$timestamp = 0 ;
}
}
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
if ( $result === FALSE )
2015-10-07 23:22:20 +03:00
{
error_log ( $this -> xmlrpcstr [ 'http_error' ]);
2016-04-24 11:50:47 +03:00
return new XML_RPC_Response ( 0 , $this -> xmlrpcerr [ 'http_error' ], $this -> xmlrpcstr [ 'http_error' ]);
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
2015-10-07 23:22:20 +03:00
$resp = $msg -> parseResponse ( $fp );
fclose ( $fp );
return $resp ;
}
2016-04-24 11:50:47 +03:00
} // END XML_RPC_Client Class
2015-10-07 23:22:20 +03:00
/**
* XML - RPC Response class
*
* @ category XML - RPC
2016-04-24 11:50:47 +03:00
* @ author EllisLab Dev Team
* @ link https :// codeigniter . com / user_guide / libraries / xmlrpc . html
2015-10-07 23:22:20 +03:00
*/
class XML_RPC_Response
{
2016-04-24 11:50:47 +03:00
/**
* Value
*
* @ var mixed
*/
public $val = 0 ;
/**
* Error number
*
* @ var int
*/
public $errno = 0 ;
/**
* Error message
*
* @ var string
*/
public $errstr = '' ;
/**
* Headers list
*
* @ var array
*/
public $headers = array ();
/**
* XSS Filter flag
*
* @ var bool
*/
public $xss_clean = TRUE ;
// --------------------------------------------------------------------
/**
* Constructor
*
* @ param mixed $val
* @ param int $code
* @ param string $fstr
* @ return void
*/
2015-10-07 23:22:20 +03:00
public function __construct ( $val , $code = 0 , $fstr = '' )
{
2016-04-24 11:50:47 +03:00
if ( $code !== 0 )
2015-10-07 23:22:20 +03:00
{
// error
$this -> errno = $code ;
2016-04-24 11:50:47 +03:00
$this -> errstr = htmlspecialchars ( $fstr ,
( is_php ( '5.4' ) ? ENT_XML1 | ENT_NOQUOTES : ENT_NOQUOTES ),
'UTF-8' );
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
elseif ( ! is_object ( $val ))
2015-10-07 23:22:20 +03:00
{
// programmer error, not an object
2016-04-24 11:50:47 +03:00
error_log ( " Invalid type ' " . gettype ( $val ) . " ' (value: " . $val . ') passed to XML_RPC_Response. Defaulting to empty value.' );
2015-10-07 23:22:20 +03:00
$this -> val = new XML_RPC_Values ();
}
else
{
$this -> val = $val ;
}
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Fault code
*
* @ return int
*/
public function faultCode ()
2015-10-07 23:22:20 +03:00
{
return $this -> errno ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Fault string
*
* @ return string
*/
public function faultString ()
2015-10-07 23:22:20 +03:00
{
return $this -> errstr ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Value
*
* @ return mixed
*/
public function value ()
2015-10-07 23:22:20 +03:00
{
return $this -> val ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Prepare response
*
* @ return string xml
*/
public function prepare_response ()
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
return " <methodResponse> \n "
. ( $this -> errno
? ' < fault >
2015-10-07 23:22:20 +03:00
< value >
< struct >
< member >
< name > faultCode </ name >
2016-04-24 11:50:47 +03:00
< value >< int > '.$this->errno.' </ int ></ value >
2015-10-07 23:22:20 +03:00
</ member >
< member >
< name > faultString </ name >
2016-04-24 11:50:47 +03:00
< value >< string > '.$this->errstr.' </ string ></ value >
2015-10-07 23:22:20 +03:00
</ member >
</ struct >
</ value >
2016-04-24 11:50:47 +03:00
</ fault > '
: " <params> \n <param> \n " . $this -> val -> serialize_class () . " </param> \n </params> " )
. " \n </methodResponse> " ;
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Decode
*
* @ param mixed $array
* @ return array
*/
public function decode ( $array = NULL )
2015-10-07 23:22:20 +03:00
{
$CI =& get_instance ();
2016-04-24 11:50:47 +03:00
if ( is_array ( $array ))
2015-10-07 23:22:20 +03:00
{
while ( list ( $key ) = each ( $array ))
{
if ( is_array ( $array [ $key ]))
{
$array [ $key ] = $this -> decode ( $array [ $key ]);
}
2016-04-24 11:50:47 +03:00
elseif ( $this -> xss_clean )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$array [ $key ] = $CI -> security -> xss_clean ( $array [ $key ]);
2015-10-07 23:22:20 +03:00
}
}
2016-04-24 11:50:47 +03:00
return $array ;
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
$result = $this -> xmlrpc_decoder ( $this -> val );
if ( is_array ( $result ))
{
$result = $this -> decode ( $result );
}
elseif ( $this -> xss_clean )
{
$result = $CI -> security -> xss_clean ( $result );
2015-10-07 23:22:20 +03:00
}
return $result ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* XML - RPC Object to PHP Types
*
* @ param object
* @ return array
*/
public function xmlrpc_decoder ( $xmlrpc_val )
2015-10-07 23:22:20 +03:00
{
$kind = $xmlrpc_val -> kindOf ();
2016-04-24 11:50:47 +03:00
if ( $kind === 'scalar' )
2015-10-07 23:22:20 +03:00
{
return $xmlrpc_val -> scalarval ();
}
2016-04-24 11:50:47 +03:00
elseif ( $kind === 'array' )
2015-10-07 23:22:20 +03:00
{
reset ( $xmlrpc_val -> me );
2016-04-24 11:50:47 +03:00
$b = current ( $xmlrpc_val -> me );
2015-10-07 23:22:20 +03:00
$arr = array ();
2016-04-24 11:50:47 +03:00
for ( $i = 0 , $size = count ( $b ); $i < $size ; $i ++ )
2015-10-07 23:22:20 +03:00
{
$arr [] = $this -> xmlrpc_decoder ( $xmlrpc_val -> me [ 'array' ][ $i ]);
}
return $arr ;
}
2016-04-24 11:50:47 +03:00
elseif ( $kind === 'struct' )
2015-10-07 23:22:20 +03:00
{
reset ( $xmlrpc_val -> me [ 'struct' ]);
$arr = array ();
while ( list ( $key , $value ) = each ( $xmlrpc_val -> me [ 'struct' ]))
{
$arr [ $key ] = $this -> xmlrpc_decoder ( $value );
}
return $arr ;
}
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* ISO - 8601 time to server or UTC time
*
* @ param string
* @ param bool
* @ return int unix timestamp
*/
public function iso8601_decode ( $time , $utc = FALSE )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
// Return a time in the localtime, or UTC
2015-10-07 23:22:20 +03:00
$t = 0 ;
if ( preg_match ( '/([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})/' , $time , $regs ))
{
2016-04-24 11:50:47 +03:00
$fnc = ( $utc === TRUE ) ? 'gmmktime' : 'mktime' ;
2015-10-07 23:22:20 +03:00
$t = $fnc ( $regs [ 4 ], $regs [ 5 ], $regs [ 6 ], $regs [ 2 ], $regs [ 3 ], $regs [ 1 ]);
}
return $t ;
}
2016-04-24 11:50:47 +03:00
} // END XML_RPC_Response Class
2015-10-07 23:22:20 +03:00
/**
* XML - RPC Message class
*
* @ category XML - RPC
2016-04-24 11:50:47 +03:00
* @ author EllisLab Dev Team
* @ link https :// codeigniter . com / user_guide / libraries / xmlrpc . html
2015-10-07 23:22:20 +03:00
*/
class XML_RPC_Message extends CI_Xmlrpc
{
2016-04-24 11:50:47 +03:00
/**
* Payload
*
* @ var string
*/
public $payload ;
/**
* Method name
*
* @ var string
*/
public $method_name ;
/**
* Parameter list
*
* @ var array
*/
public $params = array ();
/**
* XH ?
*
* @ var array
*/
public $xh = array ();
// --------------------------------------------------------------------
/**
* Constructor
*
* @ param string $method
* @ param array $pars
* @ return void
*/
public function __construct ( $method , $pars = FALSE )
2015-10-07 23:22:20 +03:00
{
parent :: __construct ();
$this -> method_name = $method ;
if ( is_array ( $pars ) && count ( $pars ) > 0 )
{
2016-04-24 11:50:47 +03:00
for ( $i = 0 , $c = count ( $pars ); $i < $c ; $i ++ )
2015-10-07 23:22:20 +03:00
{
// $pars[$i] = XML_RPC_Values
$this -> params [] = $pars [ $i ];
}
}
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Create Payload to Send
*
* @ return void
*/
public function createPayload ()
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$this -> payload = '<?xml version="1.0"?' . " > \r \n <methodCall> \r \n "
. '<methodName>' . $this -> method_name . " </methodName> \r \n "
. " <params> \r \n " ;
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
for ( $i = 0 , $c = count ( $this -> params ); $i < $c ; $i ++ )
2015-10-07 23:22:20 +03:00
{
// $p = XML_RPC_Values
$p = $this -> params [ $i ];
$this -> payload .= " <param> \r \n " . $p -> serialize_class () . " </param> \r \n " ;
}
$this -> payload .= " </params> \r \n </methodCall> \r \n " ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Parse External XML - RPC Server ' s Response
*
* @ param resource
* @ return object
*/
public function parseResponse ( $fp )
2015-10-07 23:22:20 +03:00
{
$data = '' ;
while ( $datum = fread ( $fp , 4096 ))
{
$data .= $datum ;
}
2016-04-24 11:50:47 +03:00
// Display HTTP content for debugging
2015-10-07 23:22:20 +03:00
if ( $this -> debug === TRUE )
{
2016-04-24 11:50:47 +03:00
echo " <pre>---DATA--- \n " . htmlspecialchars ( $data ) . " \n ---END DATA--- \n \n </pre> " ;
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// Check for data
if ( $data === '' )
2015-10-07 23:22:20 +03:00
{
error_log ( $this -> xmlrpcstr [ 'no_data' ]);
2016-04-24 11:50:47 +03:00
return new XML_RPC_Response ( 0 , $this -> xmlrpcerr [ 'no_data' ], $this -> xmlrpcstr [ 'no_data' ]);
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// Check for HTTP 200 Response
if ( strpos ( $data , 'HTTP' ) === 0 && ! preg_match ( '/^HTTP\/[0-9\.]+ 200 /' , $data ))
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$errstr = substr ( $data , 0 , strpos ( $data , " \n " ) - 1 );
return new XML_RPC_Response ( 0 , $this -> xmlrpcerr [ 'http_error' ], $this -> xmlrpcstr [ 'http_error' ] . ' (' . $errstr . ')' );
2015-10-07 23:22:20 +03:00
}
//-------------------------------------
2016-04-24 11:50:47 +03:00
// Create and Set Up XML Parser
2015-10-07 23:22:20 +03:00
//-------------------------------------
$parser = xml_parser_create ( $this -> xmlrpc_defencoding );
2016-04-24 11:50:47 +03:00
$pname = ( string ) $parser ;
$this -> xh [ $pname ] = array (
'isf' => 0 ,
'ac' => '' ,
'headers' => array (),
'stack' => array (),
'valuestack' => array (),
'isf_reason' => 0
);
2015-10-07 23:22:20 +03:00
xml_set_object ( $parser , $this );
2016-04-24 11:50:47 +03:00
xml_parser_set_option ( $parser , XML_OPTION_CASE_FOLDING , TRUE );
2015-10-07 23:22:20 +03:00
xml_set_element_handler ( $parser , 'open_tag' , 'closing_tag' );
xml_set_character_data_handler ( $parser , 'character_data' );
//xml_set_default_handler($parser, 'default_handler');
2016-04-24 11:50:47 +03:00
// Get headers
2015-10-07 23:22:20 +03:00
$lines = explode ( " \r \n " , $data );
while (( $line = array_shift ( $lines )))
{
if ( strlen ( $line ) < 1 )
{
break ;
}
2016-04-24 11:50:47 +03:00
$this -> xh [ $pname ][ 'headers' ][] = $line ;
2015-10-07 23:22:20 +03:00
}
$data = implode ( " \r \n " , $lines );
2016-04-24 11:50:47 +03:00
// Parse XML data
2015-10-07 23:22:20 +03:00
if ( ! xml_parse ( $parser , $data , count ( $data )))
{
$errstr = sprintf ( 'XML error: %s at line %d' ,
2016-04-24 11:50:47 +03:00
xml_error_string ( xml_get_error_code ( $parser )),
xml_get_current_line_number ( $parser ));
2015-10-07 23:22:20 +03:00
$r = new XML_RPC_Response ( 0 , $this -> xmlrpcerr [ 'invalid_return' ], $this -> xmlrpcstr [ 'invalid_return' ]);
xml_parser_free ( $parser );
return $r ;
}
xml_parser_free ( $parser );
2016-04-24 11:50:47 +03:00
// Got ourselves some badness, it seems
if ( $this -> xh [ $pname ][ 'isf' ] > 1 )
2015-10-07 23:22:20 +03:00
{
if ( $this -> debug === TRUE )
{
2016-04-24 11:50:47 +03:00
echo " ---Invalid Return--- \n " . $this -> xh [ $pname ][ 'isf_reason' ] . " ---Invalid Return--- \n \n " ;
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
return new XML_RPC_Response ( 0 , $this -> xmlrpcerr [ 'invalid_return' ], $this -> xmlrpcstr [ 'invalid_return' ] . ' ' . $this -> xh [ $pname ][ 'isf_reason' ]);
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
elseif ( ! is_object ( $this -> xh [ $pname ][ 'value' ]))
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
return new XML_RPC_Response ( 0 , $this -> xmlrpcerr [ 'invalid_return' ], $this -> xmlrpcstr [ 'invalid_return' ] . ' ' . $this -> xh [ $pname ][ 'isf_reason' ]);
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// Display XML content for debugging
2015-10-07 23:22:20 +03:00
if ( $this -> debug === TRUE )
{
2016-04-24 11:50:47 +03:00
echo '<pre>' ;
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
if ( count ( $this -> xh [ $pname ][ 'headers' ] > 0 ))
2015-10-07 23:22:20 +03:00
{
echo " ---HEADERS--- \n " ;
2016-04-24 11:50:47 +03:00
foreach ( $this -> xh [ $pname ][ 'headers' ] as $header )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
echo $header . " \n " ;
2015-10-07 23:22:20 +03:00
}
echo " ---END HEADERS--- \n \n " ;
}
2016-04-24 11:50:47 +03:00
echo " ---DATA--- \n " . htmlspecialchars ( $data ) . " \n ---END DATA--- \n \n ---PARSED--- \n " ;
var_dump ( $this -> xh [ $pname ][ 'value' ]);
2015-10-07 23:22:20 +03:00
echo " \n ---END PARSED---</pre> " ;
}
2016-04-24 11:50:47 +03:00
// Send response
$v = $this -> xh [ $pname ][ 'value' ];
if ( $this -> xh [ $pname ][ 'isf' ])
2015-10-07 23:22:20 +03:00
{
$errno_v = $v -> me [ 'struct' ][ 'faultCode' ];
$errstr_v = $v -> me [ 'struct' ][ 'faultString' ];
$errno = $errno_v -> scalarval ();
2016-04-24 11:50:47 +03:00
if ( $errno === 0 )
2015-10-07 23:22:20 +03:00
{
// FAULT returned, errno needs to reflect that
$errno = - 1 ;
}
$r = new XML_RPC_Response ( $v , $errno , $errstr_v -> scalarval ());
}
else
{
$r = new XML_RPC_Response ( $v );
}
2016-04-24 11:50:47 +03:00
$r -> headers = $this -> xh [ $pname ][ 'headers' ];
2015-10-07 23:22:20 +03:00
return $r ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
// ------------------------------------
// Begin Return Message Parsing section
// ------------------------------------
// quick explanation of components:
// ac - used to accumulate values
// isf - used to indicate a fault
// 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 parent tree of the xml element,
// used to validate the nesting of elements
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Start Element Handler
*
* @ param string
* @ param string
* @ return void
*/
public function open_tag ( $the_parser , $name )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$the_parser = ( string ) $the_parser ;
2015-10-07 23:22:20 +03:00
// If invalid nesting, then return
if ( $this -> xh [ $the_parser ][ 'isf' ] > 1 ) return ;
// Evaluate and check for correct nesting of XML elements
2016-04-24 11:50:47 +03:00
if ( count ( $this -> xh [ $the_parser ][ 'stack' ]) === 0 )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
if ( $name !== 'METHODRESPONSE' && $name !== 'METHODCALL' )
2015-10-07 23:22:20 +03:00
{
$this -> xh [ $the_parser ][ 'isf' ] = 2 ;
$this -> xh [ $the_parser ][ 'isf_reason' ] = 'Top level XML-RPC element is missing' ;
return ;
}
}
2016-04-24 11:50:47 +03:00
// not top level element: see if parent is OK
elseif ( ! in_array ( $this -> xh [ $the_parser ][ 'stack' ][ 0 ], $this -> valid_parents [ $name ], TRUE ))
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$this -> xh [ $the_parser ][ 'isf' ] = 2 ;
$this -> xh [ $the_parser ][ 'isf_reason' ] = 'XML-RPC element ' . $name . ' cannot be child of ' . $this -> xh [ $the_parser ][ 'stack' ][ 0 ];
return ;
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
switch ( $name )
2015-10-07 23:22:20 +03:00
{
case 'STRUCT' :
case 'ARRAY' :
// Creates array for child elements
2016-04-24 11:50:47 +03:00
$cur_val = array ( 'value' => array (), 'type' => $name );
2015-10-07 23:22:20 +03:00
array_unshift ( $this -> xh [ $the_parser ][ 'valuestack' ], $cur_val );
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'METHODNAME' :
case 'NAME' :
$this -> xh [ $the_parser ][ 'ac' ] = '' ;
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'FAULT' :
$this -> xh [ $the_parser ][ 'isf' ] = 1 ;
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'PARAM' :
$this -> xh [ $the_parser ][ 'value' ] = NULL ;
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'VALUE' :
$this -> xh [ $the_parser ][ 'vt' ] = 'value' ;
$this -> xh [ $the_parser ][ 'ac' ] = '' ;
$this -> xh [ $the_parser ][ 'lv' ] = 1 ;
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'I4' :
case 'INT' :
case 'STRING' :
case 'BOOLEAN' :
case 'DOUBLE' :
case 'DATETIME.ISO8601' :
case 'BASE64' :
2016-04-24 11:50:47 +03:00
if ( $this -> xh [ $the_parser ][ 'vt' ] !== 'value' )
2015-10-07 23:22:20 +03:00
{
//two data elements inside a value: an error occurred!
$this -> xh [ $the_parser ][ 'isf' ] = 2 ;
2016-04-24 11:50:47 +03:00
$this -> xh [ $the_parser ][ 'isf_reason' ] = 'There is a ' . $name . ' element following a '
. $this -> xh [ $the_parser ][ 'vt' ] . ' element inside a single value' ;
2015-10-07 23:22:20 +03:00
return ;
}
$this -> xh [ $the_parser ][ 'ac' ] = '' ;
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'MEMBER' :
// Set name of <member> to nothing to prevent errors later if no <name> is found
$this -> xh [ $the_parser ][ 'valuestack' ][ 0 ][ 'name' ] = '' ;
// Set NULL value to check to see if value passed for this param/member
$this -> xh [ $the_parser ][ 'value' ] = NULL ;
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'DATA' :
case 'METHODCALL' :
case 'METHODRESPONSE' :
case 'PARAMS' :
// valid elements that add little to processing
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
default :
/// An Invalid Element is Found, so we have trouble
$this -> xh [ $the_parser ][ 'isf' ] = 2 ;
2016-04-24 11:50:47 +03:00
$this -> xh [ $the_parser ][ 'isf_reason' ] = 'Invalid XML-RPC element found: ' . $name ;
break ;
2015-10-07 23:22:20 +03:00
}
// Add current element name to stack, to allow validation of nesting
array_unshift ( $this -> xh [ $the_parser ][ 'stack' ], $name );
2016-04-24 11:50:47 +03:00
$name === 'VALUE' OR $this -> xh [ $the_parser ][ 'lv' ] = 0 ;
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* End Element Handler
*
* @ param string
* @ param string
* @ return void
*/
public function closing_tag ( $the_parser , $name )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$the_parser = ( string ) $the_parser ;
2015-10-07 23:22:20 +03:00
if ( $this -> xh [ $the_parser ][ 'isf' ] > 1 ) return ;
// Remove current element from stack and set variable
// NOTE: If the XML validates, then we do not have to worry about
2016-04-24 11:50:47 +03:00
// the opening and closing of elements. Nesting is checked on the opening
2015-10-07 23:22:20 +03:00
// tag so we be safe there as well.
$curr_elem = array_shift ( $this -> xh [ $the_parser ][ 'stack' ]);
2016-04-24 11:50:47 +03:00
switch ( $name )
2015-10-07 23:22:20 +03:00
{
case 'STRUCT' :
case 'ARRAY' :
$cur_val = array_shift ( $this -> xh [ $the_parser ][ 'valuestack' ]);
2016-04-24 11:50:47 +03:00
$this -> xh [ $the_parser ][ 'value' ] = isset ( $cur_val [ 'values' ]) ? $cur_val [ 'values' ] : array ();
2015-10-07 23:22:20 +03:00
$this -> xh [ $the_parser ][ 'vt' ] = strtolower ( $name );
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'NAME' :
$this -> xh [ $the_parser ][ 'valuestack' ][ 0 ][ 'name' ] = $this -> xh [ $the_parser ][ 'ac' ];
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'BOOLEAN' :
case 'I4' :
case 'INT' :
case 'STRING' :
case 'DOUBLE' :
case 'DATETIME.ISO8601' :
case 'BASE64' :
$this -> xh [ $the_parser ][ 'vt' ] = strtolower ( $name );
2016-04-24 11:50:47 +03:00
if ( $name === 'STRING' )
2015-10-07 23:22:20 +03:00
{
$this -> xh [ $the_parser ][ 'value' ] = $this -> xh [ $the_parser ][ 'ac' ];
}
2016-04-24 11:50:47 +03:00
elseif ( $name === 'DATETIME.ISO8601' )
2015-10-07 23:22:20 +03:00
{
$this -> xh [ $the_parser ][ 'vt' ] = $this -> xmlrpcDateTime ;
$this -> xh [ $the_parser ][ 'value' ] = $this -> xh [ $the_parser ][ 'ac' ];
}
2016-04-24 11:50:47 +03:00
elseif ( $name === 'BASE64' )
2015-10-07 23:22:20 +03:00
{
$this -> xh [ $the_parser ][ 'value' ] = base64_decode ( $this -> xh [ $the_parser ][ 'ac' ]);
}
2016-04-24 11:50:47 +03:00
elseif ( $name === 'BOOLEAN' )
2015-10-07 23:22:20 +03:00
{
// Translated BOOLEAN values to TRUE AND FALSE
2016-04-24 11:50:47 +03:00
$this -> xh [ $the_parser ][ 'value' ] = ( bool ) $this -> xh [ $the_parser ][ 'ac' ];
2015-10-07 23:22:20 +03:00
}
elseif ( $name == 'DOUBLE' )
{
// we have a DOUBLE
// we must check that only 0123456789-.<space> are characters here
2016-04-24 11:50:47 +03:00
$this -> xh [ $the_parser ][ 'value' ] = preg_match ( '/^[+-]?[eE0-9\t \.]+$/' , $this -> xh [ $the_parser ][ 'ac' ])
? ( float ) $this -> xh [ $the_parser ][ 'ac' ]
: 'ERROR_NON_NUMERIC_FOUND' ;
2015-10-07 23:22:20 +03:00
}
else
{
// we have an I4/INT
// we must check that only 0123456789-<space> are characters here
2016-04-24 11:50:47 +03:00
$this -> xh [ $the_parser ][ 'value' ] = preg_match ( '/^[+-]?[0-9\t ]+$/' , $this -> xh [ $the_parser ][ 'ac' ])
? ( int ) $this -> xh [ $the_parser ][ 'ac' ]
: 'ERROR_NON_NUMERIC_FOUND' ;
2015-10-07 23:22:20 +03:00
}
$this -> xh [ $the_parser ][ 'ac' ] = '' ;
$this -> xh [ $the_parser ][ 'lv' ] = 3 ; // indicate we've found a value
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'VALUE' :
// This if() detects if no scalar was inside <VALUE></VALUE>
2016-04-24 11:50:47 +03:00
if ( $this -> xh [ $the_parser ][ 'vt' ] == 'value' )
2015-10-07 23:22:20 +03:00
{
$this -> xh [ $the_parser ][ 'value' ] = $this -> xh [ $the_parser ][ 'ac' ];
$this -> xh [ $the_parser ][ 'vt' ] = $this -> xmlrpcString ;
}
// build the XML-RPC value out of the data received, and substitute it
$temp = new XML_RPC_Values ( $this -> xh [ $the_parser ][ 'value' ], $this -> xh [ $the_parser ][ 'vt' ]);
2016-04-24 11:50:47 +03:00
if ( count ( $this -> xh [ $the_parser ][ 'valuestack' ]) && $this -> xh [ $the_parser ][ 'valuestack' ][ 0 ][ 'type' ] === 'ARRAY' )
2015-10-07 23:22:20 +03:00
{
// Array
$this -> xh [ $the_parser ][ 'valuestack' ][ 0 ][ 'values' ][] = $temp ;
}
else
{
// Struct
$this -> xh [ $the_parser ][ 'value' ] = $temp ;
}
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'MEMBER' :
2016-04-24 11:50:47 +03:00
$this -> xh [ $the_parser ][ 'ac' ] = '' ;
2015-10-07 23:22:20 +03:00
// If value add to array in the stack for the last element built
if ( $this -> xh [ $the_parser ][ 'value' ])
{
$this -> xh [ $the_parser ][ 'valuestack' ][ 0 ][ 'values' ][ $this -> xh [ $the_parser ][ 'valuestack' ][ 0 ][ 'name' ]] = $this -> xh [ $the_parser ][ 'value' ];
}
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'DATA' :
2016-04-24 11:50:47 +03:00
$this -> xh [ $the_parser ][ 'ac' ] = '' ;
break ;
2015-10-07 23:22:20 +03:00
case 'PARAM' :
if ( $this -> xh [ $the_parser ][ 'value' ])
{
$this -> xh [ $the_parser ][ 'params' ][] = $this -> xh [ $the_parser ][ 'value' ];
}
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'METHODNAME' :
$this -> xh [ $the_parser ][ 'method' ] = ltrim ( $this -> xh [ $the_parser ][ 'ac' ]);
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 'PARAMS' :
case 'FAULT' :
case 'METHODCALL' :
case 'METHORESPONSE' :
// We're all good kids with nuthin' to do
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
default :
2016-04-24 11:50:47 +03:00
// End of an Invalid Element. Taken care of during the opening tag though
break ;
2015-10-07 23:22:20 +03:00
}
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Parse character data
*
* @ param string
* @ param string
* @ return void
*/
public function character_data ( $the_parser , $data )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$the_parser = ( string ) $the_parser ;
2015-10-07 23:22:20 +03:00
if ( $this -> xh [ $the_parser ][ 'isf' ] > 1 ) return ; // XML Fault found already
// If a value has not been found
2016-04-24 11:50:47 +03:00
if ( $this -> xh [ $the_parser ][ 'lv' ] !== 3 )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
if ( $this -> xh [ $the_parser ][ 'lv' ] === 1 )
2015-10-07 23:22:20 +03:00
{
$this -> xh [ $the_parser ][ 'lv' ] = 2 ; // Found a value
}
2016-04-24 11:50:47 +03:00
if ( ! isset ( $this -> xh [ $the_parser ][ 'ac' ]))
2015-10-07 23:22:20 +03:00
{
$this -> xh [ $the_parser ][ 'ac' ] = '' ;
}
$this -> xh [ $the_parser ][ 'ac' ] .= $data ;
}
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Add parameter
*
* @ param mixed
* @ return void
*/
public function addParam ( $par )
{
$this -> params [] = $par ;
}
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Output parameters
*
* @ param array $array
* @ return array
*/
public function output_parameters ( array $array = array ())
2015-10-07 23:22:20 +03:00
{
$CI =& get_instance ();
2016-04-24 11:50:47 +03:00
if ( ! empty ( $array ))
2015-10-07 23:22:20 +03:00
{
while ( list ( $key ) = each ( $array ))
{
if ( is_array ( $array [ $key ]))
{
$array [ $key ] = $this -> output_parameters ( $array [ $key ]);
}
2016-04-24 11:50:47 +03:00
elseif ( $key !== 'bits' && $this -> xss_clean )
2015-10-07 23:22:20 +03:00
{
// 'bits' is for the MetaWeblog API image bits
// @todo - this needs to be made more general purpose
2016-04-24 11:50:47 +03:00
$array [ $key ] = $CI -> security -> xss_clean ( $array [ $key ]);
2015-10-07 23:22:20 +03:00
}
}
2016-04-24 11:50:47 +03:00
return $array ;
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
$parameters = array ();
for ( $i = 0 , $c = count ( $this -> params ); $i < $c ; $i ++ )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$a_param = $this -> decode_message ( $this -> params [ $i ]);
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
if ( is_array ( $a_param ))
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$parameters [] = $this -> output_parameters ( $a_param );
}
else
{
$parameters [] = ( $this -> xss_clean ) ? $CI -> security -> xss_clean ( $a_param ) : $a_param ;
2015-10-07 23:22:20 +03:00
}
}
return $parameters ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
2015-10-07 23:22:20 +03:00
2016-04-24 11:50:47 +03:00
/**
* Decode message
*
* @ param object
* @ return mixed
*/
public function decode_message ( $param )
2015-10-07 23:22:20 +03:00
{
$kind = $param -> kindOf ();
2016-04-24 11:50:47 +03:00
if ( $kind === 'scalar' )
2015-10-07 23:22:20 +03:00
{
return $param -> scalarval ();
}
2016-04-24 11:50:47 +03:00
elseif ( $kind === 'array' )
2015-10-07 23:22:20 +03:00
{
reset ( $param -> me );
2016-04-24 11:50:47 +03:00
$b = current ( $param -> me );
2015-10-07 23:22:20 +03:00
$arr = array ();
2016-04-24 11:50:47 +03:00
for ( $i = 0 , $c = count ( $b ); $i < $c ; $i ++ )
2015-10-07 23:22:20 +03:00
{
$arr [] = $this -> decode_message ( $param -> me [ 'array' ][ $i ]);
}
return $arr ;
}
2016-04-24 11:50:47 +03:00
elseif ( $kind === 'struct' )
2015-10-07 23:22:20 +03:00
{
reset ( $param -> me [ 'struct' ]);
$arr = array ();
while ( list ( $key , $value ) = each ( $param -> me [ 'struct' ]))
{
$arr [ $key ] = $this -> decode_message ( $value );
}
return $arr ;
}
}
2016-04-24 11:50:47 +03:00
} // END XML_RPC_Message Class
2015-10-07 23:22:20 +03:00
/**
* XML - RPC Values class
*
* @ category XML - RPC
2016-04-24 11:50:47 +03:00
* @ author EllisLab Dev Team
* @ link https :// codeigniter . com / user_guide / libraries / xmlrpc . html
2015-10-07 23:22:20 +03:00
*/
class XML_RPC_Values extends CI_Xmlrpc
{
2016-04-24 11:50:47 +03:00
/**
* Value data
*
* @ var array
*/
public $me = array ();
/**
* Value type
*
* @ var int
*/
public $mytype = 0 ;
// --------------------------------------------------------------------
/**
* Constructor
*
* @ param mixed $val
* @ param string $type
* @ return void
*/
public function __construct ( $val = - 1 , $type = '' )
2015-10-07 23:22:20 +03:00
{
parent :: __construct ();
2016-04-24 11:50:47 +03:00
if ( $val !== - 1 OR $type !== '' )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$type = $type === '' ? 'string' : $type ;
2015-10-07 23:22:20 +03:00
if ( $this -> xmlrpcTypes [ $type ] == 1 )
{
2016-04-24 11:50:47 +03:00
$this -> addScalar ( $val , $type );
2015-10-07 23:22:20 +03:00
}
elseif ( $this -> xmlrpcTypes [ $type ] == 2 )
{
$this -> addArray ( $val );
}
elseif ( $this -> xmlrpcTypes [ $type ] == 3 )
{
$this -> addStruct ( $val );
}
}
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Add scalar value
*
* @ param scalar
* @ param string
* @ return int
*/
public function addScalar ( $val , $type = 'string' )
2015-10-07 23:22:20 +03:00
{
$typeof = $this -> xmlrpcTypes [ $type ];
2016-04-24 11:50:47 +03:00
if ( $this -> mytype === 1 )
2015-10-07 23:22:20 +03:00
{
echo '<strong>XML_RPC_Values</strong>: scalar can have only one value<br />' ;
return 0 ;
}
if ( $typeof != 1 )
{
echo '<strong>XML_RPC_Values</strong>: not a scalar type (${typeof})<br />' ;
return 0 ;
}
2016-04-24 11:50:47 +03:00
if ( $type === $this -> xmlrpcBoolean )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
$val = ( int ) ( strcasecmp ( $val , 'true' ) === 0 OR $val === 1 OR ( $val === TRUE && strcasecmp ( $val , 'false' )));
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
if ( $this -> mytype === 2 )
2015-10-07 23:22:20 +03:00
{
// adding to an array here
$ar = $this -> me [ 'array' ];
$ar [] = new XML_RPC_Values ( $val , $type );
$this -> me [ 'array' ] = $ar ;
}
else
{
// a scalar, so set the value and remember we're scalar
$this -> me [ $type ] = $val ;
$this -> mytype = $typeof ;
}
2016-04-24 11:50:47 +03:00
2015-10-07 23:22:20 +03:00
return 1 ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Add array value
*
* @ param array
* @ return int
*/
public function addArray ( $vals )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
if ( $this -> mytype !== 0 )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
echo '<strong>XML_RPC_Values</strong>: already initialized as a [' . $this -> kindOf () . ']<br />' ;
2015-10-07 23:22:20 +03:00
return 0 ;
}
$this -> mytype = $this -> xmlrpcTypes [ 'array' ];
$this -> me [ 'array' ] = $vals ;
return 1 ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Add struct value
*
* @ param object
* @ return int
*/
public function addStruct ( $vals )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
if ( $this -> mytype !== 0 )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
echo '<strong>XML_RPC_Values</strong>: already initialized as a [' . $this -> kindOf () . ']<br />' ;
2015-10-07 23:22:20 +03:00
return 0 ;
}
$this -> mytype = $this -> xmlrpcTypes [ 'struct' ];
$this -> me [ 'struct' ] = $vals ;
return 1 ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Get value type
*
* @ return string
*/
public function kindOf ()
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
switch ( $this -> mytype )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
case 3 : return 'struct' ;
case 2 : return 'array' ;
case 1 : return 'scalar' ;
default : return 'undef' ;
2015-10-07 23:22:20 +03:00
}
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Serialize data
*
* @ param string
* @ param mixed
* @ return string
*/
public function serializedata ( $typ , $val )
2015-10-07 23:22:20 +03:00
{
$rs = '' ;
2016-04-24 11:50:47 +03:00
switch ( $this -> xmlrpcTypes [ $typ ])
2015-10-07 23:22:20 +03:00
{
case 3 :
// struct
$rs .= " <struct> \n " ;
reset ( $val );
while ( list ( $key2 , $val2 ) = each ( $val ))
{
2016-04-24 11:50:47 +03:00
$rs .= " <member> \n <name> { $key2 } </name> \n " . $this -> serializeval ( $val2 ) . " </member> \n " ;
2015-10-07 23:22:20 +03:00
}
$rs .= '</struct>' ;
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
case 2 :
// array
$rs .= " <array> \n <data> \n " ;
2016-04-24 11:50:47 +03:00
for ( $i = 0 , $c = count ( $val ); $i < $c ; $i ++ )
2015-10-07 23:22:20 +03:00
{
$rs .= $this -> serializeval ( $val [ $i ]);
}
2016-04-24 11:50:47 +03:00
$rs .= " </data> \n </array> \n " ;
2015-10-07 23:22:20 +03:00
break ;
case 1 :
// others
switch ( $typ )
{
case $this -> xmlrpcBase64 :
2016-04-24 11:50:47 +03:00
$rs .= '<' . $typ . '>' . base64_encode ( ( string ) $val ) . '</' . $typ . " > \n " ;
break ;
2015-10-07 23:22:20 +03:00
case $this -> xmlrpcBoolean :
2016-04-24 11:50:47 +03:00
$rs .= '<' . $typ . '>' . ( ( bool ) $val ? '1' : '0' ) . '</' . $typ . " > \n " ;
break ;
2015-10-07 23:22:20 +03:00
case $this -> xmlrpcString :
2016-04-24 11:50:47 +03:00
$rs .= '<' . $typ . '>' . htmlspecialchars ( ( string ) $val ) . '</' . $typ . " > \n " ;
break ;
2015-10-07 23:22:20 +03:00
default :
2016-04-24 11:50:47 +03:00
$rs .= '<' . $typ . '>' . $val . '</' . $typ . " > \n " ;
break ;
2015-10-07 23:22:20 +03:00
}
default :
2016-04-24 11:50:47 +03:00
break ;
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
2015-10-07 23:22:20 +03:00
return $rs ;
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Serialize class
*
* @ return string
*/
public function serialize_class ()
2015-10-07 23:22:20 +03:00
{
return $this -> serializeval ( $this );
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Serialize value
*
* @ param object
* @ return string
*/
public function serializeval ( $o )
2015-10-07 23:22:20 +03:00
{
$ar = $o -> me ;
reset ( $ar );
list ( $typ , $val ) = each ( $ar );
2016-04-24 11:50:47 +03:00
return " <value> \n " . $this -> serializedata ( $typ , $val ) . " </value> \n " ;
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Scalar value
*
* @ return mixed
*/
public function scalarval ()
2015-10-07 23:22:20 +03:00
{
reset ( $this -> me );
2016-04-24 11:50:47 +03:00
return current ( $this -> me );
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
// --------------------------------------------------------------------
/**
* Encode time in ISO - 8601 form .
* Useful for sending time in XML - RPC
*
* @ param int unix timestamp
* @ param bool
* @ return string
*/
public function iso8601_encode ( $time , $utc = FALSE )
2015-10-07 23:22:20 +03:00
{
2016-04-24 11:50:47 +03:00
return ( $utc ) ? strftime ( '%Y%m%dT%H:%i:%s' , $time ) : gmstrftime ( '%Y%m%dT%H:%i:%s' , $time );
2015-10-07 23:22:20 +03:00
}
2016-04-24 11:50:47 +03:00
} // END XML_RPC_Values Class