@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | */ |
192 | 192 | public static function xmlrpc_debugmsg($msg) |
193 | 193 | { |
194 | - static::$_xmlrpc_debuginfo .= $msg . "\n"; |
|
194 | + static::$_xmlrpc_debuginfo .= $msg."\n"; |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | /** |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | */ |
204 | 204 | public static function error_occurred($msg) |
205 | 205 | { |
206 | - static::$_xmlrpcs_occurred_errors .= $msg . "\n"; |
|
206 | + static::$_xmlrpcs_occurred_errors .= $msg."\n"; |
|
207 | 207 | } |
208 | 208 | |
209 | 209 | /** |
@@ -224,10 +224,10 @@ discard block |
||
224 | 224 | // user debug info should be encoded by the end user using the INTERNAL_ENCODING |
225 | 225 | $out = ''; |
226 | 226 | if ($this->debug_info != '') { |
227 | - $out .= "<!-- SERVER DEBUG INFO (BASE64 ENCODED):\n" . base64_encode($this->debug_info) . "\n-->\n"; |
|
227 | + $out .= "<!-- SERVER DEBUG INFO (BASE64 ENCODED):\n".base64_encode($this->debug_info)."\n-->\n"; |
|
228 | 228 | } |
229 | 229 | if (static::$_xmlrpc_debuginfo != '') { |
230 | - $out .= "<!-- DEBUG INFO:\n" . $this->getCharsetEncoder()->encodeEntities(str_replace('--', '_-', static::$_xmlrpc_debuginfo), PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "\n-->\n"; |
|
230 | + $out .= "<!-- DEBUG INFO:\n".$this->getCharsetEncoder()->encodeEntities(str_replace('--', '_-', static::$_xmlrpc_debuginfo), PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."\n-->\n"; |
|
231 | 231 | // NB: a better solution MIGHT be to use CDATA, but we need to insert it |
232 | 232 | // into return payload AFTER the beginning tag |
233 | 233 | //$out .= "<![CDATA[ DEBUG INFO:\n\n" . str_replace(']]>', ']_]_>', static::$_xmlrpc_debuginfo) . "\n]]>\n"; |
@@ -256,8 +256,8 @@ discard block |
||
256 | 256 | $this->debug_info = ''; |
257 | 257 | |
258 | 258 | // Save what we received, before parsing it |
259 | - if ($this->debug > 1) { |
|
260 | - $this->debugmsg("+++GOT+++\n" . $data . "\n+++END+++"); |
|
259 | + if ($this->debug>1) { |
|
260 | + $this->debugmsg("+++GOT+++\n".$data."\n+++END+++"); |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | $resp = $this->parseRequestHeaders($data, $reqCharset, $respCharset, $respEncoding); |
@@ -274,14 +274,14 @@ discard block |
||
274 | 274 | $resp->raw_data = $rawData; |
275 | 275 | } |
276 | 276 | |
277 | - if ($this->debug > 2 && static::$_xmlrpcs_occurred_errors != '') { |
|
278 | - $this->debugmsg("+++PROCESSING ERRORS AND WARNINGS+++\n" . |
|
279 | - static::$_xmlrpcs_occurred_errors . "+++END+++"); |
|
277 | + if ($this->debug>2 && static::$_xmlrpcs_occurred_errors != '') { |
|
278 | + $this->debugmsg("+++PROCESSING ERRORS AND WARNINGS+++\n". |
|
279 | + static::$_xmlrpcs_occurred_errors."+++END+++"); |
|
280 | 280 | } |
281 | 281 | |
282 | 282 | $payload = $this->xml_header($respCharset); |
283 | - if ($this->debug > 0) { |
|
284 | - $payload = $payload . $this->serializeDebug($respCharset); |
|
283 | + if ($this->debug>0) { |
|
284 | + $payload = $payload.$this->serializeDebug($respCharset); |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | // Do not create response serialization if it has already happened. Helps to build json magic |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | if (empty($resp->payload)) { |
290 | 290 | $resp->serialize($respCharset); |
291 | 291 | } |
292 | - $payload = $payload . $resp->payload; |
|
292 | + $payload = $payload.$resp->payload; |
|
293 | 293 | |
294 | 294 | if ($returnPayload) { |
295 | 295 | return $payload; |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | // if we get a warning/error that has output some text before here, then we cannot |
299 | 299 | // add a new header. We cannot say we are sending xml, either... |
300 | 300 | if (!headers_sent()) { |
301 | - header('Content-Type: ' . $resp->content_type); |
|
301 | + header('Content-Type: '.$resp->content_type); |
|
302 | 302 | // we do not know if client actually told us an accepted charset, but if it did we have to tell it what we did |
303 | 303 | header("Vary: Accept-Charset"); |
304 | 304 | |
@@ -321,10 +321,10 @@ discard block |
||
321 | 321 | // Note that Apache/mod_php will add (and even alter!) the Content-Length header on its own, but only for |
322 | 322 | // responses up to 8000 bytes |
323 | 323 | if ($phpNoSelfCompress) { |
324 | - header('Content-Length: ' . (int)strlen($payload)); |
|
324 | + header('Content-Length: '.(int) strlen($payload)); |
|
325 | 325 | } |
326 | 326 | } else { |
327 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': http headers already sent before response is fully generated. Check for php warning or error messages'); |
|
327 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': http headers already sent before response is fully generated. Check for php warning or error messages'); |
|
328 | 328 | } |
329 | 329 | |
330 | 330 | print $payload; |
@@ -382,9 +382,9 @@ discard block |
||
382 | 382 | $numParams = count($in); |
383 | 383 | } |
384 | 384 | foreach ($sigs as $curSig) { |
385 | - if (count($curSig) == $numParams + 1) { |
|
385 | + if (count($curSig) == $numParams+1) { |
|
386 | 386 | $itsOK = 1; |
387 | - for ($n = 0; $n < $numParams; $n++) { |
|
387 | + for ($n = 0; $n<$numParams; $n++) { |
|
388 | 388 | if (is_object($in)) { |
389 | 389 | $p = $in->getParam($n); |
390 | 390 | if ($p->kindOf() == 'scalar') { |
@@ -397,10 +397,10 @@ discard block |
||
397 | 397 | } |
398 | 398 | |
399 | 399 | // param index is $n+1, as first member of sig is return type |
400 | - if ($pt != $curSig[$n + 1] && $curSig[$n + 1] != Value::$xmlrpcValue) { |
|
400 | + if ($pt != $curSig[$n+1] && $curSig[$n+1] != Value::$xmlrpcValue) { |
|
401 | 401 | $itsOK = 0; |
402 | - $pno = $n + 1; |
|
403 | - $wanted = $curSig[$n + 1]; |
|
402 | + $pno = $n+1; |
|
403 | + $wanted = $curSig[$n+1]; |
|
404 | 404 | $got = $pt; |
405 | 405 | break; |
406 | 406 | } |
@@ -427,10 +427,10 @@ discard block |
||
427 | 427 | // check if $_SERVER is populated: it might have been disabled via ini file |
428 | 428 | // (this is true even when in CLI mode) |
429 | 429 | if (count($_SERVER) == 0) { |
430 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': cannot parse request headers as $_SERVER is not populated'); |
|
430 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': cannot parse request headers as $_SERVER is not populated'); |
|
431 | 431 | } |
432 | 432 | |
433 | - if ($this->debug > 1) { |
|
433 | + if ($this->debug>1) { |
|
434 | 434 | if (function_exists('getallheaders')) { |
435 | 435 | $this->debugmsg(''); // empty line |
436 | 436 | foreach (getallheaders() as $name => $val) { |
@@ -455,13 +455,13 @@ discard block |
||
455 | 455 | if (function_exists('gzinflate') && in_array($contentEncoding, $this->accepted_compression)) { |
456 | 456 | if ($contentEncoding == 'deflate' && $degzdata = @gzuncompress($data)) { |
457 | 457 | $data = $degzdata; |
458 | - if ($this->debug > 1) { |
|
459 | - $this->debugmsg("\n+++INFLATED REQUEST+++[" . strlen($data) . " chars]+++\n" . $data . "\n+++END+++"); |
|
458 | + if ($this->debug>1) { |
|
459 | + $this->debugmsg("\n+++INFLATED REQUEST+++[".strlen($data)." chars]+++\n".$data."\n+++END+++"); |
|
460 | 460 | } |
461 | 461 | } elseif ($contentEncoding == 'gzip' && $degzdata = @gzinflate(substr($data, 10))) { |
462 | 462 | $data = $degzdata; |
463 | - if ($this->debug > 1) { |
|
464 | - $this->debugmsg("+++INFLATED REQUEST+++[" . strlen($data) . " chars]+++\n" . $data . "\n+++END+++"); |
|
463 | + if ($this->debug>1) { |
|
464 | + $this->debugmsg("+++INFLATED REQUEST+++[".strlen($data)." chars]+++\n".$data."\n+++END+++"); |
|
465 | 465 | } |
466 | 466 | } else { |
467 | 467 | $r = new Response(0, PhpXmlRpc::$xmlrpcerr['server_decompress_fail'], |
@@ -548,7 +548,7 @@ discard block |
||
548 | 548 | if ($reqEncoding == 'ISO-8859-1') { |
549 | 549 | $data = utf8_encode($data); |
550 | 550 | } else { |
551 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': unsupported charset encoding of received request: ' . $reqEncoding); |
|
551 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': unsupported charset encoding of received request: '.$reqEncoding); |
|
552 | 552 | } |
553 | 553 | } |
554 | 554 | } |
@@ -575,7 +575,7 @@ discard block |
||
575 | 575 | preg_match('/^XML error ([0-9]+)/', $xmlRpcParser->_xh['isf_reason'], $matches); |
576 | 576 | return new Response( |
577 | 577 | 0, |
578 | - PhpXmlRpc::$xmlrpcerrxml + (int)$matches[1], |
|
578 | + PhpXmlRpc::$xmlrpcerrxml+(int) $matches[1], |
|
579 | 579 | $xmlRpcParser->_xh['isf_reason']); |
580 | 580 | } elseif ($xmlRpcParser->_xh['isf']) { |
581 | 581 | /// @todo separate better the various cases, as we have done in Request::parseResponse: invalid xml-rpc vs. |
@@ -583,7 +583,7 @@ discard block |
||
583 | 583 | return new Response( |
584 | 584 | 0, |
585 | 585 | PhpXmlRpc::$xmlrpcerr['invalid_request'], |
586 | - PhpXmlRpc::$xmlrpcstr['invalid_request'] . ' ' . $xmlRpcParser->_xh['isf_reason']); |
|
586 | + PhpXmlRpc::$xmlrpcstr['invalid_request'].' '.$xmlRpcParser->_xh['isf_reason']); |
|
587 | 587 | } else { |
588 | 588 | // small layering violation in favor of speed and memory usage: we should allow the 'execute' method handle |
589 | 589 | // this, but in the most common scenario (xml-rpc values type server with some methods registered as phpvals) |
@@ -593,20 +593,20 @@ discard block |
||
593 | 593 | ($this->dmap[$xmlRpcParser->_xh['method']]['parameters_type'] != 'xmlrpcvals') |
594 | 594 | ) |
595 | 595 | ) { |
596 | - if ($this->debug > 1) { |
|
597 | - $this->debugmsg("\n+++PARSED+++\n" . var_export($xmlRpcParser->_xh['params'], true) . "\n+++END+++"); |
|
596 | + if ($this->debug>1) { |
|
597 | + $this->debugmsg("\n+++PARSED+++\n".var_export($xmlRpcParser->_xh['params'], true)."\n+++END+++"); |
|
598 | 598 | } |
599 | 599 | |
600 | 600 | return $this->execute($xmlRpcParser->_xh['method'], $xmlRpcParser->_xh['params'], $xmlRpcParser->_xh['pt']); |
601 | 601 | } else { |
602 | 602 | // build a Request object with data parsed from xml and add parameters in |
603 | 603 | $req = new Request($xmlRpcParser->_xh['method']); |
604 | - for ($i = 0; $i < count($xmlRpcParser->_xh['params']); $i++) { |
|
604 | + for ($i = 0; $i<count($xmlRpcParser->_xh['params']); $i++) { |
|
605 | 605 | $req->addParam($xmlRpcParser->_xh['params'][$i]); |
606 | 606 | } |
607 | 607 | |
608 | - if ($this->debug > 1) { |
|
609 | - $this->debugmsg("\n+++PARSED+++\n" . var_export($req, true) . "\n+++END+++"); |
|
608 | + if ($this->debug>1) { |
|
609 | + $this->debugmsg("\n+++PARSED+++\n".var_export($req, true)."\n+++END+++"); |
|
610 | 610 | } |
611 | 611 | |
612 | 612 | return $this->execute($req); |
@@ -658,7 +658,7 @@ discard block |
||
658 | 658 | return new Response( |
659 | 659 | 0, |
660 | 660 | PhpXmlRpc::$xmlrpcerr['incorrect_params'], |
661 | - PhpXmlRpc::$xmlrpcstr['incorrect_params'] . ": {$errStr}" |
|
661 | + PhpXmlRpc::$xmlrpcstr['incorrect_params'].": {$errStr}" |
|
662 | 662 | ); |
663 | 663 | } |
664 | 664 | } |
@@ -673,7 +673,7 @@ discard block |
||
673 | 673 | // build string representation of function 'name' |
674 | 674 | if (is_array($func)) { |
675 | 675 | if (is_object($func[0])) { |
676 | - $funcName = get_class($func[0]) . '->' . $func[1]; |
|
676 | + $funcName = get_class($func[0]).'->'.$func[1]; |
|
677 | 677 | } else { |
678 | 678 | $funcName = implode('::', $func); |
679 | 679 | } |
@@ -685,17 +685,17 @@ discard block |
||
685 | 685 | |
686 | 686 | // verify that function to be invoked is in fact callable |
687 | 687 | if (!is_callable($func)) { |
688 | - $this->getLogger()->error("XML-RPC: " . __METHOD__ . ": function '$funcName' registered as method handler is not callable"); |
|
688 | + $this->getLogger()->error("XML-RPC: ".__METHOD__.": function '$funcName' registered as method handler is not callable"); |
|
689 | 689 | return new Response( |
690 | 690 | 0, |
691 | 691 | PhpXmlRpc::$xmlrpcerr['server_error'], |
692 | - PhpXmlRpc::$xmlrpcstr['server_error'] . ": no function matches method" |
|
692 | + PhpXmlRpc::$xmlrpcstr['server_error'].": no function matches method" |
|
693 | 693 | ); |
694 | 694 | } |
695 | 695 | |
696 | 696 | // If debug level is 3, we should catch all errors generated during processing of user function, and log them |
697 | 697 | // as part of response |
698 | - if ($this->debug > 2) { |
|
698 | + if ($this->debug>2) { |
|
699 | 699 | self::$_xmlrpcs_prev_ehandler = set_error_handler(array('\PhpXmlRpc\Server', '_xmlrpcs_errorHandler')); |
700 | 700 | } |
701 | 701 | |
@@ -709,14 +709,14 @@ discard block |
||
709 | 709 | $r = call_user_func($func, $req); |
710 | 710 | } |
711 | 711 | if (!is_a($r, 'PhpXmlRpc\Response')) { |
712 | - $this->getLogger()->error("XML-RPC: " . __METHOD__ . ": function '$funcName' registered as method handler does not return an xmlrpc response object but a " . gettype($r)); |
|
712 | + $this->getLogger()->error("XML-RPC: ".__METHOD__.": function '$funcName' registered as method handler does not return an xmlrpc response object but a ".gettype($r)); |
|
713 | 713 | if (is_a($r, 'PhpXmlRpc\Value')) { |
714 | 714 | $r = new Response($r); |
715 | 715 | } else { |
716 | 716 | $r = new Response( |
717 | 717 | 0, |
718 | 718 | PhpXmlRpc::$xmlrpcerr['server_error'], |
719 | - PhpXmlRpc::$xmlrpcstr['server_error'] . ": function does not return xmlrpc response object" |
|
719 | + PhpXmlRpc::$xmlrpcstr['server_error'].": function does not return xmlrpc response object" |
|
720 | 720 | ); |
721 | 721 | } |
722 | 722 | } |
@@ -731,7 +731,7 @@ discard block |
||
731 | 731 | $r = call_user_func_array($func, array($methodName, $params, $this->user_data)); |
732 | 732 | // mimic EPI behaviour: if we get an array that looks like an error, make it an error response |
733 | 733 | if (is_array($r) && array_key_exists('faultCode', $r) && array_key_exists('faultString', $r)) { |
734 | - $r = new Response(0, (integer)$r['faultCode'], (string)$r['faultString']); |
|
734 | + $r = new Response(0, (integer) $r['faultCode'], (string) $r['faultString']); |
|
735 | 735 | } else { |
736 | 736 | // functions using EPI api should NOT return resp objects, so make sure we encode the |
737 | 737 | // return type correctly |
@@ -755,7 +755,7 @@ discard block |
||
755 | 755 | // proper error-response |
756 | 756 | switch ($this->exception_handling) { |
757 | 757 | case 2: |
758 | - if ($this->debug > 2) { |
|
758 | + if ($this->debug>2) { |
|
759 | 759 | if (self::$_xmlrpcs_prev_ehandler) { |
760 | 760 | set_error_handler(self::$_xmlrpcs_prev_ehandler); |
761 | 761 | } else { |
@@ -778,7 +778,7 @@ discard block |
||
778 | 778 | // proper error-response |
779 | 779 | switch ($this->exception_handling) { |
780 | 780 | case 2: |
781 | - if ($this->debug > 2) { |
|
781 | + if ($this->debug>2) { |
|
782 | 782 | if (self::$_xmlrpcs_prev_ehandler) { |
783 | 783 | set_error_handler(self::$_xmlrpcs_prev_ehandler); |
784 | 784 | } else { |
@@ -798,7 +798,7 @@ discard block |
||
798 | 798 | } |
799 | 799 | } |
800 | 800 | |
801 | - if ($this->debug > 2) { |
|
801 | + if ($this->debug>2) { |
|
802 | 802 | // note: restore the error handler we found before calling the user func, even if it has been changed |
803 | 803 | // inside the func itself |
804 | 804 | if (self::$_xmlrpcs_prev_ehandler) { |
@@ -864,7 +864,7 @@ discard block |
||
864 | 864 | */ |
865 | 865 | protected function debugmsg($string) |
866 | 866 | { |
867 | - $this->debug_info .= $string . "\n"; |
|
867 | + $this->debug_info .= $string."\n"; |
|
868 | 868 | } |
869 | 869 | |
870 | 870 | /** |
@@ -874,9 +874,9 @@ discard block |
||
874 | 874 | protected function xml_header($charsetEncoding = '') |
875 | 875 | { |
876 | 876 | if ($charsetEncoding != '') { |
877 | - return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\"?" . ">\n"; |
|
877 | + return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\"?".">\n"; |
|
878 | 878 | } else { |
879 | - return "<?xml version=\"1.0\"?" . ">\n"; |
|
879 | + return "<?xml version=\"1.0\"?".">\n"; |
|
880 | 880 | } |
881 | 881 | } |
882 | 882 | |
@@ -1169,7 +1169,7 @@ discard block |
||
1169 | 1169 | $i++; // for error message, we count params from 1 |
1170 | 1170 | return static::_xmlrpcs_multicall_error(new Response(0, |
1171 | 1171 | PhpXmlRpc::$xmlrpcerr['incorrect_params'], |
1172 | - PhpXmlRpc::$xmlrpcstr['incorrect_params'] . ": probable xml error in param " . $i)); |
|
1172 | + PhpXmlRpc::$xmlrpcstr['incorrect_params'].": probable xml error in param ".$i)); |
|
1173 | 1173 | } |
1174 | 1174 | } |
1175 | 1175 | |
@@ -1250,7 +1250,7 @@ discard block |
||
1250 | 1250 | } |
1251 | 1251 | } else { |
1252 | 1252 | $numCalls = count($req); |
1253 | - for ($i = 0; $i < $numCalls; $i++) { |
|
1253 | + for ($i = 0; $i<$numCalls; $i++) { |
|
1254 | 1254 | $result[$i] = static::_xmlrpcs_multicall_do_call_phpvals($server, $req[$i]); |
1255 | 1255 | } |
1256 | 1256 | } |
@@ -57,9 +57,9 @@ discard block |
||
57 | 57 | public function xml_header($charsetEncoding = '') |
58 | 58 | { |
59 | 59 | if ($charsetEncoding != '') { |
60 | - return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?" . ">\n<methodCall>\n"; |
|
60 | + return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?".">\n<methodCall>\n"; |
|
61 | 61 | } else { |
62 | - return "<?xml version=\"1.0\"?" . ">\n<methodCall>\n"; |
|
62 | + return "<?xml version=\"1.0\"?".">\n<methodCall>\n"; |
|
63 | 63 | } |
64 | 64 | } |
65 | 65 | |
@@ -82,16 +82,16 @@ discard block |
||
82 | 82 | public function createPayload($charsetEncoding = '') |
83 | 83 | { |
84 | 84 | if ($charsetEncoding != '') { |
85 | - $this->content_type = 'text/xml; charset=' . $charsetEncoding; |
|
85 | + $this->content_type = 'text/xml; charset='.$charsetEncoding; |
|
86 | 86 | } else { |
87 | 87 | $this->content_type = 'text/xml'; |
88 | 88 | } |
89 | 89 | $this->payload = $this->xml_header($charsetEncoding); |
90 | - $this->payload .= '<methodName>' . $this->getCharsetEncoder()->encodeEntities( |
|
91 | - $this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</methodName>\n"; |
|
90 | + $this->payload .= '<methodName>'.$this->getCharsetEncoder()->encodeEntities( |
|
91 | + $this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</methodName>\n"; |
|
92 | 92 | $this->payload .= "<params>\n"; |
93 | 93 | foreach ($this->params as $p) { |
94 | - $this->payload .= "<param>\n" . $p->serialize($charsetEncoding) . |
|
94 | + $this->payload .= "<param>\n".$p->serialize($charsetEncoding). |
|
95 | 95 | "</param>\n"; |
96 | 96 | } |
97 | 97 | $this->payload .= "</params>\n"; |
@@ -208,14 +208,14 @@ discard block |
||
208 | 208 | */ |
209 | 209 | public function parseResponse($data = '', $headersProcessed = false, $returnType = XMLParser::RETURN_XMLRPCVALS) |
210 | 210 | { |
211 | - if ($this->debug > 0) { |
|
211 | + if ($this->debug>0) { |
|
212 | 212 | $this->getLogger()->debug("---GOT---\n$data\n---END---"); |
213 | 213 | } |
214 | 214 | |
215 | 215 | $this->httpResponse = array('raw_data' => $data, 'headers' => array(), 'cookies' => array()); |
216 | 216 | |
217 | 217 | if ($data == '') { |
218 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': no response received from server.'); |
|
218 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': no response received from server.'); |
|
219 | 219 | return new Response(0, PhpXmlRpc::$xmlrpcerr['no_data'], PhpXmlRpc::$xmlrpcstr['no_data']); |
220 | 220 | } |
221 | 221 | |
@@ -223,12 +223,12 @@ discard block |
||
223 | 223 | if (substr($data, 0, 4) == 'HTTP') { |
224 | 224 | $httpParser = new Http(); |
225 | 225 | try { |
226 | - $httpResponse = $httpParser->parseResponseHeaders($data, $headersProcessed, $this->debug > 0); |
|
226 | + $httpResponse = $httpParser->parseResponseHeaders($data, $headersProcessed, $this->debug>0); |
|
227 | 227 | } catch (HttpException $e) { |
228 | 228 | // failed processing of HTTP response headers |
229 | 229 | // save into response obj the full payload received, for debugging |
230 | 230 | return new Response(0, $e->getCode(), $e->getMessage(), '', array('raw_data' => $data, 'status_code', $e->statusCode())); |
231 | - } catch(\Exception $e) { |
|
231 | + } catch (\Exception $e) { |
|
232 | 232 | return new Response(0, $e->getCode(), $e->getMessage(), '', array('raw_data' => $data)); |
233 | 233 | } |
234 | 234 | } else { |
@@ -244,7 +244,7 @@ discard block |
||
244 | 244 | // idea from Luca Mariano <[email protected]> originally in PEARified version of the lib |
245 | 245 | $pos = strrpos($data, '</methodResponse>'); |
246 | 246 | if ($pos !== false) { |
247 | - $data = substr($data, 0, $pos + 17); |
|
247 | + $data = substr($data, 0, $pos+17); |
|
248 | 248 | } |
249 | 249 | |
250 | 250 | // try to 'guestimate' the character encoding of the received response |
@@ -253,21 +253,21 @@ discard block |
||
253 | 253 | $data |
254 | 254 | ); |
255 | 255 | |
256 | - if ($this->debug >= 0) { |
|
256 | + if ($this->debug>=0) { |
|
257 | 257 | $this->httpResponse = $httpResponse; |
258 | 258 | } else { |
259 | 259 | $httpResponse = null; |
260 | 260 | } |
261 | 261 | |
262 | - if ($this->debug > 0) { |
|
262 | + if ($this->debug>0) { |
|
263 | 263 | $start = strpos($data, '<!-- SERVER DEBUG INFO (BASE64 ENCODED):'); |
264 | 264 | if ($start) { |
265 | 265 | $start += strlen('<!-- SERVER DEBUG INFO (BASE64 ENCODED):'); |
266 | 266 | /// @todo what if there is no end tag? |
267 | 267 | $end = strpos($data, '-->', $start); |
268 | - $comments = substr($data, $start, $end - $start); |
|
269 | - $this->getLogger()->debug("---SERVER DEBUG INFO (DECODED) ---\n\t" . |
|
270 | - str_replace("\n", "\n\t", base64_decode($comments)) . "\n---END---", array('encoding' => $respEncoding)); |
|
268 | + $comments = substr($data, $start, $end-$start); |
|
269 | + $this->getLogger()->debug("---SERVER DEBUG INFO (DECODED) ---\n\t". |
|
270 | + str_replace("\n", "\n\t", base64_decode($comments))."\n---END---", array('encoding' => $respEncoding)); |
|
271 | 271 | } |
272 | 272 | } |
273 | 273 | |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | if ($respEncoding == 'ISO-8859-1') { |
290 | 290 | $data = utf8_encode($data); |
291 | 291 | } else { |
292 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': unsupported charset encoding of received response: ' . $respEncoding); |
|
292 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': unsupported charset encoding of received response: '.$respEncoding); |
|
293 | 293 | } |
294 | 294 | } |
295 | 295 | } |
@@ -315,16 +315,16 @@ discard block |
||
315 | 315 | // there could be proxies meddling with the request, or network data corruption... |
316 | 316 | |
317 | 317 | $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_xml'], |
318 | - PhpXmlRpc::$xmlrpcstr['invalid_xml'] . ' ' . $xmlRpcParser->_xh['isf_reason'], '', $httpResponse); |
|
318 | + PhpXmlRpc::$xmlrpcstr['invalid_xml'].' '.$xmlRpcParser->_xh['isf_reason'], '', $httpResponse); |
|
319 | 319 | |
320 | - if ($this->debug > 0) { |
|
320 | + if ($this->debug>0) { |
|
321 | 321 | $this->getLogger()->debug($xmlRpcParser->_xh['isf_reason']); |
322 | 322 | } |
323 | 323 | } |
324 | 324 | // second error check: xml well-formed but not xml-rpc compliant |
325 | 325 | elseif ($xmlRpcParser->_xh['isf'] == 2) { |
326 | 326 | $r = new Response(0, PhpXmlRpc::$xmlrpcerr['xml_not_compliant'], |
327 | - PhpXmlRpc::$xmlrpcstr['xml_not_compliant'] . ' ' . $xmlRpcParser->_xh['isf_reason'], '', $httpResponse); |
|
327 | + PhpXmlRpc::$xmlrpcstr['xml_not_compliant'].' '.$xmlRpcParser->_xh['isf_reason'], '', $httpResponse); |
|
328 | 328 | |
329 | 329 | /// @todo echo something for the user? check if it was already done by the parser... |
330 | 330 | //if ($this->debug > 0) { |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | } |
334 | 334 | // third error check: parsing of the response has somehow gone boink. |
335 | 335 | /// @todo shall we omit this check, since we trust the parsing code? |
336 | - elseif ($xmlRpcParser->_xh['isf'] > 3 || $returnType == XMLParser::RETURN_XMLRPCVALS && !is_object($xmlRpcParser->_xh['value'])) { |
|
336 | + elseif ($xmlRpcParser->_xh['isf']>3 || $returnType == XMLParser::RETURN_XMLRPCVALS && !is_object($xmlRpcParser->_xh['value'])) { |
|
337 | 337 | // something odd has happened and it's time to generate a client side error indicating something odd went on |
338 | 338 | $r = new Response(0, PhpXmlRpc::$xmlrpcerr['xml_parsing_error'], PhpXmlRpc::$xmlrpcstr['xml_parsing_error'], |
339 | 339 | '', $httpResponse |
@@ -341,7 +341,7 @@ discard block |
||
341 | 341 | |
342 | 342 | /// @todo echo something for the user? |
343 | 343 | } else { |
344 | - if ($this->debug > 1) { |
|
344 | + if ($this->debug>1) { |
|
345 | 345 | $this->getLogger()->debug( |
346 | 346 | "---PARSED---\n".var_export($xmlRpcParser->_xh['value'], true)."\n---END---" |
347 | 347 | ); |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | if ($errNo == 0) { |
365 | 365 | // FAULT returned, errno needs to reflect that |
366 | 366 | /// @todo feature creep - add this code to PhpXmlRpc::$xmlrpcerr |
367 | - $this->getLogger()->error('XML-RPC: ' . __METHOD__ . ': fault response received with faultCode 0. Converted it to -1'); |
|
367 | + $this->getLogger()->error('XML-RPC: '.__METHOD__.': fault response received with faultCode 0. Converted it to -1'); |
|
368 | 368 | $errNo = -1; |
369 | 369 | } |
370 | 370 |