X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2FRequest.php;h=2c4794086e91bc91608a2bd27dd42551209a5f80;hb=cc67a43993662a5a3f92801b96b89ee6e3998532;hp=6eb76718e28e3e05e85144fa62b07a8468c6aeb1;hpb=81ff420c14ca2c24b7e204b1c8ec1405739b88da;p=plcapi.git diff --git a/src/Request.php b/src/Request.php index 6eb76718..2c479408 100644 --- a/src/Request.php +++ b/src/Request.php @@ -2,9 +2,10 @@ namespace PhpXmlRpc; +use PhpXmlRpc\Helper\Charset; use PhpXmlRpc\Helper\Http; -use PhpXmlRpc\Helper\XMLParser; use PhpXmlRpc\Helper\Logger; +use PhpXmlRpc\Helper\XMLParser; class Request { @@ -52,7 +53,7 @@ class Request $this->content_type = 'text/xml'; } $this->payload = $this->xml_header($charsetEncoding); - $this->payload .= '' . $this->methodname . "\n"; + $this->payload .= '' . Charset::instance()->encodeEntities($this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "\n"; $this->payload .= "\n"; foreach ($this->params as $p) { $this->payload .= "\n" . $p->serialize($charsetEncoding) . @@ -169,7 +170,7 @@ class Request public function parseResponse($data = '', $headersProcessed = false, $returnType = 'xmlrpcvals') { if ($this->debug) { - Logger::debugMessage("---GOT---\n$data\n---END---"); + Logger::instance()->debugMessage("---GOT---\n$data\n---END---"); } $this->httpResponse = array('raw_data' => $data, 'headers' => array(), 'cookies' => array()); @@ -215,7 +216,7 @@ class Request $start += strlen('', $start); $comments = substr($data, $start, $end - $start); - Logger::debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t" . + Logger::instance()->debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t" . str_replace("\n", "\n\t", base64_decode($comments)) . "\n---END---", $respEncoding); } } @@ -317,8 +318,8 @@ class Request $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], PhpXmlRpc::$xmlrpcstr['invalid_return']); } else { - if ($this->debug) { - Logger::debugMessage( + if ($this->debug > 1) { + Logger::instance()->debugMessage( "---PARSED---\n".var_export($xmlRpcParser->_xh['value'], true)."\n---END---" ); } @@ -355,4 +356,24 @@ class Request return $r; } + + /** + * Kept the old name even if Request class was renamed, for compatibility. + * + * @return string + */ + public function kindOf() + { + return 'msg'; + } + + /** + * Enables/disables the echoing to screen of the xmlrpc responses received. + * + * @param integer $in values 0, 1, 2 are supported + */ + public function setDebug($in) + { + $this->debug = $in; + } }