X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=src%2FRequest.php;h=01fc9d660c186cf0047e29d806fe41f4bb72f1dd;hb=82b80c30c362ae96096f8be6a888a9fc665e3dbe;hp=2423510e8fe05dab70e0d09a5d320512d22ddf83;hpb=98c18a6d7e64175c48e5219db83b99b62d8d4ea4;p=plcapi.git diff --git a/src/Request.php b/src/Request.php index 2423510..01fc9d6 100644 --- a/src/Request.php +++ b/src/Request.php @@ -13,9 +13,15 @@ use PhpXmlRpc\Helper\XMLParser; */ class Request { + protected static $logger; + protected static $parser; + protected static $charsetEncoder; + /// @todo: do these need to be public? public $payload; + /** @internal */ public $methodname; + /** @internal */ public $params = array(); public $debug = 0; public $content_type = 'text/xml'; @@ -23,6 +29,45 @@ class Request // holds data while parsing the response. NB: Not a full Response object protected $httpResponse = array(); + public function getLogger() + { + if (self::$logger === null) { + self::$logger = Logger::instance(); + } + return self::$logger; + } + + public static function setLogger($logger) + { + self::$logger = $logger; + } + + public function getParser() + { + if (self::$parser === null) { + self::$parser = new XMLParser(); + } + return self::$parser; + } + + public static function setParser($parser) + { + self::$parser = $parser; + } + + public function getCharsetEncoder() + { + if (self::$charsetEncoder === null) { + self::$charsetEncoder = Charset::instance(); + } + return self::$charsetEncoder; + } + + public function setCharsetEncoder($charsetEncoder) + { + self::$charsetEncoder = $charsetEncoder; + } + /** * @param string $methodName the name of the method to invoke * @param Value[] $params array of parameters to be passed to the method (NB: Value objects, not plain php values) @@ -35,6 +80,11 @@ class Request } } + /** + * @internal this function will become protected in the future + * @param string $charsetEncoding + * @return string + */ public function xml_header($charsetEncoding = '') { if ($charsetEncoding != '') { @@ -44,11 +94,19 @@ class Request } } + /** + * @internal this function will become protected in the future + * @return string + */ public function xml_footer() { return ''; } + /** + * @internal this function will become protected in the future + * @param string $charsetEncoding + */ public function createPayload($charsetEncoding = '') { if ($charsetEncoding != '') { @@ -57,7 +115,7 @@ class Request $this->content_type = 'text/xml'; } $this->payload = $this->xml_header($charsetEncoding); - $this->payload .= '' . Charset::instance()->encodeEntities( + $this->payload .= '' . $this->getCharsetEncoder()->encodeEntities( $this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "\n"; $this->payload .= "\n"; foreach ($this->params as $p) { @@ -176,17 +234,19 @@ class Request * 'phpvals' * * @return Response + * + * @todo parsing Responses is not really the responsibility of the Request class. Maybe of the Client... */ public function parseResponse($data = '', $headersProcessed = false, $returnType = 'xmlrpcvals') { if ($this->debug) { - Logger::instance()->debugMessage("---GOT---\n$data\n---END---"); + $this->getLogger()->debugMessage("---GOT---\n$data\n---END---"); } $this->httpResponse = array('raw_data' => $data, 'headers' => array(), 'cookies' => array()); if ($data == '') { - error_log('XML-RPC: ' . __METHOD__ . ': no response received from server.'); + $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': no response received from server.'); return new Response(0, PhpXmlRpc::$xmlrpcerr['no_data'], PhpXmlRpc::$xmlrpcstr['no_data']); } @@ -208,7 +268,7 @@ class Request // be tolerant of extra whitespace in response body $data = trim($data); - /// @todo return an error msg if $data=='' ? + /// @todo return an error msg if $data == '' ? // be tolerant of junk after methodResponse (e.g. javascript ads automatically inserted by free hosts) // idea from Luca Mariano originally in PEARified version of the lib @@ -226,12 +286,12 @@ class Request $start += strlen('', $start); $comments = substr($data, $start, $end - $start); - Logger::instance()->debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t" . + $this->getLogger()->debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t" . str_replace("\n", "\n\t", base64_decode($comments)) . "\n---END---", $respEncoding); } } - // if user wants back raw xml, give it to him + // if user wants back raw xml, give it to her if ($returnType == 'xml') { $r = new Response($data, 0, '', 'xml'); $r->hdrs = $this->httpResponse['headers']; @@ -251,10 +311,11 @@ class Request if ($respEncoding == 'ISO-8859-1') { $data = utf8_encode($data); } else { + if (extension_loaded('mbstring')) { $data = mb_convert_encoding($data, 'UTF-8', $respEncoding); } else { - error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of received response: ' . $respEncoding); + $this->getLogger()->errorLog('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of received response: ' . $respEncoding); } } } @@ -265,13 +326,14 @@ class Request // This allows to send data which is native in various charset, by extending xmlrpc_encode_entities() and // setting xmlrpc_internalencoding if (!in_array(PhpXmlRpc::$xmlrpc_internalencoding, array('UTF-8', 'ISO-8859-1', 'US-ASCII'))) { + /// @todo emit a warning $options = array(XML_OPTION_TARGET_ENCODING => 'UTF-8'); } else { $options = array(XML_OPTION_TARGET_ENCODING => PhpXmlRpc::$xmlrpc_internalencoding); } - $xmlRpcParser = new XMLParser($options); - $xmlRpcParser->parse($data, $returnType, XMLParser::ACCEPT_RESPONSE); + $xmlRpcParser = $this->getParser(); + $xmlRpcParser->parse($data, $returnType, XMLParser::ACCEPT_RESPONSE, $options); // first error check: xml not well formed if ($xmlRpcParser->_xh['isf'] > 2) { @@ -287,15 +349,15 @@ class Request } // second error check: xml well formed but not xml-rpc compliant elseif ($xmlRpcParser->_xh['isf'] == 2) { + $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], + PhpXmlRpc::$xmlrpcstr['invalid_return'] . ' ' . $xmlRpcParser->_xh['isf_reason']); + if ($this->debug) { /// @todo echo something for user? } - - $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], - PhpXmlRpc::$xmlrpcstr['invalid_return'] . ' ' . $xmlRpcParser->_xh['isf_reason']); } // third error check: parsing of the response has somehow gone boink. - // NB: shall we omit this check, since we trust the parsing code? + /// @todo shall we omit this check, since we trust the parsing code? elseif ($returnType == 'xmlrpcvals' && !is_object($xmlRpcParser->_xh['value'])) { // something odd has happened // and it's time to generate a client side error @@ -304,7 +366,7 @@ class Request PhpXmlRpc::$xmlrpcstr['invalid_return']); } else { if ($this->debug > 1) { - Logger::instance()->debugMessage( + $this->getLogger()->debugMessage( "---PARSED---\n".var_export($xmlRpcParser->_xh['value'], true)."\n---END---" ); }