@@ -38,9 +38,9 @@ discard block |
||
38 | 38 | public function xml_header($charsetEncoding = '') |
39 | 39 | { |
40 | 40 | if ($charsetEncoding != '') { |
41 | - return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?" . ">\n<methodCall>\n"; |
|
41 | + return "<?xml version=\"1.0\" encoding=\"$charsetEncoding\" ?".">\n<methodCall>\n"; |
|
42 | 42 | } else { |
43 | - return "<?xml version=\"1.0\"?" . ">\n<methodCall>\n"; |
|
43 | + return "<?xml version=\"1.0\"?".">\n<methodCall>\n"; |
|
44 | 44 | } |
45 | 45 | } |
46 | 46 | |
@@ -52,16 +52,16 @@ discard block |
||
52 | 52 | public function createPayload($charsetEncoding = '') |
53 | 53 | { |
54 | 54 | if ($charsetEncoding != '') { |
55 | - $this->content_type = 'text/xml; charset=' . $charsetEncoding; |
|
55 | + $this->content_type = 'text/xml; charset='.$charsetEncoding; |
|
56 | 56 | } else { |
57 | 57 | $this->content_type = 'text/xml'; |
58 | 58 | } |
59 | 59 | $this->payload = $this->xml_header($charsetEncoding); |
60 | - $this->payload .= '<methodName>' . Charset::instance()->encodeEntities( |
|
61 | - $this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding) . "</methodName>\n"; |
|
60 | + $this->payload .= '<methodName>'.Charset::instance()->encodeEntities( |
|
61 | + $this->methodname, PhpXmlRpc::$xmlrpc_internalencoding, $charsetEncoding)."</methodName>\n"; |
|
62 | 62 | $this->payload .= "<params>\n"; |
63 | 63 | foreach ($this->params as $p) { |
64 | - $this->payload .= "<param>\n" . $p->serialize($charsetEncoding) . |
|
64 | + $this->payload .= "<param>\n".$p->serialize($charsetEncoding). |
|
65 | 65 | "</param>\n"; |
66 | 66 | } |
67 | 67 | $this->payload .= "</params>\n"; |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | $this->httpResponse = array('raw_data' => $data, 'headers' => array(), 'cookies' => array()); |
187 | 187 | |
188 | 188 | if ($data == '') { |
189 | - error_log('XML-RPC: ' . __METHOD__ . ': no response received from server.'); |
|
189 | + error_log('XML-RPC: '.__METHOD__.': no response received from server.'); |
|
190 | 190 | return new Response(0, PhpXmlRpc::$xmlrpcerr['no_data'], PhpXmlRpc::$xmlrpcstr['no_data']); |
191 | 191 | } |
192 | 192 | |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | $httpParser = new Http(); |
196 | 196 | try { |
197 | 197 | $this->httpResponse = $httpParser->parseResponseHeaders($data, $headersProcessed, $this->debug); |
198 | - } catch(\Exception $e) { |
|
198 | + } catch (\Exception $e) { |
|
199 | 199 | $r = new Response(0, $e->getCode(), $e->getMessage()); |
200 | 200 | // failed processing of HTTP response headers |
201 | 201 | // save into response obj the full payload received, for debugging |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | // idea from Luca Mariano <[email protected]> originally in PEARified version of the lib |
215 | 215 | $pos = strrpos($data, '</methodResponse>'); |
216 | 216 | if ($pos !== false) { |
217 | - $data = substr($data, 0, $pos + 17); |
|
217 | + $data = substr($data, 0, $pos+17); |
|
218 | 218 | } |
219 | 219 | |
220 | 220 | // try to 'guestimate' the character encoding of the received response |
@@ -225,9 +225,9 @@ discard block |
||
225 | 225 | if ($start) { |
226 | 226 | $start += strlen('<!-- SERVER DEBUG INFO (BASE64 ENCODED):'); |
227 | 227 | $end = strpos($data, '-->', $start); |
228 | - $comments = substr($data, $start, $end - $start); |
|
229 | - Logger::instance()->debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t" . |
|
230 | - str_replace("\n", "\n\t", base64_decode($comments)) . "\n---END---", $respEncoding); |
|
228 | + $comments = substr($data, $start, $end-$start); |
|
229 | + Logger::instance()->debugMessage("---SERVER DEBUG INFO (DECODED) ---\n\t". |
|
230 | + str_replace("\n", "\n\t", base64_decode($comments))."\n---END---", $respEncoding); |
|
231 | 231 | } |
232 | 232 | } |
233 | 233 | |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | if (extension_loaded('mbstring')) { |
256 | 256 | $data = mb_convert_encoding($data, 'UTF-8', $respEncoding); |
257 | 257 | } else { |
258 | - error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of received response: ' . $respEncoding); |
|
258 | + error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of received response: '.$respEncoding); |
|
259 | 259 | } |
260 | 260 | } |
261 | 261 | } |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | xml_get_current_line_number($parser), xml_get_current_column_number($parser)); |
299 | 299 | } |
300 | 300 | error_log($errStr); |
301 | - $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], PhpXmlRpc::$xmlrpcstr['invalid_return'] . ' (' . $errStr . ')'); |
|
301 | + $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], PhpXmlRpc::$xmlrpcstr['invalid_return'].' ('.$errStr.')'); |
|
302 | 302 | xml_parser_free($parser); |
303 | 303 | if ($this->debug) { |
304 | 304 | print $errStr; |
@@ -311,13 +311,13 @@ discard block |
||
311 | 311 | } |
312 | 312 | xml_parser_free($parser); |
313 | 313 | // second error check: xml well formed but not xml-rpc compliant |
314 | - if ($xmlRpcParser->_xh['isf'] > 1) { |
|
314 | + if ($xmlRpcParser->_xh['isf']>1) { |
|
315 | 315 | if ($this->debug) { |
316 | 316 | /// @todo echo something for user? |
317 | 317 | } |
318 | 318 | |
319 | 319 | $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], |
320 | - PhpXmlRpc::$xmlrpcstr['invalid_return'] . ' ' . $xmlRpcParser->_xh['isf_reason']); |
|
320 | + PhpXmlRpc::$xmlrpcstr['invalid_return'].' '.$xmlRpcParser->_xh['isf_reason']); |
|
321 | 321 | } |
322 | 322 | // third error check: parsing of the response has somehow gone boink. |
323 | 323 | // NB: shall we omit this check, since we trust the parsing code? |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | $r = new Response(0, PhpXmlRpc::$xmlrpcerr['invalid_return'], |
329 | 329 | PhpXmlRpc::$xmlrpcstr['invalid_return']); |
330 | 330 | } else { |
331 | - if ($this->debug > 1) { |
|
331 | + if ($this->debug>1) { |
|
332 | 332 | Logger::instance()->debugMessage( |
333 | 333 | "---PARSED---\n".var_export($xmlRpcParser->_xh['value'], true)."\n---END---" |
334 | 334 | ); |
@@ -26,10 +26,10 @@ |
||
26 | 26 | { |
27 | 27 | // construct a latin string with all chars (except control ones) |
28 | 28 | $this->latinString = "\n\r\t"; |
29 | - for($i = 32; $i < 127; $i++) { |
|
29 | + for ($i = 32; $i<127; $i++) { |
|
30 | 30 | $this->latinString .= chr($i); |
31 | 31 | } |
32 | - for($i = 160; $i < 256; $i++) { |
|
32 | + for ($i = 160; $i<256; $i++) { |
|
33 | 33 | $this->latinString .= chr($i); |
34 | 34 | } |
35 | 35 | } |
@@ -52,12 +52,12 @@ discard block |
||
52 | 52 | |
53 | 53 | private function __construct() |
54 | 54 | { |
55 | - for ($i = 0; $i < 32; $i++) { |
|
55 | + for ($i = 0; $i<32; $i++) { |
|
56 | 56 | $this->xml_iso88591_Entities["in"][] = chr($i); |
57 | 57 | $this->xml_iso88591_Entities["out"][] = "&#{$i};"; |
58 | 58 | } |
59 | 59 | |
60 | - for ($i = 160; $i < 256; $i++) { |
|
60 | + for ($i = 160; $i<256; $i++) { |
|
61 | 61 | $this->xml_iso88591_Entities["in"][] = chr($i); |
62 | 62 | $this->xml_iso88591_Entities["out"][] = "&#{$i};"; |
63 | 63 | } |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | $srcEncoding = PhpXmlRpc::$xmlrpc_internalencoding; |
95 | 95 | } |
96 | 96 | |
97 | - $conversion = strtoupper($srcEncoding . '_' . $destEncoding); |
|
97 | + $conversion = strtoupper($srcEncoding.'_'.$destEncoding); |
|
98 | 98 | switch ($conversion) { |
99 | 99 | case 'ISO-8859-1_': |
100 | 100 | case 'ISO-8859-1_US-ASCII': |
@@ -123,13 +123,13 @@ discard block |
||
123 | 123 | // NB: this will choke on invalid UTF-8, going most likely beyond EOF |
124 | 124 | $escapedData = ''; |
125 | 125 | // be kind to users creating string xmlrpc values out of different php types |
126 | - $data = (string)$data; |
|
126 | + $data = (string) $data; |
|
127 | 127 | $ns = strlen($data); |
128 | - for ($nn = 0; $nn < $ns; $nn++) { |
|
128 | + for ($nn = 0; $nn<$ns; $nn++) { |
|
129 | 129 | $ch = $data[$nn]; |
130 | 130 | $ii = ord($ch); |
131 | 131 | // 7 bits: 0bbbbbbb (127) |
132 | - if ($ii < 128) { |
|
132 | + if ($ii<128) { |
|
133 | 133 | /// @todo shall we replace this with a (supposedly) faster str_replace? |
134 | 134 | switch ($ii) { |
135 | 135 | case 34: |
@@ -153,33 +153,33 @@ discard block |
||
153 | 153 | } // 11 bits: 110bbbbb 10bbbbbb (2047) |
154 | 154 | elseif ($ii >> 5 == 6) { |
155 | 155 | $b1 = ($ii & 31); |
156 | - $ii = ord($data[$nn + 1]); |
|
156 | + $ii = ord($data[$nn+1]); |
|
157 | 157 | $b2 = ($ii & 63); |
158 | - $ii = ($b1 * 64) + $b2; |
|
158 | + $ii = ($b1 * 64)+$b2; |
|
159 | 159 | $ent = sprintf('&#%d;', $ii); |
160 | 160 | $escapedData .= $ent; |
161 | 161 | $nn += 1; |
162 | 162 | } // 16 bits: 1110bbbb 10bbbbbb 10bbbbbb |
163 | 163 | elseif ($ii >> 4 == 14) { |
164 | 164 | $b1 = ($ii & 15); |
165 | - $ii = ord($data[$nn + 1]); |
|
165 | + $ii = ord($data[$nn+1]); |
|
166 | 166 | $b2 = ($ii & 63); |
167 | - $ii = ord($data[$nn + 2]); |
|
167 | + $ii = ord($data[$nn+2]); |
|
168 | 168 | $b3 = ($ii & 63); |
169 | - $ii = ((($b1 * 64) + $b2) * 64) + $b3; |
|
169 | + $ii = ((($b1 * 64)+$b2) * 64)+$b3; |
|
170 | 170 | $ent = sprintf('&#%d;', $ii); |
171 | 171 | $escapedData .= $ent; |
172 | 172 | $nn += 2; |
173 | 173 | } // 21 bits: 11110bbb 10bbbbbb 10bbbbbb 10bbbbbb |
174 | 174 | elseif ($ii >> 3 == 30) { |
175 | 175 | $b1 = ($ii & 7); |
176 | - $ii = ord($data[$nn + 1]); |
|
176 | + $ii = ord($data[$nn+1]); |
|
177 | 177 | $b2 = ($ii & 63); |
178 | - $ii = ord($data[$nn + 2]); |
|
178 | + $ii = ord($data[$nn+2]); |
|
179 | 179 | $b3 = ($ii & 63); |
180 | - $ii = ord($data[$nn + 3]); |
|
180 | + $ii = ord($data[$nn+3]); |
|
181 | 181 | $b4 = ($ii & 63); |
182 | - $ii = ((((($b1 * 64) + $b2) * 64) + $b3) * 64) + $b4; |
|
182 | + $ii = ((((($b1 * 64)+$b2) * 64)+$b3) * 64)+$b4; |
|
183 | 183 | $ent = sprintf('&#%d;', $ii); |
184 | 184 | $escapedData .= $ent; |
185 | 185 | $nn += 3; |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | |
215 | 215 | default: |
216 | 216 | $escapedData = ''; |
217 | - error_log('XML-RPC: ' . __METHOD__ . ": Converting from $srcEncoding to $destEncoding: not supported..."); |
|
217 | + error_log('XML-RPC: '.__METHOD__.": Converting from $srcEncoding to $destEncoding: not supported..."); |
|
218 | 218 | } |
219 | 219 | |
220 | 220 | return $escapedData; |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | case 'iso88591': |
267 | 267 | return $this->xml_iso88591_Entities; |
268 | 268 | default: |
269 | - throw new \Exception('Unsupported charset: ' . $charset); |
|
269 | + throw new \Exception('Unsupported charset: '.$charset); |
|
270 | 270 | } |
271 | 271 | } |
272 | 272 |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | */ |
53 | 53 | public function echoInput() |
54 | 54 | { |
55 | - $r = new Response(new PhpXmlRpc\Value("'Aha said I: '" . file_get_contents('php://input'), 'string')); |
|
55 | + $r = new Response(new PhpXmlRpc\Value("'Aha said I: '".file_get_contents('php://input'), 'string')); |
|
56 | 56 | print $r->serialize(); |
57 | 57 | } |
58 | 58 | } |
@@ -68,30 +68,30 @@ discard block |
||
68 | 68 | PhpXmlRpc\Server::xmlrpc_debugmsg($m); |
69 | 69 | } |
70 | 70 | |
71 | -function _xmlrpcs_getCapabilities($server, $m=null) |
|
71 | +function _xmlrpcs_getCapabilities($server, $m = null) |
|
72 | 72 | { |
73 | 73 | return PhpXmlRpc\Server::_xmlrpcs_getCapabilities($server, $m); |
74 | 74 | } |
75 | 75 | |
76 | -$_xmlrpcs_listMethods_sig=array(array($GLOBALS['xmlrpcArray'])); |
|
77 | -$_xmlrpcs_listMethods_doc='This method lists all the methods that the XML-RPC server knows how to dispatch'; |
|
78 | -$_xmlrpcs_listMethods_sdoc=array(array('list of method names')); |
|
79 | -function _xmlrpcs_listMethods($server, $m=null) // if called in plain php values mode, second param is missing |
|
76 | +$_xmlrpcs_listMethods_sig = array(array($GLOBALS['xmlrpcArray'])); |
|
77 | +$_xmlrpcs_listMethods_doc = 'This method lists all the methods that the XML-RPC server knows how to dispatch'; |
|
78 | +$_xmlrpcs_listMethods_sdoc = array(array('list of method names')); |
|
79 | +function _xmlrpcs_listMethods($server, $m = null) // if called in plain php values mode, second param is missing |
|
80 | 80 | { |
81 | 81 | return PhpXmlRpc\Server::_xmlrpcs_listMethods($server, $m); |
82 | 82 | } |
83 | 83 | |
84 | -$_xmlrpcs_methodSignature_sig=array(array($GLOBALS['xmlrpcArray'], $GLOBALS['xmlrpcString'])); |
|
85 | -$_xmlrpcs_methodSignature_doc='Returns an array of known signatures (an array of arrays) for the method name passed. If no signatures are known, returns a none-array (test for type != array to detect missing signature)'; |
|
86 | -$_xmlrpcs_methodSignature_sdoc=array(array('list of known signatures, each sig being an array of xmlrpc type names', 'name of method to be described')); |
|
84 | +$_xmlrpcs_methodSignature_sig = array(array($GLOBALS['xmlrpcArray'], $GLOBALS['xmlrpcString'])); |
|
85 | +$_xmlrpcs_methodSignature_doc = 'Returns an array of known signatures (an array of arrays) for the method name passed. If no signatures are known, returns a none-array (test for type != array to detect missing signature)'; |
|
86 | +$_xmlrpcs_methodSignature_sdoc = array(array('list of known signatures, each sig being an array of xmlrpc type names', 'name of method to be described')); |
|
87 | 87 | function _xmlrpcs_methodSignature($server, $m) |
88 | 88 | { |
89 | 89 | return PhpXmlRpc\Server::_xmlrpcs_methodSignature($server, $m); |
90 | 90 | } |
91 | 91 | |
92 | -$_xmlrpcs_methodHelp_sig=array(array($GLOBALS['xmlrpcString'], $GLOBALS['xmlrpcString'])); |
|
93 | -$_xmlrpcs_methodHelp_doc='Returns help text if defined for the method passed, otherwise returns an empty string'; |
|
94 | -$_xmlrpcs_methodHelp_sdoc=array(array('method description', 'name of the method to be described')); |
|
92 | +$_xmlrpcs_methodHelp_sig = array(array($GLOBALS['xmlrpcString'], $GLOBALS['xmlrpcString'])); |
|
93 | +$_xmlrpcs_methodHelp_doc = 'Returns help text if defined for the method passed, otherwise returns an empty string'; |
|
94 | +$_xmlrpcs_methodHelp_sdoc = array(array('method description', 'name of the method to be described')); |
|
95 | 95 | function _xmlrpcs_methodHelp($server, $m) |
96 | 96 | { |
97 | 97 | return PhpXmlRpc\Server::_xmlrpcs_methodHelp($server, $m); |
@@ -2,10 +2,10 @@ discard block |
||
2 | 2 | /** |
3 | 3 | * NB: do not let your IDE fool you. The correct encoding for this file is NOT UTF8. |
4 | 4 | */ |
5 | -include_once __DIR__ . '/../lib/xmlrpc.inc'; |
|
6 | -include_once __DIR__ . '/../lib/xmlrpcs.inc'; |
|
5 | +include_once __DIR__.'/../lib/xmlrpc.inc'; |
|
6 | +include_once __DIR__.'/../lib/xmlrpcs.inc'; |
|
7 | 7 | |
8 | -include_once __DIR__ . '/parse_args.php'; |
|
8 | +include_once __DIR__.'/parse_args.php'; |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * Tests involving parsing of xml and handling of xmlrpc values |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | |
62 | 62 | public function testUnicodeInMemberName() |
63 | 63 | { |
64 | - $str = "G" . chr(252) . "nter, El" . chr(232) . "ne"; |
|
64 | + $str = "G".chr(252)."nter, El".chr(232)."ne"; |
|
65 | 65 | $v = array($str => new xmlrpcval(1)); |
66 | 66 | $r = new xmlrpcresp(new xmlrpcval($v, 'struct')); |
67 | 67 | $r = $r->serialize(); |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | <!-- $Id --> |
79 | 79 | <!-- found by G. giunta, covers what happens when lib receives |
80 | 80 | UTF8 chars in response text and comments --> |
81 | -<!-- ' . chr(224) . chr(252) . chr(232) . 'àüè --> |
|
81 | +<!-- ' . chr(224).chr(252).chr(232).'àüè --> |
|
82 | 82 | <methodResponse> |
83 | 83 | <fault> |
84 | 84 | <value> |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | </member> |
90 | 90 | <member> |
91 | 91 | <name>faultString</name> |
92 | -<value><string>' . chr(224) . chr(252) . chr(232) . 'àüè</string></value> |
|
92 | +<value><string>' . chr(224).chr(252).chr(232).'àüè</string></value> |
|
93 | 93 | </member> |
94 | 94 | </struct> |
95 | 95 | </value> |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $m = $this->newMsg('dummy'); |
99 | 99 | $r = $m->parseResponse($response); |
100 | 100 | $v = $r->faultString(); |
101 | - $this->assertEquals(chr(224) . chr(252) . chr(232) . chr(224) . chr(252) . chr(232), $v); |
|
101 | + $this->assertEquals(chr(224).chr(252).chr(232).chr(224).chr(252).chr(232), $v); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | public function testValidNumbers() |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | |
160 | 160 | public function testI8() |
161 | 161 | { |
162 | - if (PHP_INT_SIZE == 4 ) { |
|
162 | + if (PHP_INT_SIZE == 4) { |
|
163 | 163 | $this->markTestSkipped('did not find a locale which sets decimal separator to comma'); |
164 | 164 | return; |
165 | 165 | } |
@@ -483,11 +483,11 @@ discard block |
||
483 | 483 | |
484 | 484 | public function testUTF8Response() |
485 | 485 | { |
486 | - $string = chr(224) . chr(252) . chr(232); |
|
486 | + $string = chr(224).chr(252).chr(232); |
|
487 | 487 | |
488 | 488 | $s = $this->newMsg('dummy'); |
489 | - $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=UTF-8\r\n\r\n" . '<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
|
490 | -<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . utf8_encode($string) . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
489 | + $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=UTF-8\r\n\r\n".'<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
|
490 | +<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . utf8_encode($string).'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
491 | 491 | '; |
492 | 492 | $r = $s->parseResponse($f, false, 'phpvals'); |
493 | 493 | $v = $r->value(); |
@@ -495,7 +495,7 @@ discard block |
||
495 | 495 | $this->assertEquals($string, $v); |
496 | 496 | |
497 | 497 | $f = '<?xml version="1.0" encoding="UTF-8"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
498 | -<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . utf8_encode($string) . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
498 | +<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . utf8_encode($string).'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
499 | 499 | '; |
500 | 500 | $r = $s->parseResponse($f, false, 'phpvals'); |
501 | 501 | $v = $r->value(); |
@@ -510,11 +510,11 @@ discard block |
||
510 | 510 | |
511 | 511 | public function testLatin1Response() |
512 | 512 | { |
513 | - $string = chr(224) . chr(252) . chr(232); |
|
513 | + $string = chr(224).chr(252).chr(232); |
|
514 | 514 | |
515 | 515 | $s = $this->newMsg('dummy'); |
516 | - $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=ISO-8859-1\r\n\r\n" . '<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
|
517 | -<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
516 | + $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=ISO-8859-1\r\n\r\n".'<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
|
517 | +<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string.'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
518 | 518 | '; |
519 | 519 | $r = $s->parseResponse($f, false, 'phpvals'); |
520 | 520 | $v = $r->value(); |
@@ -522,7 +522,7 @@ discard block |
||
522 | 522 | $this->assertEquals($string, $v); |
523 | 523 | |
524 | 524 | $f = '<?xml version="1.0" encoding="ISO-8859-1"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
525 | -<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
525 | +<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string.'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
526 | 526 | '; |
527 | 527 | $r = $s->parseResponse($f, false, 'phpvals'); |
528 | 528 | $v = $r->value(); |
@@ -616,7 +616,7 @@ discard block |
||
616 | 616 | $v1 = new xmlrpcval(array(new xmlrpcval('one'), new xmlrpcval('two')), 'array'); |
617 | 617 | $this->assertequals(1, count($v1)); |
618 | 618 | $out = array('me' => array(), 'mytype' => 2, '_php_class' => null); |
619 | - foreach($v1 as $key => $val) |
|
619 | + foreach ($v1 as $key => $val) |
|
620 | 620 | { |
621 | 621 | $expected = each($out); |
622 | 622 | $this->assertequals($expected['key'], $key); |
@@ -630,7 +630,7 @@ discard block |
||
630 | 630 | $v2 = new \PhpXmlRpc\Value(array(new \PhpXmlRpc\Value('one'), new \PhpXmlRpc\Value('two')), 'array'); |
631 | 631 | $this->assertequals(2, count($v2)); |
632 | 632 | $out = array(0 => 'object', 1 => 'object'); |
633 | - foreach($v2 as $key => $val) |
|
633 | + foreach ($v2 as $key => $val) |
|
634 | 634 | { |
635 | 635 | $expected = each($out); |
636 | 636 | $this->assertequals($expected['key'], $key); |
@@ -41,10 +41,10 @@ discard block |
||
41 | 41 | * @param array $extraOptions |
42 | 42 | * @return array|false |
43 | 43 | */ |
44 | -function wrap_php_function($funcName, $newFuncName='', $extraOptions=array()) |
|
44 | +function wrap_php_function($funcName, $newFuncName = '', $extraOptions = array()) |
|
45 | 45 | { |
46 | 46 | $wrapper = new PhpXmlRpc\Wrapper(); |
47 | - if (!isset($extraOptions['return_source']) || $extraOptions['return_source'] == false) { |
|
47 | + if (!isset($extraOptions['return_source']) || $extraOptions['return_source'] == false) { |
|
48 | 48 | // backwards compat: return string instead of callable |
49 | 49 | $extraOptions['return_source'] = true; |
50 | 50 | $wrapped = $wrapper->wrapPhpFunction($funcName, $newFuncName, $extraOptions); |
@@ -64,17 +64,17 @@ discard block |
||
64 | 64 | * @param array $extraOptions |
65 | 65 | * @return array|false |
66 | 66 | */ |
67 | -function wrap_php_class($className, $extraOptions=array()) |
|
67 | +function wrap_php_class($className, $extraOptions = array()) |
|
68 | 68 | { |
69 | 69 | $wrapper = new PhpXmlRpc\Wrapper(); |
70 | 70 | $fix = false; |
71 | - if (!isset($extraOptions['return_source']) || $extraOptions['return_source'] == false) { |
|
71 | + if (!isset($extraOptions['return_source']) || $extraOptions['return_source'] == false) { |
|
72 | 72 | // backwards compat: return string instead of callable |
73 | 73 | $extraOptions['return_source'] = true; |
74 | 74 | $fix = true; |
75 | 75 | } |
76 | 76 | $wrapped = $wrapper->wrapPhpClass($className, $extraOptions); |
77 | - foreach($wrapped as $name => $value) { |
|
77 | + foreach ($wrapped as $name => $value) { |
|
78 | 78 | if ($fix) { |
79 | 79 | eval($value['source']); |
80 | 80 | } |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * @param string $newFuncName deprecated, use an option in $extraOptions |
94 | 94 | * @return array|callable|false |
95 | 95 | */ |
96 | -function wrap_xmlrpc_method($client, $methodName, $extraOptions=0, $timeout=0, $protocol='', $newFuncName='') |
|
96 | +function wrap_xmlrpc_method($client, $methodName, $extraOptions = 0, $timeout = 0, $protocol = '', $newFuncName = '') |
|
97 | 97 | { |
98 | 98 | if (!is_array($extraOptions)) |
99 | 99 | { |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | |
109 | 109 | $wrapper = new PhpXmlRpc\Wrapper(); |
110 | 110 | |
111 | - if (!isset($extraOptions['return_source']) || $extraOptions['return_source'] == false) { |
|
111 | + if (!isset($extraOptions['return_source']) || $extraOptions['return_source'] == false) { |
|
112 | 112 | // backwards compat: return string instead of callable |
113 | 113 | $extraOptions['return_source'] = true; |
114 | 114 | $wrapped = $wrapper->wrapXmlrpcMethod($client, $methodName, $extraOptions); |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | * @param array $extraOptions |
127 | 127 | * @return mixed |
128 | 128 | */ |
129 | -function wrap_xmlrpc_server($client, $extraOptions=array()) |
|
129 | +function wrap_xmlrpc_server($client, $extraOptions = array()) |
|
130 | 130 | { |
131 | 131 | $wrapper = new PhpXmlRpc\Wrapper(); |
132 | 132 | return $wrapper->wrapXmlrpcServer($client, $extraOptions); |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | $faultResponse = '', $namespace = '\\PhpXmlRpc\\') |
147 | 147 | { |
148 | 148 | $code = "function $xmlrpcFuncName ("; |
149 | - if ($clientCopyMode < 2) { |
|
149 | + if ($clientCopyMode<2) { |
|
150 | 150 | // client copy mode 0 or 1 == partial / full client copy in emitted code |
151 | 151 | $innerCode = build_client_wrapper_code($client, $clientCopyMode, $prefix, $namespace); |
152 | 152 | $innerCode .= "\$client->setDebug(\$debug);\n"; |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | |
161 | 161 | if ($mDesc != '') { |
162 | 162 | // take care that PHP comment is not terminated unwillingly by method description |
163 | - $mDesc = "/**\n* " . str_replace('*/', '* /', $mDesc) . "\n"; |
|
163 | + $mDesc = "/**\n* ".str_replace('*/', '* /', $mDesc)."\n"; |
|
164 | 164 | } else { |
165 | 165 | $mDesc = "/**\nFunction $xmlrpcFuncName\n"; |
166 | 166 | } |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | $innerCode .= "\$encoder = new {$namespace}Encoder();\n"; |
170 | 170 | $plist = array(); |
171 | 171 | $pCount = count($mSig); |
172 | - for ($i = 1; $i < $pCount; $i++) { |
|
172 | + for ($i = 1; $i<$pCount; $i++) { |
|
173 | 173 | $plist[] = "\$p$i"; |
174 | 174 | $pType = $mSig[$i]; |
175 | 175 | if ($pType == 'i4' || $pType == 'i8' || $pType == 'int' || $pType == 'boolean' || $pType == 'double' || |
@@ -185,19 +185,19 @@ discard block |
||
185 | 185 | } |
186 | 186 | } |
187 | 187 | $innerCode .= "\$req->addparam(\$p$i);\n"; |
188 | - $mDesc .= '* @param ' . xmlrpc_2_php_type($pType) . " \$p$i\n"; |
|
188 | + $mDesc .= '* @param '.xmlrpc_2_php_type($pType)." \$p$i\n"; |
|
189 | 189 | } |
190 | - if ($clientCopyMode < 2) { |
|
190 | + if ($clientCopyMode<2) { |
|
191 | 191 | $plist[] = '$debug=0'; |
192 | 192 | $mDesc .= "* @param int \$debug when 1 (or 2) will enable debugging of the underlying {$prefix} call (defaults to 0)\n"; |
193 | 193 | } |
194 | 194 | $plist = implode(', ', $plist); |
195 | - $mDesc .= '* @return ' . xmlrpc_2_php_type($mSig[0]) . " (or an {$namespace}Response obj instance if call fails)\n*/\n"; |
|
195 | + $mDesc .= '* @return '.xmlrpc_2_php_type($mSig[0])." (or an {$namespace}Response obj instance if call fails)\n*/\n"; |
|
196 | 196 | |
197 | 197 | $innerCode .= "\$res = \${$this_}client->send(\$req, $timeout, '$protocol');\n"; |
198 | 198 | if ($decodeFault) { |
199 | 199 | if (is_string($faultResponse) && ((strpos($faultResponse, '%faultCode%') !== false) || (strpos($faultResponse, '%faultString%') !== false))) { |
200 | - $respCode = "str_replace(array('%faultCode%', '%faultString%'), array(\$res->faultCode(), \$res->faultString()), '" . str_replace("'", "''", $faultResponse) . "')"; |
|
200 | + $respCode = "str_replace(array('%faultCode%', '%faultString%'), array(\$res->faultCode(), \$res->faultString()), '".str_replace("'", "''", $faultResponse)."')"; |
|
201 | 201 | } else { |
202 | 202 | $respCode = var_export($faultResponse, true); |
203 | 203 | } |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | $innerCode .= "if (\$res->faultcode()) return $respCode; else return \$encoder->decode(\$res->value());"; |
211 | 211 | } |
212 | 212 | |
213 | - $code = $code . $plist . ") {\n" . $innerCode . "\n}\n"; |
|
213 | + $code = $code.$plist.") {\n".$innerCode."\n}\n"; |
|
214 | 214 | |
215 | 215 | return array('source' => $code, 'docstring' => $mDesc); |
216 | 216 | } |
@@ -218,18 +218,18 @@ discard block |
||
218 | 218 | /** |
219 | 219 | * @deprecated |
220 | 220 | */ |
221 | -function build_client_wrapper_code($client, $verbatim_client_copy, $prefix='xmlrpc') |
|
221 | +function build_client_wrapper_code($client, $verbatim_client_copy, $prefix = 'xmlrpc') |
|
222 | 222 | { |
223 | 223 | $code = "\$client = new {$prefix}_client('".str_replace("'", "\'", $client->path). |
224 | - "', '" . str_replace("'", "\'", $client->server) . "', $client->port);\n"; |
|
224 | + "', '".str_replace("'", "\'", $client->server)."', $client->port);\n"; |
|
225 | 225 | |
226 | 226 | // copy all client fields to the client that will be generated runtime |
227 | 227 | // (this provides for future expansion or subclassing of client obj) |
228 | 228 | if ($verbatim_client_copy) |
229 | 229 | { |
230 | - foreach($client as $fld => $val) |
|
230 | + foreach ($client as $fld => $val) |
|
231 | 231 | { |
232 | - if($fld != 'debug' && $fld != 'return_type') |
|
232 | + if ($fld != 'debug' && $fld != 'return_type') |
|
233 | 233 | { |
234 | 234 | $val = var_export($val, true); |
235 | 235 | $code .= "\$client->$fld = $val;\n"; |
@@ -3,16 +3,16 @@ discard block |
||
3 | 3 | <body> |
4 | 4 | <?php |
5 | 5 | |
6 | -include_once __DIR__ . "/../vendor/autoload.php"; |
|
6 | +include_once __DIR__."/../vendor/autoload.php"; |
|
7 | 7 | |
8 | 8 | $req = new PhpXmlRpc\Request('examples.getStateName'); |
9 | 9 | |
10 | 10 | print "<h3>Testing value serialization</h3>\n"; |
11 | 11 | |
12 | 12 | $v = new PhpXmlRpc\Value(23, "int"); |
13 | -print "<PRE>" . htmlentities($v->serialize()) . "</PRE>"; |
|
13 | +print "<PRE>".htmlentities($v->serialize())."</PRE>"; |
|
14 | 14 | $v = new PhpXmlRpc\Value("What are you saying? >> << &&"); |
15 | -print "<PRE>" . htmlentities($v->serialize()) . "</PRE>"; |
|
15 | +print "<PRE>".htmlentities($v->serialize())."</PRE>"; |
|
16 | 16 | |
17 | 17 | $v = new PhpXmlRpc\Value( |
18 | 18 | array( |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | "array" |
24 | 24 | ); |
25 | 25 | |
26 | -print "<PRE>" . htmlentities($v->serialize()) . "</PRE>"; |
|
26 | +print "<PRE>".htmlentities($v->serialize())."</PRE>"; |
|
27 | 27 | |
28 | 28 | $v = new PhpXmlRpc\Value( |
29 | 29 | array( |
@@ -51,11 +51,11 @@ discard block |
||
51 | 51 | "struct" |
52 | 52 | ); |
53 | 53 | |
54 | -print "<PRE>" . htmlentities($v->serialize()) . "</PRE>"; |
|
54 | +print "<PRE>".htmlentities($v->serialize())."</PRE>"; |
|
55 | 55 | |
56 | 56 | $w = new PhpXmlRpc\Value(array($v, new PhpXmlRpc\Value("That was the struct!")), "array"); |
57 | 57 | |
58 | -print "<PRE>" . htmlentities($w->serialize()) . "</PRE>"; |
|
58 | +print "<PRE>".htmlentities($w->serialize())."</PRE>"; |
|
59 | 59 | |
60 | 60 | $w = new PhpXmlRpc\Value("Mary had a little lamb, |
61 | 61 | Whose fleece was white as snow, |
@@ -67,26 +67,26 @@ discard block |
||
67 | 67 | Ten thousand volts went down its back |
68 | 68 | And turned it into nylon", "base64" |
69 | 69 | ); |
70 | -print "<PRE>" . htmlentities($w->serialize()) . "</PRE>"; |
|
71 | -print "<PRE>Value of base64 string is: '" . $w->scalarval() . "'</PRE>"; |
|
70 | +print "<PRE>".htmlentities($w->serialize())."</PRE>"; |
|
71 | +print "<PRE>Value of base64 string is: '".$w->scalarval()."'</PRE>"; |
|
72 | 72 | |
73 | 73 | $req->method(''); |
74 | 74 | $req->addParam(new PhpXmlRpc\Value("41", "int")); |
75 | 75 | |
76 | 76 | print "<h3>Testing request serialization</h3>\n"; |
77 | 77 | $op = $req->serialize(); |
78 | -print "<PRE>" . htmlentities($op) . "</PRE>"; |
|
78 | +print "<PRE>".htmlentities($op)."</PRE>"; |
|
79 | 79 | |
80 | 80 | print "<h3>Testing ISO date format</h3><pre>\n"; |
81 | 81 | |
82 | 82 | $t = time(); |
83 | 83 | $date = PhpXmlRpc\Helper\Date::iso8601Encode($t); |
84 | 84 | print "Now is $t --> $date\n"; |
85 | -print "Or in UTC, that is " . PhpXmlRpc\Helper\Date::iso8601Encode($t, 1) . "\n"; |
|
85 | +print "Or in UTC, that is ".PhpXmlRpc\Helper\Date::iso8601Encode($t, 1)."\n"; |
|
86 | 86 | $tb = PhpXmlRpc\Helper\Date::iso8601Decode($date); |
87 | 87 | print "That is to say $date --> $tb\n"; |
88 | -print "Which comes out at " . PhpXmlRpc\Helper\Date::iso8601Encode($tb) . "\n"; |
|
89 | -print "Which was the time in UTC at " . PhpXmlRpc\Helper\Date::iso8601Encode($date, 1) . "\n"; |
|
88 | +print "Which comes out at ".PhpXmlRpc\Helper\Date::iso8601Encode($tb)."\n"; |
|
89 | +print "Which was the time in UTC at ".PhpXmlRpc\Helper\Date::iso8601Encode($date, 1)."\n"; |
|
90 | 90 | |
91 | 91 | print "</pre>\n"; |
92 | 92 |
@@ -157,20 +157,20 @@ discard block |
||
157 | 157 | $callable = explode('::', $callable); |
158 | 158 | } |
159 | 159 | if (is_array($callable)) { |
160 | - if (count($callable) < 2 || (!is_string($callable[0]) && !is_object($callable[0]))) { |
|
161 | - error_log('XML-RPC: ' . __METHOD__ . ': syntax for function to be wrapped is wrong'); |
|
160 | + if (count($callable)<2 || (!is_string($callable[0]) && !is_object($callable[0]))) { |
|
161 | + error_log('XML-RPC: '.__METHOD__.': syntax for function to be wrapped is wrong'); |
|
162 | 162 | return false; |
163 | 163 | } |
164 | 164 | if (is_string($callable[0])) { |
165 | 165 | $plainFuncName = implode('::', $callable); |
166 | 166 | } elseif (is_object($callable[0])) { |
167 | - $plainFuncName = get_class($callable[0]) . '->' . $callable[1]; |
|
167 | + $plainFuncName = get_class($callable[0]).'->'.$callable[1]; |
|
168 | 168 | } |
169 | 169 | $exists = method_exists($callable[0], $callable[1]); |
170 | 170 | } else if ($callable instanceof \Closure) { |
171 | 171 | // we do not support creating code which wraps closures, as php does not allow to serialize them |
172 | 172 | if (!$buildIt) { |
173 | - error_log('XML-RPC: ' . __METHOD__ . ': a closure can not be wrapped in generated source code'); |
|
173 | + error_log('XML-RPC: '.__METHOD__.': a closure can not be wrapped in generated source code'); |
|
174 | 174 | return false; |
175 | 175 | } |
176 | 176 | |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | } |
183 | 183 | |
184 | 184 | if (!$exists) { |
185 | - error_log('XML-RPC: ' . __METHOD__ . ': function to be wrapped is not defined: ' . $plainFuncName); |
|
185 | + error_log('XML-RPC: '.__METHOD__.': function to be wrapped is not defined: '.$plainFuncName); |
|
186 | 186 | return false; |
187 | 187 | } |
188 | 188 | |
@@ -226,23 +226,23 @@ discard block |
||
226 | 226 | if (is_array($callable)) { |
227 | 227 | $func = new \ReflectionMethod($callable[0], $callable[1]); |
228 | 228 | if ($func->isPrivate()) { |
229 | - error_log('XML-RPC: ' . __METHOD__ . ': method to be wrapped is private: ' . $plainFuncName); |
|
229 | + error_log('XML-RPC: '.__METHOD__.': method to be wrapped is private: '.$plainFuncName); |
|
230 | 230 | return false; |
231 | 231 | } |
232 | 232 | if ($func->isProtected()) { |
233 | - error_log('XML-RPC: ' . __METHOD__ . ': method to be wrapped is protected: ' . $plainFuncName); |
|
233 | + error_log('XML-RPC: '.__METHOD__.': method to be wrapped is protected: '.$plainFuncName); |
|
234 | 234 | return false; |
235 | 235 | } |
236 | 236 | if ($func->isConstructor()) { |
237 | - error_log('XML-RPC: ' . __METHOD__ . ': method to be wrapped is the constructor: ' . $plainFuncName); |
|
237 | + error_log('XML-RPC: '.__METHOD__.': method to be wrapped is the constructor: '.$plainFuncName); |
|
238 | 238 | return false; |
239 | 239 | } |
240 | 240 | if ($func->isDestructor()) { |
241 | - error_log('XML-RPC: ' . __METHOD__ . ': method to be wrapped is the destructor: ' . $plainFuncName); |
|
241 | + error_log('XML-RPC: '.__METHOD__.': method to be wrapped is the destructor: '.$plainFuncName); |
|
242 | 242 | return false; |
243 | 243 | } |
244 | 244 | if ($func->isAbstract()) { |
245 | - error_log('XML-RPC: ' . __METHOD__ . ': method to be wrapped is abstract: ' . $plainFuncName); |
|
245 | + error_log('XML-RPC: '.__METHOD__.': method to be wrapped is abstract: '.$plainFuncName); |
|
246 | 246 | return false; |
247 | 247 | } |
248 | 248 | /// @todo add more checks for static vs. nonstatic? |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | if ($func->isInternal()) { |
253 | 253 | // Note: from PHP 5.1.0 onward, we will possibly be able to use invokeargs |
254 | 254 | // instead of getparameters to fully reflect internal php functions ? |
255 | - error_log('XML-RPC: ' . __METHOD__ . ': function to be wrapped is internal: ' . $plainFuncName); |
|
255 | + error_log('XML-RPC: '.__METHOD__.': function to be wrapped is internal: '.$plainFuncName); |
|
256 | 256 | return false; |
257 | 257 | } |
258 | 258 | |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | $i = 0; |
305 | 305 | foreach ($func->getParameters() as $paramObj) { |
306 | 306 | $params[$i] = array(); |
307 | - $params[$i]['name'] = '$' . $paramObj->getName(); |
|
307 | + $params[$i]['name'] = '$'.$paramObj->getName(); |
|
308 | 308 | $params[$i]['isoptional'] = $paramObj->isOptional(); |
309 | 309 | $i++; |
310 | 310 | } |
@@ -369,7 +369,7 @@ discard block |
||
369 | 369 | // build a signature |
370 | 370 | $sig = array($this->php2XmlrpcType($funcDesc['returns'])); |
371 | 371 | $pSig = array($funcDesc['returnsDocs']); |
372 | - for ($i = 0; $i < count($pars); $i++) { |
|
372 | + for ($i = 0; $i<count($pars); $i++) { |
|
373 | 373 | $name = strtolower($funcDesc['params'][$i]['name']); |
374 | 374 | if (isset($funcDesc['paramDocs'][$name]['type'])) { |
375 | 375 | $sig[] = $this->php2XmlrpcType($funcDesc['paramDocs'][$name]['type']); |
@@ -420,7 +420,7 @@ discard block |
||
420 | 420 | } |
421 | 421 | } |
422 | 422 | $numPars = $req->getNumParams(); |
423 | - if ($numPars < $minPars || $numPars > $maxPars) { |
|
423 | + if ($numPars<$minPars || $numPars>$maxPars) { |
|
424 | 424 | return new $responseClass(0, 3, 'Incorrect parameters passed to method'); |
425 | 425 | } |
426 | 426 | |
@@ -433,7 +433,7 @@ discard block |
||
433 | 433 | |
434 | 434 | $result = call_user_func_array($callable, $params); |
435 | 435 | |
436 | - if (! is_a($result, $responseClass)) { |
|
436 | + if (!is_a($result, $responseClass)) { |
|
437 | 437 | if ($funcDesc['returns'] == Value::$xmlrpcDateTime || $funcDesc['returns'] == Value::$xmlrpcBase64) { |
438 | 438 | $result = new $valueClass($result, $funcDesc['returns']); |
439 | 439 | } else { |
@@ -468,9 +468,9 @@ discard block |
||
468 | 468 | if ($newFuncName == '') { |
469 | 469 | if (is_array($callable)) { |
470 | 470 | if (is_string($callable[0])) { |
471 | - $xmlrpcFuncName = "{$prefix}_" . implode('_', $callable); |
|
471 | + $xmlrpcFuncName = "{$prefix}_".implode('_', $callable); |
|
472 | 472 | } else { |
473 | - $xmlrpcFuncName = "{$prefix}_" . get_class($callable[0]) . '_' . $callable[1]; |
|
473 | + $xmlrpcFuncName = "{$prefix}_".get_class($callable[0]).'_'.$callable[1]; |
|
474 | 474 | } |
475 | 475 | } else { |
476 | 476 | if ($callable instanceof \Closure) { |
@@ -506,8 +506,8 @@ discard block |
||
506 | 506 | { |
507 | 507 | $namespace = '\\PhpXmlRpc\\'; |
508 | 508 | |
509 | - $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false; |
|
510 | - $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false; |
|
509 | + $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false; |
|
510 | + $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false; |
|
511 | 511 | $catchWarnings = isset($extraOptions['suppress_warnings']) && $extraOptions['suppress_warnings'] ? '@' : ''; |
512 | 512 | |
513 | 513 | $i = 0; |
@@ -542,7 +542,7 @@ discard block |
||
542 | 542 | // build body of new function |
543 | 543 | |
544 | 544 | $innerCode = "\$paramCount = \$req->getNumParams();\n"; |
545 | - $innerCode .= "if (\$paramCount < $minPars || \$paramCount > $maxPars) return new {$namespace}Response(0, " . PhpXmlRpc::$xmlrpcerr['incorrect_params'] . ", '" . PhpXmlRpc::$xmlrpcstr['incorrect_params'] . "');\n"; |
|
545 | + $innerCode .= "if (\$paramCount < $minPars || \$paramCount > $maxPars) return new {$namespace}Response(0, ".PhpXmlRpc::$xmlrpcerr['incorrect_params'].", '".PhpXmlRpc::$xmlrpcstr['incorrect_params']."');\n"; |
|
546 | 546 | |
547 | 547 | $innerCode .= "\$encoder = new {$namespace}Encoder();\n"; |
548 | 548 | if ($decodePhpObjects) { |
@@ -556,13 +556,13 @@ discard block |
||
556 | 556 | if (is_array($callable) && is_object($callable[0])) { |
557 | 557 | self::$objHolder[$newFuncName] = $callable[0]; |
558 | 558 | $innerCode .= "\$obj = PhpXmlRpc\\Wrapper::\$objHolder['$newFuncName'];\n"; |
559 | - $realFuncName = '$obj->' . $callable[1]; |
|
559 | + $realFuncName = '$obj->'.$callable[1]; |
|
560 | 560 | } else { |
561 | 561 | $realFuncName = $plainFuncName; |
562 | 562 | } |
563 | 563 | foreach ($parsVariations as $i => $pars) { |
564 | - $innerCode .= "if (\$paramCount == " . count($pars) . ") \$retval = {$catchWarnings}$realFuncName(" . implode(',', $pars) . ");\n"; |
|
565 | - if ($i < (count($parsVariations) - 1)) |
|
564 | + $innerCode .= "if (\$paramCount == ".count($pars).") \$retval = {$catchWarnings}$realFuncName(".implode(',', $pars).");\n"; |
|
565 | + if ($i<(count($parsVariations)-1)) |
|
566 | 566 | $innerCode .= "else\n"; |
567 | 567 | } |
568 | 568 | $innerCode .= "if (is_a(\$retval, '{$namespace}Response')) return \$retval; else\n"; |
@@ -579,7 +579,7 @@ discard block |
||
579 | 579 | // if($func->returnsReference()) |
580 | 580 | // return false; |
581 | 581 | |
582 | - $code = "function $newFuncName(\$req) {\n" . $innerCode . "\n}"; |
|
582 | + $code = "function $newFuncName(\$req) {\n".$innerCode."\n}"; |
|
583 | 583 | |
584 | 584 | return $code; |
585 | 585 | } |
@@ -616,7 +616,7 @@ discard block |
||
616 | 616 | if ($methodWrap) { |
617 | 617 | if (is_object($className)) { |
618 | 618 | $realClassName = get_class($className); |
619 | - }else { |
|
619 | + } else { |
|
620 | 620 | $realClassName = $className; |
621 | 621 | } |
622 | 622 | $results[$prefix."$realClassName.$mName"] = $methodWrap; |
@@ -717,21 +717,21 @@ discard block |
||
717 | 717 | protected function retrieveMethodSignature($client, $methodName, array $extraOptions = array()) |
718 | 718 | { |
719 | 719 | $namespace = '\\PhpXmlRpc\\'; |
720 | - $reqClass = $namespace . 'Request'; |
|
721 | - $valClass = $namespace . 'Value'; |
|
722 | - $decoderClass = $namespace . 'Encoder'; |
|
720 | + $reqClass = $namespace.'Request'; |
|
721 | + $valClass = $namespace.'Value'; |
|
722 | + $decoderClass = $namespace.'Encoder'; |
|
723 | 723 | |
724 | 724 | $debug = isset($extraOptions['debug']) ? ($extraOptions['debug']) : 0; |
725 | - $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0; |
|
725 | + $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0; |
|
726 | 726 | $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : ''; |
727 | - $sigNum = isset($extraOptions['signum']) ? (int)$extraOptions['signum'] : 0; |
|
727 | + $sigNum = isset($extraOptions['signum']) ? (int) $extraOptions['signum'] : 0; |
|
728 | 728 | |
729 | 729 | $req = new $reqClass('system.methodSignature'); |
730 | 730 | $req->addparam(new $valClass($methodName)); |
731 | 731 | $client->setDebug($debug); |
732 | 732 | $response = $client->send($req, $timeout, $protocol); |
733 | 733 | if ($response->faultCode()) { |
734 | - error_log('XML-RPC: ' . __METHOD__ . ': could not retrieve method signature from remote server for method ' . $methodName); |
|
734 | + error_log('XML-RPC: '.__METHOD__.': could not retrieve method signature from remote server for method '.$methodName); |
|
735 | 735 | return false; |
736 | 736 | } |
737 | 737 | |
@@ -741,8 +741,8 @@ discard block |
||
741 | 741 | $mSig = $decoder->decode($mSig); |
742 | 742 | } |
743 | 743 | |
744 | - if (!is_array($mSig) || count($mSig) <= $sigNum) { |
|
745 | - error_log('XML-RPC: ' . __METHOD__ . ': could not retrieve method signature nr.' . $sigNum . ' from remote server for method ' . $methodName); |
|
744 | + if (!is_array($mSig) || count($mSig)<=$sigNum) { |
|
745 | + error_log('XML-RPC: '.__METHOD__.': could not retrieve method signature nr.'.$sigNum.' from remote server for method '.$methodName); |
|
746 | 746 | return false; |
747 | 747 | } |
748 | 748 | |
@@ -758,11 +758,11 @@ discard block |
||
758 | 758 | protected function retrieveMethodHelp($client, $methodName, array $extraOptions = array()) |
759 | 759 | { |
760 | 760 | $namespace = '\\PhpXmlRpc\\'; |
761 | - $reqClass = $namespace . 'Request'; |
|
762 | - $valClass = $namespace . 'Value'; |
|
761 | + $reqClass = $namespace.'Request'; |
|
762 | + $valClass = $namespace.'Value'; |
|
763 | 763 | |
764 | 764 | $debug = isset($extraOptions['debug']) ? ($extraOptions['debug']) : 0; |
765 | - $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0; |
|
765 | + $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0; |
|
766 | 766 | $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : ''; |
767 | 767 | |
768 | 768 | $mDesc = ''; |
@@ -796,10 +796,10 @@ discard block |
||
796 | 796 | $clientClone = clone $client; |
797 | 797 | $function = function() use($clientClone, $methodName, $extraOptions, $mSig) |
798 | 798 | { |
799 | - $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0; |
|
799 | + $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0; |
|
800 | 800 | $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : ''; |
801 | - $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false; |
|
802 | - $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false; |
|
801 | + $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false; |
|
802 | + $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false; |
|
803 | 803 | if (isset($extraOptions['return_on_fault'])) { |
804 | 804 | $decodeFault = true; |
805 | 805 | $faultResponse = $extraOptions['return_on_fault']; |
@@ -808,9 +808,9 @@ discard block |
||
808 | 808 | } |
809 | 809 | |
810 | 810 | $namespace = '\\PhpXmlRpc\\'; |
811 | - $reqClass = $namespace . 'Request'; |
|
812 | - $encoderClass = $namespace . 'Encoder'; |
|
813 | - $valueClass = $namespace . 'Value'; |
|
811 | + $reqClass = $namespace.'Request'; |
|
812 | + $encoderClass = $namespace.'Encoder'; |
|
813 | + $valueClass = $namespace.'Value'; |
|
814 | 814 | |
815 | 815 | $encoder = new $encoderClass(); |
816 | 816 | $encodeOptions = array(); |
@@ -833,7 +833,7 @@ discard block |
||
833 | 833 | } |
834 | 834 | |
835 | 835 | $xmlrpcArgs = array(); |
836 | - foreach($currentArgs as $i => $arg) { |
|
836 | + foreach ($currentArgs as $i => $arg) { |
|
837 | 837 | if ($i == $maxArgs) { |
838 | 838 | break; |
839 | 839 | } |
@@ -881,13 +881,13 @@ discard block |
||
881 | 881 | * @param string $mDesc |
882 | 882 | * @return array |
883 | 883 | */ |
884 | - public function buildWrapMethodSource($client, $methodName, array $extraOptions, $newFuncName, $mSig, $mDesc='') |
|
884 | + public function buildWrapMethodSource($client, $methodName, array $extraOptions, $newFuncName, $mSig, $mDesc = '') |
|
885 | 885 | { |
886 | - $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0; |
|
886 | + $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0; |
|
887 | 887 | $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : ''; |
888 | - $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false; |
|
889 | - $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false; |
|
890 | - $clientCopyMode = isset($extraOptions['simple_client_copy']) ? (int)($extraOptions['simple_client_copy']) : 0; |
|
888 | + $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false; |
|
889 | + $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false; |
|
890 | + $clientCopyMode = isset($extraOptions['simple_client_copy']) ? (int) ($extraOptions['simple_client_copy']) : 0; |
|
891 | 891 | $prefix = isset($extraOptions['prefix']) ? $extraOptions['prefix'] : 'xmlrpc'; |
892 | 892 | if (isset($extraOptions['return_on_fault'])) { |
893 | 893 | $decodeFault = true; |
@@ -900,7 +900,7 @@ discard block |
||
900 | 900 | $namespace = '\\PhpXmlRpc\\'; |
901 | 901 | |
902 | 902 | $code = "function $newFuncName ("; |
903 | - if ($clientCopyMode < 2) { |
|
903 | + if ($clientCopyMode<2) { |
|
904 | 904 | // client copy mode 0 or 1 == full / partial client copy in emitted code |
905 | 905 | $verbatimClientCopy = !$clientCopyMode; |
906 | 906 | $innerCode = $this->buildClientWrapperCode($client, $verbatimClientCopy, $prefix, $namespace); |
@@ -915,7 +915,7 @@ discard block |
||
915 | 915 | |
916 | 916 | if ($mDesc != '') { |
917 | 917 | // take care that PHP comment is not terminated unwillingly by method description |
918 | - $mDesc = "/**\n* " . str_replace('*/', '* /', $mDesc) . "\n"; |
|
918 | + $mDesc = "/**\n* ".str_replace('*/', '* /', $mDesc)."\n"; |
|
919 | 919 | } else { |
920 | 920 | $mDesc = "/**\nFunction $newFuncName\n"; |
921 | 921 | } |
@@ -924,7 +924,7 @@ discard block |
||
924 | 924 | $innerCode .= "\$encoder = new {$namespace}Encoder();\n"; |
925 | 925 | $plist = array(); |
926 | 926 | $pCount = count($mSig); |
927 | - for ($i = 1; $i < $pCount; $i++) { |
|
927 | + for ($i = 1; $i<$pCount; $i++) { |
|
928 | 928 | $plist[] = "\$p$i"; |
929 | 929 | $pType = $mSig[$i]; |
930 | 930 | if ($pType == 'i4' || $pType == 'i8' || $pType == 'int' || $pType == 'boolean' || $pType == 'double' || |
@@ -940,19 +940,19 @@ discard block |
||
940 | 940 | } |
941 | 941 | } |
942 | 942 | $innerCode .= "\$req->addparam(\$p$i);\n"; |
943 | - $mDesc .= '* @param ' . $this->xmlrpc2PhpType($pType) . " \$p$i\n"; |
|
943 | + $mDesc .= '* @param '.$this->xmlrpc2PhpType($pType)." \$p$i\n"; |
|
944 | 944 | } |
945 | - if ($clientCopyMode < 2) { |
|
945 | + if ($clientCopyMode<2) { |
|
946 | 946 | $plist[] = '$debug=0'; |
947 | 947 | $mDesc .= "* @param int \$debug when 1 (or 2) will enable debugging of the underlying {$prefix} call (defaults to 0)\n"; |
948 | 948 | } |
949 | 949 | $plist = implode(', ', $plist); |
950 | - $mDesc .= '* @return ' . $this->xmlrpc2PhpType($mSig[0]) . " (or an {$namespace}Response obj instance if call fails)\n*/\n"; |
|
950 | + $mDesc .= '* @return '.$this->xmlrpc2PhpType($mSig[0])." (or an {$namespace}Response obj instance if call fails)\n*/\n"; |
|
951 | 951 | |
952 | 952 | $innerCode .= "\$res = \${$this_}client->send(\$req, $timeout, '$protocol');\n"; |
953 | 953 | if ($decodeFault) { |
954 | 954 | if (is_string($faultResponse) && ((strpos($faultResponse, '%faultCode%') !== false) || (strpos($faultResponse, '%faultString%') !== false))) { |
955 | - $respCode = "str_replace(array('%faultCode%', '%faultString%'), array(\$res->faultCode(), \$res->faultString()), '" . str_replace("'", "''", $faultResponse) . "')"; |
|
955 | + $respCode = "str_replace(array('%faultCode%', '%faultString%'), array(\$res->faultCode(), \$res->faultString()), '".str_replace("'", "''", $faultResponse)."')"; |
|
956 | 956 | } else { |
957 | 957 | $respCode = var_export($faultResponse, true); |
958 | 958 | } |
@@ -965,7 +965,7 @@ discard block |
||
965 | 965 | $innerCode .= "if (\$res->faultcode()) return $respCode; else return \$encoder->decode(\$res->value());"; |
966 | 966 | } |
967 | 967 | |
968 | - $code = $code . $plist . ") {\n" . $innerCode . "\n}\n"; |
|
968 | + $code = $code.$plist.") {\n".$innerCode."\n}\n"; |
|
969 | 969 | |
970 | 970 | return array('source' => $code, 'docstring' => $mDesc); |
971 | 971 | } |
@@ -991,23 +991,23 @@ discard block |
||
991 | 991 | public function wrapXmlrpcServer($client, $extraOptions = array()) |
992 | 992 | { |
993 | 993 | $methodFilter = isset($extraOptions['method_filter']) ? $extraOptions['method_filter'] : ''; |
994 | - $timeout = isset($extraOptions['timeout']) ? (int)$extraOptions['timeout'] : 0; |
|
994 | + $timeout = isset($extraOptions['timeout']) ? (int) $extraOptions['timeout'] : 0; |
|
995 | 995 | $protocol = isset($extraOptions['protocol']) ? $extraOptions['protocol'] : ''; |
996 | 996 | $newClassName = isset($extraOptions['new_class_name']) ? $extraOptions['new_class_name'] : ''; |
997 | - $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool)$extraOptions['encode_php_objs'] : false; |
|
998 | - $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool)$extraOptions['decode_php_objs'] : false; |
|
997 | + $encodePhpObjects = isset($extraOptions['encode_php_objs']) ? (bool) $extraOptions['encode_php_objs'] : false; |
|
998 | + $decodePhpObjects = isset($extraOptions['decode_php_objs']) ? (bool) $extraOptions['decode_php_objs'] : false; |
|
999 | 999 | $verbatimClientCopy = isset($extraOptions['simple_client_copy']) ? !($extraOptions['simple_client_copy']) : true; |
1000 | 1000 | $buildIt = isset($extraOptions['return_source']) ? !($extraOptions['return_source']) : true; |
1001 | 1001 | $prefix = isset($extraOptions['prefix']) ? $extraOptions['prefix'] : 'xmlrpc'; |
1002 | 1002 | $namespace = '\\PhpXmlRpc\\'; |
1003 | 1003 | |
1004 | - $reqClass = $namespace . 'Request'; |
|
1005 | - $decoderClass = $namespace . 'Encoder'; |
|
1004 | + $reqClass = $namespace.'Request'; |
|
1005 | + $decoderClass = $namespace.'Encoder'; |
|
1006 | 1006 | |
1007 | 1007 | $req = new $reqClass('system.listMethods'); |
1008 | 1008 | $response = $client->send($req, $timeout, $protocol); |
1009 | 1009 | if ($response->faultCode()) { |
1010 | - error_log('XML-RPC: ' . __METHOD__ . ': could not retrieve method list from remote server'); |
|
1010 | + error_log('XML-RPC: '.__METHOD__.': could not retrieve method list from remote server'); |
|
1011 | 1011 | |
1012 | 1012 | return false; |
1013 | 1013 | } else { |
@@ -1017,7 +1017,7 @@ discard block |
||
1017 | 1017 | $mList = $decoder->decode($mList); |
1018 | 1018 | } |
1019 | 1019 | if (!is_array($mList) || !count($mList)) { |
1020 | - error_log('XML-RPC: ' . __METHOD__ . ': could not retrieve meaningful method list from remote server'); |
|
1020 | + error_log('XML-RPC: '.__METHOD__.': could not retrieve meaningful method list from remote server'); |
|
1021 | 1021 | |
1022 | 1022 | return false; |
1023 | 1023 | } else { |
@@ -1025,8 +1025,8 @@ discard block |
||
1025 | 1025 | if ($newClassName != '') { |
1026 | 1026 | $xmlrpcClassName = $newClassName; |
1027 | 1027 | } else { |
1028 | - $xmlrpcClassName = $prefix . '_' . preg_replace(array('/\./', '/[^a-zA-Z0-9_\x7f-\xff]/'), |
|
1029 | - array('_', ''), $client->server) . '_client'; |
|
1028 | + $xmlrpcClassName = $prefix.'_'.preg_replace(array('/\./', '/[^a-zA-Z0-9_\x7f-\xff]/'), |
|
1029 | + array('_', ''), $client->server).'_client'; |
|
1030 | 1030 | } |
1031 | 1031 | while ($buildIt && class_exists($xmlrpcClassName)) { |
1032 | 1032 | $xmlrpcClassName .= 'x'; |
@@ -1057,20 +1057,20 @@ discard block |
||
1057 | 1057 | if (!$buildIt) { |
1058 | 1058 | $source .= $methodWrap['docstring']; |
1059 | 1059 | } |
1060 | - $source .= $methodWrap['source'] . "\n"; |
|
1060 | + $source .= $methodWrap['source']."\n"; |
|
1061 | 1061 | } else { |
1062 | - error_log('XML-RPC: ' . __METHOD__ . ': will not create class method to wrap remote method ' . $mName); |
|
1062 | + error_log('XML-RPC: '.__METHOD__.': will not create class method to wrap remote method '.$mName); |
|
1063 | 1063 | } |
1064 | 1064 | } |
1065 | 1065 | } |
1066 | 1066 | $source .= "}\n"; |
1067 | 1067 | if ($buildIt) { |
1068 | 1068 | $allOK = 0; |
1069 | - eval($source . '$allOK=1;'); |
|
1069 | + eval($source.'$allOK=1;'); |
|
1070 | 1070 | if ($allOK) { |
1071 | 1071 | return $xmlrpcClassName; |
1072 | 1072 | } else { |
1073 | - error_log('XML-RPC: ' . __METHOD__ . ': could not create class ' . $xmlrpcClassName . ' to wrap remote server ' . $client->server); |
|
1073 | + error_log('XML-RPC: '.__METHOD__.': could not create class '.$xmlrpcClassName.' to wrap remote server '.$client->server); |
|
1074 | 1074 | return false; |
1075 | 1075 | } |
1076 | 1076 | } else { |
@@ -1091,10 +1091,10 @@ discard block |
||
1091 | 1091 | * |
1092 | 1092 | * @return string |
1093 | 1093 | */ |
1094 | - protected function buildClientWrapperCode($client, $verbatimClientCopy, $prefix = 'xmlrpc', $namespace = '\\PhpXmlRpc\\' ) |
|
1094 | + protected function buildClientWrapperCode($client, $verbatimClientCopy, $prefix = 'xmlrpc', $namespace = '\\PhpXmlRpc\\') |
|
1095 | 1095 | { |
1096 | - $code = "\$client = new {$namespace}Client('" . str_replace("'", "\'", $client->path) . |
|
1097 | - "', '" . str_replace("'", "\'", $client->server) . "', $client->port);\n"; |
|
1096 | + $code = "\$client = new {$namespace}Client('".str_replace("'", "\'", $client->path). |
|
1097 | + "', '".str_replace("'", "\'", $client->server)."', $client->port);\n"; |
|
1098 | 1098 | |
1099 | 1099 | // copy all client fields to the client that will be generated runtime |
1100 | 1100 | // (this provides for future expansion or subclassing of client obj) |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | public function xmlrpc_se($parser, $name, $attrs, $acceptSingleVals = false) |
67 | 67 | { |
68 | 68 | // if invalid xmlrpc already detected, skip all processing |
69 | - if ($this->_xh['isf'] < 2) { |
|
69 | + if ($this->_xh['isf']<2) { |
|
70 | 70 | // check for correct element nesting |
71 | 71 | // top level element can only be of 2 types |
72 | 72 | /// @todo optimization creep: save this check into a bool variable, instead of using count() every time: |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | $this->_xh['isf'] = 1; |
172 | 172 | break; |
173 | 173 | case 'MEMBER': |
174 | - $this->_xh['valuestack'][count($this->_xh['valuestack']) - 1]['name'] = ''; // set member name to null, in case we do not find in the xml later on |
|
174 | + $this->_xh['valuestack'][count($this->_xh['valuestack'])-1]['name'] = ''; // set member name to null, in case we do not find in the xml later on |
|
175 | 175 | //$this->_xh['ac']=''; |
176 | 176 | // Drop trough intentionally |
177 | 177 | case 'PARAM': |
@@ -223,7 +223,7 @@ discard block |
||
223 | 223 | */ |
224 | 224 | public function xmlrpc_ee($parser, $name, $rebuildXmlrpcvals = true) |
225 | 225 | { |
226 | - if ($this->_xh['isf'] < 2) { |
|
226 | + if ($this->_xh['isf']<2) { |
|
227 | 227 | // push this element name from stack |
228 | 228 | // NB: if XML validates, correct opening/closing is guaranteed and |
229 | 229 | // we do not have to check for $name == $currElem. |
@@ -249,8 +249,8 @@ discard block |
||
249 | 249 | // check if we are inside an array or struct: |
250 | 250 | // if value just built is inside an array, let's move it into array on the stack |
251 | 251 | $vscount = count($this->_xh['valuestack']); |
252 | - if ($vscount && $this->_xh['valuestack'][$vscount - 1]['type'] == 'ARRAY') { |
|
253 | - $this->_xh['valuestack'][$vscount - 1]['values'][] = $temp; |
|
252 | + if ($vscount && $this->_xh['valuestack'][$vscount-1]['type'] == 'ARRAY') { |
|
253 | + $this->_xh['valuestack'][$vscount-1]['values'][] = $temp; |
|
254 | 254 | } else { |
255 | 255 | $this->_xh['value'] = $temp; |
256 | 256 | } |
@@ -264,8 +264,8 @@ discard block |
||
264 | 264 | // check if we are inside an array or struct: |
265 | 265 | // if value just built is inside an array, let's move it into array on the stack |
266 | 266 | $vscount = count($this->_xh['valuestack']); |
267 | - if ($vscount && $this->_xh['valuestack'][$vscount - 1]['type'] == 'ARRAY') { |
|
268 | - $this->_xh['valuestack'][$vscount - 1]['values'][] = $this->_xh['value']; |
|
267 | + if ($vscount && $this->_xh['valuestack'][$vscount-1]['type'] == 'ARRAY') { |
|
268 | + $this->_xh['valuestack'][$vscount-1]['values'][] = $this->_xh['value']; |
|
269 | 269 | } |
270 | 270 | } |
271 | 271 | break; |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | $this->_xh['value'] = $this->_xh['ac']; |
286 | 286 | } elseif ($name == 'DATETIME.ISO8601') { |
287 | 287 | if (!preg_match('/^[0-9]{8}T[0-9]{2}:[0-9]{2}:[0-9]{2}$/', $this->_xh['ac'])) { |
288 | - error_log('XML-RPC: ' . __METHOD__ . ': invalid value received in DATETIME: ' . $this->_xh['ac']); |
|
288 | + error_log('XML-RPC: '.__METHOD__.': invalid value received in DATETIME: '.$this->_xh['ac']); |
|
289 | 289 | } |
290 | 290 | $this->_xh['vt'] = Value::$xmlrpcDateTime; |
291 | 291 | $this->_xh['value'] = $this->_xh['ac']; |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | } else { |
305 | 305 | // log if receiving something strange, even though we set the value to false anyway |
306 | 306 | if ($this->_xh['ac'] != '0' && strcasecmp($this->_xh['ac'], 'false') != 0) { |
307 | - error_log('XML-RPC: ' . __METHOD__ . ': invalid value received in BOOLEAN: ' . $this->_xh['ac']); |
|
307 | + error_log('XML-RPC: '.__METHOD__.': invalid value received in BOOLEAN: '.$this->_xh['ac']); |
|
308 | 308 | } |
309 | 309 | $this->_xh['value'] = false; |
310 | 310 | } |
@@ -314,37 +314,37 @@ discard block |
||
314 | 314 | // NOTE: regexp could be much stricter than this... |
315 | 315 | if (!preg_match('/^[+-eE0123456789 \t.]+$/', $this->_xh['ac'])) { |
316 | 316 | /// @todo: find a better way of throwing an error than this! |
317 | - error_log('XML-RPC: ' . __METHOD__ . ': non numeric value received in DOUBLE: ' . $this->_xh['ac']); |
|
317 | + error_log('XML-RPC: '.__METHOD__.': non numeric value received in DOUBLE: '.$this->_xh['ac']); |
|
318 | 318 | $this->_xh['value'] = 'ERROR_NON_NUMERIC_FOUND'; |
319 | 319 | } else { |
320 | 320 | // it's ok, add it on |
321 | - $this->_xh['value'] = (double)$this->_xh['ac']; |
|
321 | + $this->_xh['value'] = (double) $this->_xh['ac']; |
|
322 | 322 | } |
323 | 323 | } else { |
324 | 324 | // we have an I4/I8/INT |
325 | 325 | // we must check that only 0123456789-<space> are characters here |
326 | 326 | if (!preg_match('/^[+-]?[0123456789 \t]+$/', $this->_xh['ac'])) { |
327 | 327 | /// @todo find a better way of throwing an error than this! |
328 | - error_log('XML-RPC: ' . __METHOD__ . ': non numeric value received in INT: ' . $this->_xh['ac']); |
|
328 | + error_log('XML-RPC: '.__METHOD__.': non numeric value received in INT: '.$this->_xh['ac']); |
|
329 | 329 | $this->_xh['value'] = 'ERROR_NON_NUMERIC_FOUND'; |
330 | 330 | } else { |
331 | 331 | // it's ok, add it on |
332 | - $this->_xh['value'] = (int)$this->_xh['ac']; |
|
332 | + $this->_xh['value'] = (int) $this->_xh['ac']; |
|
333 | 333 | } |
334 | 334 | } |
335 | 335 | $this->_xh['lv'] = 3; // indicate we've found a value |
336 | 336 | break; |
337 | 337 | case 'NAME': |
338 | - $this->_xh['valuestack'][count($this->_xh['valuestack']) - 1]['name'] = $this->_xh['ac']; |
|
338 | + $this->_xh['valuestack'][count($this->_xh['valuestack'])-1]['name'] = $this->_xh['ac']; |
|
339 | 339 | break; |
340 | 340 | case 'MEMBER': |
341 | 341 | // add to array in the stack the last element built, |
342 | 342 | // unless no VALUE was found |
343 | 343 | if ($this->_xh['vt']) { |
344 | 344 | $vscount = count($this->_xh['valuestack']); |
345 | - $this->_xh['valuestack'][$vscount - 1]['values'][$this->_xh['valuestack'][$vscount - 1]['name']] = $this->_xh['value']; |
|
345 | + $this->_xh['valuestack'][$vscount-1]['values'][$this->_xh['valuestack'][$vscount-1]['name']] = $this->_xh['value']; |
|
346 | 346 | } else { |
347 | - error_log('XML-RPC: ' . __METHOD__ . ': missing VALUE inside STRUCT in received xml'); |
|
347 | + error_log('XML-RPC: '.__METHOD__.': missing VALUE inside STRUCT in received xml'); |
|
348 | 348 | } |
349 | 349 | break; |
350 | 350 | case 'DATA': |
@@ -367,7 +367,7 @@ discard block |
||
367 | 367 | $this->_xh['params'][] = $this->_xh['value']; |
368 | 368 | $this->_xh['pt'][] = $this->_xh['vt']; |
369 | 369 | } else { |
370 | - error_log('XML-RPC: ' . __METHOD__ . ': missing VALUE inside PARAM in received xml'); |
|
370 | + error_log('XML-RPC: '.__METHOD__.': missing VALUE inside PARAM in received xml'); |
|
371 | 371 | } |
372 | 372 | break; |
373 | 373 | case 'METHODNAME': |
@@ -409,7 +409,7 @@ discard block |
||
409 | 409 | public function xmlrpc_cd($parser, $data) |
410 | 410 | { |
411 | 411 | // skip processing if xml fault already detected |
412 | - if ($this->_xh['isf'] < 2) { |
|
412 | + if ($this->_xh['isf']<2) { |
|
413 | 413 | // "lookforvalue==3" means that we've found an entire value |
414 | 414 | // and should discard any further character data |
415 | 415 | if ($this->_xh['lv'] != 3) { |
@@ -425,7 +425,7 @@ discard block |
||
425 | 425 | public function xmlrpc_dh($parser, $data) |
426 | 426 | { |
427 | 427 | // skip processing if xml fault already detected |
428 | - if ($this->_xh['isf'] < 2) { |
|
428 | + if ($this->_xh['isf']<2) { |
|
429 | 429 | if (substr($data, 0, 1) == '&' && substr($data, -1, 1) == ';') { |
430 | 430 | $this->_xh['ac'] .= $data; |
431 | 431 | } |
@@ -496,8 +496,8 @@ discard block |
||
496 | 496 | // Details: |
497 | 497 | // SPACE: (#x20 | #x9 | #xD | #xA)+ === [ \x9\xD\xA]+ |
498 | 498 | // EQ: SPACE?=SPACE? === [ \x9\xD\xA]*=[ \x9\xD\xA]* |
499 | - if (preg_match('/^<\?xml\s+version\s*=\s*' . "((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))" . |
|
500 | - '\s+encoding\s*=\s*' . "((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/", |
|
499 | + if (preg_match('/^<\?xml\s+version\s*=\s*'."((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))". |
|
500 | + '\s+encoding\s*=\s*'."((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/", |
|
501 | 501 | $xmlChunk, $matches)) { |
502 | 502 | return strtoupper(substr($matches[2], 1, -1)); |
503 | 503 | } |
@@ -515,7 +515,7 @@ discard block |
||
515 | 515 | // NB: mb_detect likes to call it ascii, xml parser likes to call it US_ASCII... |
516 | 516 | // IANA also likes better US-ASCII, so go with it |
517 | 517 | if ($enc == 'ASCII') { |
518 | - $enc = 'US-' . $enc; |
|
518 | + $enc = 'US-'.$enc; |
|
519 | 519 | } |
520 | 520 | |
521 | 521 | return $enc; |
@@ -550,8 +550,8 @@ discard block |
||
550 | 550 | // Details: |
551 | 551 | // SPACE: (#x20 | #x9 | #xD | #xA)+ === [ \x9\xD\xA]+ |
552 | 552 | // EQ: SPACE?=SPACE? === [ \x9\xD\xA]*=[ \x9\xD\xA]* |
553 | - if (preg_match('/^<\?xml\s+version\s*=\s*' . "((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))" . |
|
554 | - '\s+encoding\s*=\s*' . "((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/", |
|
553 | + if (preg_match('/^<\?xml\s+version\s*=\s*'."((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))". |
|
554 | + '\s+encoding\s*=\s*'."((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/", |
|
555 | 555 | $xmlChunk, $matches)) { |
556 | 556 | return true; |
557 | 557 | } |