19 declare(strict_types=1);
63 public function __construct(
string $a_url,
string $a_prefix =
'',
int $a_timeout = 0,
string $a_encoding =
'utf-8')
67 $this->
logger = $DIC->logger()->wsrv();
69 if (!extension_loaded(
'xmlrpc')) {
75 $this->prefix = $a_prefix;
76 $this->timeout = $a_timeout;
77 $this->encoding = $a_encoding;
88 public function __call(
string $a_method, array $a_params)
91 $method_name = str_replace(
'_',
'.', $this->prefix . $a_method);
93 'verbosity' =>
'newlines_only',
94 'escaping' =>
'markup' 97 if ($this->encoding) {
100 $post_data = xmlrpc_encode_request($method_name, $a_params, $rpc_options);
105 $curl->setOpt(CURLOPT_HTTPHEADER, [
'Content-Type: text/xml']);
106 $curl->setOpt(CURLOPT_POST, (strlen($post_data) > 0));
107 $curl->setOpt(CURLOPT_POSTFIELDS, $post_data);
108 $curl->setOpt(CURLOPT_RETURNTRANSFER, 1);
110 if ($this->timeout > 0) {
111 $curl->setOpt(CURLOPT_TIMEOUT, $this->timeout);
113 $this->
logger->debug(
'RpcClient request to ' . $this->url .
' / ' . $method_name);
114 $xml_resp = $curl->exec();
117 'RpcClient could not connect to ' . $this->url .
' ' .
118 'Reason ' . $e->getCode() .
': ' . $e->getMessage()
124 $resp = xmlrpc_decode($xml_resp, $this->encoding);
127 if (is_array($resp) && xmlrpc_is_fault($resp)) {
128 $this->
logger->error(
'RpcClient recieved error ' . $resp[
'faultCode'] .
': ' . $resp[
'faultString']);
130 'RPC-Server returned fault message: ' .
131 $resp[
'faultString'],
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getLogger(string $a_component_id)
Get component logger.
__construct(string $a_url, string $a_prefix='', int $a_timeout=0, string $a_encoding='utf-8')
ilRpcClient constructor.
Class ilRpcClientException.
__call(string $a_method, array $a_params)
Magic caller to all RPC functions.