mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
Use new function to decode second and subsequent levels of the request array
This commit is contained in:
parent
e89f074cea
commit
4ad548c53d
@ -26,6 +26,8 @@
|
|||||||
{
|
{
|
||||||
var $dmap = array();
|
var $dmap = array();
|
||||||
var $authed = False;
|
var $authed = False;
|
||||||
|
var $req_array = array();
|
||||||
|
var $resp_struct = array();
|
||||||
|
|
||||||
function xmlrpc_server($dispMap='', $serviceNow=0)
|
function xmlrpc_server($dispMap='', $serviceNow=0)
|
||||||
{
|
{
|
||||||
@ -131,18 +133,30 @@
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$this->req_array[] = $_req;
|
$this->req_array = $_req->getval();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'array':
|
case 'array':
|
||||||
@reset($_req);
|
@reset($_req);
|
||||||
|
$ele = array();
|
||||||
while(list($key,$val) = @each($_req))
|
while(list($key,$val) = @each($_req))
|
||||||
{
|
{
|
||||||
$this->req_array[$key] = $this->reqtoarray($val,True);
|
if($recursed)
|
||||||
|
{
|
||||||
|
$ele[$key] = $this->reqtoarray($val,True);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this->req_array[$key] = $this->reqtoarray($val,True);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if($recursed)
|
||||||
|
{
|
||||||
|
return $ele;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 'string':
|
case 'string':
|
||||||
case 'int':
|
case 'integer':
|
||||||
if($recursed)
|
if($recursed)
|
||||||
{
|
{
|
||||||
return $_req;
|
return $_req;
|
||||||
@ -163,6 +177,7 @@
|
|||||||
{
|
{
|
||||||
case 'array':
|
case 'array':
|
||||||
@reset($_res);
|
@reset($_res);
|
||||||
|
$ele = array();
|
||||||
while(list($key,$val) = @each($_res))
|
while(list($key,$val) = @each($_res))
|
||||||
{
|
{
|
||||||
$ele[$key] = $this->build_resp($val,True);
|
$ele[$key] = $this->build_resp($val,True);
|
||||||
@ -300,45 +315,13 @@
|
|||||||
$params = $p->getval();
|
$params = $p->getval();
|
||||||
|
|
||||||
// _debug_array($params);
|
// _debug_array($params);
|
||||||
if(gettype($params) == 'array')
|
$this->reqtoarray($params);
|
||||||
{
|
|
||||||
@reset($params);
|
|
||||||
while(list($key,$val) = @each($params))
|
|
||||||
{
|
|
||||||
if(gettype($val) == 'array')
|
|
||||||
{
|
|
||||||
@reset($val);
|
|
||||||
while(list($key1,$val1) = @each($val))
|
|
||||||
{
|
|
||||||
$tmp = '';
|
|
||||||
if(get_class($val1) == 'xmlrpcval')
|
|
||||||
{
|
|
||||||
$tmp[$key1] = $val1->getval();
|
|
||||||
// echo '<br>Adding xmlrpc val1: ' . $tmp[$key1] . "\n";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// echo '<br>Adding val1: ' . $val1 . "\n";
|
|
||||||
$tmp[$key1] = $val1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$_params[$key] = $tmp;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// echo '<br>Adding val: ' . $val . "\n";
|
|
||||||
$_params[$key] = $val;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$params = $_params;
|
|
||||||
}
|
|
||||||
//$this->reqtoarray($params);
|
|
||||||
//_debug_array($this->req_array);
|
//_debug_array($this->req_array);
|
||||||
|
|
||||||
/* $res = ExecMethod($method,$this->req_array); */
|
$res = ExecMethod($method,$this->req_array);
|
||||||
$res = ExecMethod($method,$params);
|
/* $res = ExecMethod($method,$params); */
|
||||||
/* _debug_array($res);exit; */
|
/* _debug_array($res);exit; */
|
||||||
$this->resp_struct = '';
|
$this->resp_struct = array();
|
||||||
$this->build_resp($res);
|
$this->build_resp($res);
|
||||||
/*_debug_array($this->resp_struct); */
|
/*_debug_array($this->resp_struct); */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user