@@ -34,11 +34,11 @@ discard block |
||
| 34 | 34 | // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 35 | 35 | // OF THE POSSIBILITY OF SUCH DAMAGE. |
| 36 | 36 | |
| 37 | - if(!function_exists('xml_parser_create'))
|
|
| 37 | + if (!function_exists('xml_parser_create'))
|
|
| 38 | 38 | {
|
| 39 | 39 | // For PHP 4 onward, XML functionality is always compiled-in on windows: |
| 40 | 40 | // no more need to dl-open it. It might have been compiled out on *nix... |
| 41 | - if(strtoupper(substr(PHP_OS, 0, 3) != 'WIN')) |
|
| 41 | + if (strtoupper(substr(PHP_OS, 0, 3) != 'WIN')) |
|
| 42 | 42 | {
|
| 43 | 43 | dl('xml.so');
|
| 44 | 44 | } |
@@ -47,18 +47,18 @@ discard block |
||
| 47 | 47 | // G. Giunta 2005/01/29: declare global these variables, |
| 48 | 48 | // so that xmlrpc.inc will work even if included from within a function |
| 49 | 49 | // Milosch: 2005/08/07 - explicitly request these via $GLOBALS where used. |
| 50 | - $GLOBALS['xmlrpcI4']='i4'; |
|
| 51 | - $GLOBALS['xmlrpcInt']='int'; |
|
| 52 | - $GLOBALS['xmlrpcBoolean']='boolean'; |
|
| 53 | - $GLOBALS['xmlrpcDouble']='double'; |
|
| 54 | - $GLOBALS['xmlrpcString']='string'; |
|
| 55 | - $GLOBALS['xmlrpcDateTime']='dateTime.iso8601'; |
|
| 56 | - $GLOBALS['xmlrpcBase64']='base64'; |
|
| 57 | - $GLOBALS['xmlrpcArray']='array'; |
|
| 58 | - $GLOBALS['xmlrpcStruct']='struct'; |
|
| 59 | - $GLOBALS['xmlrpcValue']='undefined'; |
|
| 60 | - |
|
| 61 | - $GLOBALS['xmlrpcTypes']=array( |
|
| 50 | + $GLOBALS['xmlrpcI4'] = 'i4'; |
|
| 51 | + $GLOBALS['xmlrpcInt'] = 'int'; |
|
| 52 | + $GLOBALS['xmlrpcBoolean'] = 'boolean'; |
|
| 53 | + $GLOBALS['xmlrpcDouble'] = 'double'; |
|
| 54 | + $GLOBALS['xmlrpcString'] = 'string'; |
|
| 55 | + $GLOBALS['xmlrpcDateTime'] = 'dateTime.iso8601'; |
|
| 56 | + $GLOBALS['xmlrpcBase64'] = 'base64'; |
|
| 57 | + $GLOBALS['xmlrpcArray'] = 'array'; |
|
| 58 | + $GLOBALS['xmlrpcStruct'] = 'struct'; |
|
| 59 | + $GLOBALS['xmlrpcValue'] = 'undefined'; |
|
| 60 | + |
|
| 61 | + $GLOBALS['xmlrpcTypes'] = array( |
|
| 62 | 62 | $GLOBALS['xmlrpcI4'] => 1, |
| 63 | 63 | $GLOBALS['xmlrpcInt'] => 1, |
| 64 | 64 | $GLOBALS['xmlrpcBoolean'] => 1, |
@@ -93,12 +93,12 @@ discard block |
||
| 93 | 93 | ); |
| 94 | 94 | |
| 95 | 95 | // define extra types for supporting NULL (useful for json or <NIL/>) |
| 96 | - $GLOBALS['xmlrpcNull']='null'; |
|
| 97 | - $GLOBALS['xmlrpcTypes']['null']=1; |
|
| 96 | + $GLOBALS['xmlrpcNull'] = 'null'; |
|
| 97 | + $GLOBALS['xmlrpcTypes']['null'] = 1; |
|
| 98 | 98 | |
| 99 | 99 | // Not in use anymore since 2.0. Shall we remove it? |
| 100 | 100 | /// @deprecated |
| 101 | - $GLOBALS['xmlEntities']=array( |
|
| 101 | + $GLOBALS['xmlEntities'] = array( |
|
| 102 | 102 | 'amp' => '&', |
| 103 | 103 | 'quot' => '"', |
| 104 | 104 | 'lt' => '<', |
@@ -108,15 +108,15 @@ discard block |
||
| 108 | 108 | |
| 109 | 109 | // tables used for transcoding different charsets into us-ascii xml |
| 110 | 110 | |
| 111 | - $GLOBALS['xml_iso88591_Entities']=array(); |
|
| 111 | + $GLOBALS['xml_iso88591_Entities'] = array(); |
|
| 112 | 112 | $GLOBALS['xml_iso88591_Entities']['in'] = array(); |
| 113 | 113 | $GLOBALS['xml_iso88591_Entities']['out'] = array(); |
| 114 | - for ($i = 0; $i < 32; $i++) |
|
| 114 | + for ($i = 0; $i<32; $i++) |
|
| 115 | 115 | {
|
| 116 | 116 | $GLOBALS['xml_iso88591_Entities']['in'][] = chr($i); |
| 117 | 117 | $GLOBALS['xml_iso88591_Entities']['out'][] = '&#'.$i.';'; |
| 118 | 118 | } |
| 119 | - for ($i = 160; $i < 256; $i++) |
|
| 119 | + for ($i = 160; $i<256; $i++) |
|
| 120 | 120 | {
|
| 121 | 121 | $GLOBALS['xml_iso88591_Entities']['in'][] = chr($i); |
| 122 | 122 | $GLOBALS['xml_iso88591_Entities']['out'][] = '&#'.$i.';'; |
@@ -200,32 +200,32 @@ discard block |
||
| 200 | 200 | // The charset encoding used by the server for received messages and |
| 201 | 201 | // by the client for received responses when received charset cannot be determined |
| 202 | 202 | // or is not supported |
| 203 | - $GLOBALS['xmlrpc_defencoding']='UTF-8'; |
|
| 203 | + $GLOBALS['xmlrpc_defencoding'] = 'UTF-8'; |
|
| 204 | 204 | |
| 205 | 205 | // The encoding used internally by PHP. |
| 206 | 206 | // String values received as xml will be converted to this, and php strings will be converted to xml |
| 207 | 207 | // as if having been coded with this |
| 208 | - $GLOBALS['xmlrpc_internalencoding']='ISO-8859-1'; |
|
| 208 | + $GLOBALS['xmlrpc_internalencoding'] = 'ISO-8859-1'; |
|
| 209 | 209 | |
| 210 | - $GLOBALS['xmlrpcName']='XML-RPC for PHP'; |
|
| 211 | - $GLOBALS['xmlrpcVersion']='3.1.1'; |
|
| 210 | + $GLOBALS['xmlrpcName'] = 'XML-RPC for PHP'; |
|
| 211 | + $GLOBALS['xmlrpcVersion'] = '3.1.1'; |
|
| 212 | 212 | |
| 213 | 213 | // let user errors start at 800 |
| 214 | - $GLOBALS['xmlrpcerruser']=800; |
|
| 214 | + $GLOBALS['xmlrpcerruser'] = 800; |
|
| 215 | 215 | // let XML parse errors start at 100 |
| 216 | - $GLOBALS['xmlrpcerrxml']=100; |
|
| 216 | + $GLOBALS['xmlrpcerrxml'] = 100; |
|
| 217 | 217 | |
| 218 | 218 | // formulate backslashes for escaping regexp |
| 219 | 219 | // Not in use anymore since 2.0. Shall we remove it? |
| 220 | 220 | /// @deprecated |
| 221 | - $GLOBALS['xmlrpc_backslash']=chr(92).chr(92); |
|
| 221 | + $GLOBALS['xmlrpc_backslash'] = chr(92).chr(92); |
|
| 222 | 222 | |
| 223 | 223 | // set to TRUE to enable correct decoding of <NIL/> and <EX:NIL/> values |
| 224 | - $GLOBALS['xmlrpc_null_extension']=false; |
|
| 224 | + $GLOBALS['xmlrpc_null_extension'] = false; |
|
| 225 | 225 | |
| 226 | 226 | // set to TRUE to enable encoding of php NULL values to <EX:NIL/> instead of <NIL/> |
| 227 | - $GLOBALS['xmlrpc_null_apache_encoding']=false; |
|
| 228 | - $GLOBALS['xmlrpc_null_apache_encoding_ns']='http://ws.apache.org/xmlrpc/namespaces/extensions'; |
|
| 227 | + $GLOBALS['xmlrpc_null_apache_encoding'] = false; |
|
| 228 | + $GLOBALS['xmlrpc_null_apache_encoding_ns'] = 'http://ws.apache.org/xmlrpc/namespaces/extensions'; |
|
| 229 | 229 | |
| 230 | 230 | // used to store state during parsing |
| 231 | 231 | // quick explanation of components: |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | // method - used to store method name |
| 239 | 239 | // stack - array with genealogy of xml elements names: |
| 240 | 240 | // used to validate nesting of xmlrpc elements |
| 241 | - $GLOBALS['_xh']=null; |
|
| 241 | + $GLOBALS['_xh'] = null; |
|
| 242 | 242 | |
| 243 | 243 | /** |
| 244 | 244 | * Convert a string to the correct XML representation in a target charset |
@@ -254,7 +254,7 @@ discard block |
||
| 254 | 254 | * @todo do a bit of basic benchmarking (strtr vs. str_replace) |
| 255 | 255 | * @todo make usage of iconv() or recode_string() or mb_string() where available |
| 256 | 256 | */ |
| 257 | - function xmlrpc_encode_entitites($data, $src_encoding='', $dest_encoding='') |
|
| 257 | + function xmlrpc_encode_entitites($data, $src_encoding = '', $dest_encoding = '') |
|
| 258 | 258 | {
|
| 259 | 259 | if ($src_encoding == '') |
| 260 | 260 | {
|
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | $src_encoding = $GLOBALS['xmlrpc_internalencoding']; |
| 263 | 263 | } |
| 264 | 264 | |
| 265 | - switch(strtoupper($src_encoding.'_'.$dest_encoding)) |
|
| 265 | + switch (strtoupper($src_encoding.'_'.$dest_encoding)) |
|
| 266 | 266 | {
|
| 267 | 267 | case 'ISO-8859-1_': |
| 268 | 268 | case 'ISO-8859-1_US-ASCII': |
@@ -289,16 +289,16 @@ discard block |
||
| 289 | 289 | $escaped_data = ''; |
| 290 | 290 | // be kind to users creating string xmlrpcvals out of different php types |
| 291 | 291 | $data = (string) $data; |
| 292 | - $ns = strlen ($data); |
|
| 293 | - for ($nn = 0; $nn < $ns; $nn++) |
|
| 292 | + $ns = strlen($data); |
|
| 293 | + for ($nn = 0; $nn<$ns; $nn++) |
|
| 294 | 294 | {
|
| 295 | 295 | $ch = $data[$nn]; |
| 296 | 296 | $ii = ord($ch); |
| 297 | 297 | //1 7 0bbbbbbb (127) |
| 298 | - if ($ii < 128) |
|
| 298 | + if ($ii<128) |
|
| 299 | 299 | {
|
| 300 | 300 | /// @todo shall we replace this with a (supposedly) faster str_replace? |
| 301 | - switch($ii){
|
|
| 301 | + switch ($ii) {
|
|
| 302 | 302 | case 34: |
| 303 | 303 | $escaped_data .= '"'; |
| 304 | 304 | break; |
@@ -319,31 +319,31 @@ discard block |
||
| 319 | 319 | } // switch |
| 320 | 320 | } |
| 321 | 321 | //2 11 110bbbbb 10bbbbbb (2047) |
| 322 | - else if ($ii>>5 == 6) |
|
| 322 | + else if ($ii >> 5 == 6) |
|
| 323 | 323 | {
|
| 324 | 324 | $b1 = ($ii & 31); |
| 325 | 325 | $ii = ord($data[$nn+1]); |
| 326 | 326 | $b2 = ($ii & 63); |
| 327 | - $ii = ($b1 * 64) + $b2; |
|
| 328 | - $ent = sprintf ('&#%d;', $ii);
|
|
| 327 | + $ii = ($b1 * 64)+$b2; |
|
| 328 | + $ent = sprintf('&#%d;', $ii);
|
|
| 329 | 329 | $escaped_data .= $ent; |
| 330 | 330 | $nn += 1; |
| 331 | 331 | } |
| 332 | 332 | //3 16 1110bbbb 10bbbbbb 10bbbbbb |
| 333 | - else if ($ii>>4 == 14) |
|
| 333 | + else if ($ii >> 4 == 14) |
|
| 334 | 334 | {
|
| 335 | 335 | $b1 = ($ii & 15); |
| 336 | 336 | $ii = ord($data[$nn+1]); |
| 337 | 337 | $b2 = ($ii & 63); |
| 338 | 338 | $ii = ord($data[$nn+2]); |
| 339 | 339 | $b3 = ($ii & 63); |
| 340 | - $ii = ((($b1 * 64) + $b2) * 64) + $b3; |
|
| 341 | - $ent = sprintf ('&#%d;', $ii);
|
|
| 340 | + $ii = ((($b1 * 64)+$b2) * 64)+$b3; |
|
| 341 | + $ent = sprintf('&#%d;', $ii);
|
|
| 342 | 342 | $escaped_data .= $ent; |
| 343 | 343 | $nn += 2; |
| 344 | 344 | } |
| 345 | 345 | //4 21 11110bbb 10bbbbbb 10bbbbbb 10bbbbbb |
| 346 | - else if ($ii>>3 == 30) |
|
| 346 | + else if ($ii >> 3 == 30) |
|
| 347 | 347 | {
|
| 348 | 348 | $b1 = ($ii & 7); |
| 349 | 349 | $ii = ord($data[$nn+1]); |
@@ -352,8 +352,8 @@ discard block |
||
| 352 | 352 | $b3 = ($ii & 63); |
| 353 | 353 | $ii = ord($data[$nn+3]); |
| 354 | 354 | $b4 = ($ii & 63); |
| 355 | - $ii = ((((($b1 * 64) + $b2) * 64) + $b3) * 64) + $b4; |
|
| 356 | - $ent = sprintf ('&#%d;', $ii);
|
|
| 355 | + $ii = ((((($b1 * 64)+$b2) * 64)+$b3) * 64)+$b4; |
|
| 356 | + $ent = sprintf('&#%d;', $ii);
|
|
| 357 | 357 | $escaped_data .= $ent; |
| 358 | 358 | $nn += 3; |
| 359 | 359 | } |
@@ -386,10 +386,10 @@ discard block |
||
| 386 | 386 | } |
| 387 | 387 | |
| 388 | 388 | /// xml parser handler function for opening element tags |
| 389 | - function xmlrpc_se($parser, $name, $attrs, $accept_single_vals=false) |
|
| 389 | + function xmlrpc_se($parser, $name, $attrs, $accept_single_vals = false) |
|
| 390 | 390 | {
|
| 391 | 391 | // if invalid xmlrpc already detected, skip all processing |
| 392 | - if ($GLOBALS['_xh']['isf'] < 2) |
|
| 392 | + if ($GLOBALS['_xh']['isf']<2) |
|
| 393 | 393 | {
|
| 394 | 394 | // check for correct element nesting |
| 395 | 395 | // top level element can only be of 2 types |
@@ -422,15 +422,15 @@ discard block |
||
| 422 | 422 | } |
| 423 | 423 | } |
| 424 | 424 | |
| 425 | - switch($name) |
|
| 425 | + switch ($name) |
|
| 426 | 426 | {
|
| 427 | 427 | // optimize for speed switch cases: most common cases first |
| 428 | 428 | case 'VALUE': |
| 429 | 429 | /// @todo we could check for 2 VALUE elements inside a MEMBER or PARAM element |
| 430 | - $GLOBALS['_xh']['vt']='value'; // indicator: no value found yet |
|
| 431 | - $GLOBALS['_xh']['ac']=''; |
|
| 432 | - $GLOBALS['_xh']['lv']=1; |
|
| 433 | - $GLOBALS['_xh']['php_class']=null; |
|
| 430 | + $GLOBALS['_xh']['vt'] = 'value'; // indicator: no value found yet |
|
| 431 | + $GLOBALS['_xh']['ac'] = ''; |
|
| 432 | + $GLOBALS['_xh']['lv'] = 1; |
|
| 433 | + $GLOBALS['_xh']['php_class'] = null; |
|
| 434 | 434 | break; |
| 435 | 435 | case 'I4': |
| 436 | 436 | case 'INT': |
@@ -439,18 +439,18 @@ discard block |
||
| 439 | 439 | case 'DOUBLE': |
| 440 | 440 | case 'DATETIME.ISO8601': |
| 441 | 441 | case 'BASE64': |
| 442 | - if ($GLOBALS['_xh']['vt']!='value') |
|
| 442 | + if ($GLOBALS['_xh']['vt'] != 'value') |
|
| 443 | 443 | {
|
| 444 | 444 | //two data elements inside a value: an error occurred! |
| 445 | 445 | $GLOBALS['_xh']['isf'] = 2; |
| 446 | 446 | $GLOBALS['_xh']['isf_reason'] = "$name element following a {$GLOBALS['_xh']['vt']} element inside a single value";
|
| 447 | 447 | return; |
| 448 | 448 | } |
| 449 | - $GLOBALS['_xh']['ac']=''; // reset the accumulator |
|
| 449 | + $GLOBALS['_xh']['ac'] = ''; // reset the accumulator |
|
| 450 | 450 | break; |
| 451 | 451 | case 'STRUCT': |
| 452 | 452 | case 'ARRAY': |
| 453 | - if ($GLOBALS['_xh']['vt']!='value') |
|
| 453 | + if ($GLOBALS['_xh']['vt'] != 'value') |
|
| 454 | 454 | {
|
| 455 | 455 | //two data elements inside a value: an error occurred! |
| 456 | 456 | $GLOBALS['_xh']['isf'] = 2; |
@@ -468,10 +468,10 @@ discard block |
||
| 468 | 468 | $cur_val['php_class'] = $attrs['PHP_CLASS']; |
| 469 | 469 | } |
| 470 | 470 | $GLOBALS['_xh']['valuestack'][] = $cur_val; |
| 471 | - $GLOBALS['_xh']['vt']='data'; // be prepared for a data element next |
|
| 471 | + $GLOBALS['_xh']['vt'] = 'data'; // be prepared for a data element next |
|
| 472 | 472 | break; |
| 473 | 473 | case 'DATA': |
| 474 | - if ($GLOBALS['_xh']['vt']!='data') |
|
| 474 | + if ($GLOBALS['_xh']['vt'] != 'data') |
|
| 475 | 475 | {
|
| 476 | 476 | //two data elements inside a value: an error occurred! |
| 477 | 477 | $GLOBALS['_xh']['isf'] = 2; |
@@ -486,31 +486,31 @@ discard block |
||
| 486 | 486 | case 'METHODNAME': |
| 487 | 487 | case 'NAME': |
| 488 | 488 | /// @todo we could check for 2 NAME elements inside a MEMBER element |
| 489 | - $GLOBALS['_xh']['ac']=''; |
|
| 489 | + $GLOBALS['_xh']['ac'] = ''; |
|
| 490 | 490 | break; |
| 491 | 491 | case 'FAULT': |
| 492 | - $GLOBALS['_xh']['isf']=1; |
|
| 492 | + $GLOBALS['_xh']['isf'] = 1; |
|
| 493 | 493 | break; |
| 494 | 494 | case 'MEMBER': |
| 495 | - $GLOBALS['_xh']['valuestack'][count($GLOBALS['_xh']['valuestack'])-1]['name']=''; // set member name to null, in case we do not find in the xml later on |
|
| 495 | + $GLOBALS['_xh']['valuestack'][count($GLOBALS['_xh']['valuestack'])-1]['name'] = ''; // set member name to null, in case we do not find in the xml later on |
|
| 496 | 496 | //$GLOBALS['_xh']['ac']=''; |
| 497 | 497 | // Drop trough intentionally |
| 498 | 498 | case 'PARAM': |
| 499 | 499 | // clear value type, so we can check later if no value has been passed for this param/member |
| 500 | - $GLOBALS['_xh']['vt']=null; |
|
| 500 | + $GLOBALS['_xh']['vt'] = null; |
|
| 501 | 501 | break; |
| 502 | 502 | case 'NIL': |
| 503 | 503 | case 'EX:NIL': |
| 504 | 504 | if ($GLOBALS['xmlrpc_null_extension']) |
| 505 | 505 | {
|
| 506 | - if ($GLOBALS['_xh']['vt']!='value') |
|
| 506 | + if ($GLOBALS['_xh']['vt'] != 'value') |
|
| 507 | 507 | {
|
| 508 | 508 | //two data elements inside a value: an error occurred! |
| 509 | 509 | $GLOBALS['_xh']['isf'] = 2; |
| 510 | 510 | $GLOBALS['_xh']['isf_reason'] = "$name element following a {$GLOBALS['_xh']['vt']} element inside a single value";
|
| 511 | 511 | return; |
| 512 | 512 | } |
| 513 | - $GLOBALS['_xh']['ac']=''; // reset the accumulator |
|
| 513 | + $GLOBALS['_xh']['ac'] = ''; // reset the accumulator |
|
| 514 | 514 | break; |
| 515 | 515 | } |
| 516 | 516 | // we do not support the <NIL/> extension, so |
@@ -526,9 +526,9 @@ discard block |
||
| 526 | 526 | $GLOBALS['_xh']['stack'][] = $name; |
| 527 | 527 | |
| 528 | 528 | /// @todo optimization creep: move this inside the big switch() above |
| 529 | - if($name!='VALUE') |
|
| 529 | + if ($name != 'VALUE') |
|
| 530 | 530 | {
|
| 531 | - $GLOBALS['_xh']['lv']=0; |
|
| 531 | + $GLOBALS['_xh']['lv'] = 0; |
|
| 532 | 532 | } |
| 533 | 533 | } |
| 534 | 534 | } |
@@ -542,7 +542,7 @@ discard block |
||
| 542 | 542 | /// xml parser handler function for close element tags |
| 543 | 543 | function xmlrpc_ee($parser, $name, $rebuild_xmlrpcvals = true) |
| 544 | 544 | {
|
| 545 | - if ($GLOBALS['_xh']['isf'] < 2) |
|
| 545 | + if ($GLOBALS['_xh']['isf']<2) |
|
| 546 | 546 | {
|
| 547 | 547 | // push this element name from stack |
| 548 | 548 | // NB: if XML validates, correct opening/closing is guaranteed and |
@@ -550,14 +550,14 @@ discard block |
||
| 550 | 550 | // we also checked for proper nesting at start of elements... |
| 551 | 551 | $curr_elem = array_pop($GLOBALS['_xh']['stack']); |
| 552 | 552 | |
| 553 | - switch($name) |
|
| 553 | + switch ($name) |
|
| 554 | 554 | {
|
| 555 | 555 | case 'VALUE': |
| 556 | 556 | // This if() detects if no scalar was inside <VALUE></VALUE> |
| 557 | - if ($GLOBALS['_xh']['vt']=='value') |
|
| 557 | + if ($GLOBALS['_xh']['vt'] == 'value') |
|
| 558 | 558 | {
|
| 559 | - $GLOBALS['_xh']['value']=$GLOBALS['_xh']['ac']; |
|
| 560 | - $GLOBALS['_xh']['vt']=$GLOBALS['xmlrpcString']; |
|
| 559 | + $GLOBALS['_xh']['value'] = $GLOBALS['_xh']['ac']; |
|
| 560 | + $GLOBALS['_xh']['vt'] = $GLOBALS['xmlrpcString']; |
|
| 561 | 561 | } |
| 562 | 562 | |
| 563 | 563 | if ($rebuild_xmlrpcvals) |
@@ -571,7 +571,7 @@ discard block |
||
| 571 | 571 | // check if we are inside an array or struct: |
| 572 | 572 | // if value just built is inside an array, let's move it into array on the stack |
| 573 | 573 | $vscount = count($GLOBALS['_xh']['valuestack']); |
| 574 | - if ($vscount && $GLOBALS['_xh']['valuestack'][$vscount-1]['type']=='ARRAY') |
|
| 574 | + if ($vscount && $GLOBALS['_xh']['valuestack'][$vscount-1]['type'] == 'ARRAY') |
|
| 575 | 575 | {
|
| 576 | 576 | $GLOBALS['_xh']['valuestack'][$vscount-1]['values'][] = $temp; |
| 577 | 577 | } |
@@ -592,7 +592,7 @@ discard block |
||
| 592 | 592 | // check if we are inside an array or struct: |
| 593 | 593 | // if value just built is inside an array, let's move it into array on the stack |
| 594 | 594 | $vscount = count($GLOBALS['_xh']['valuestack']); |
| 595 | - if ($vscount && $GLOBALS['_xh']['valuestack'][$vscount-1]['type']=='ARRAY') |
|
| 595 | + if ($vscount && $GLOBALS['_xh']['valuestack'][$vscount-1]['type'] == 'ARRAY') |
|
| 596 | 596 | {
|
| 597 | 597 | $GLOBALS['_xh']['valuestack'][$vscount-1]['values'][] = $GLOBALS['_xh']['value']; |
| 598 | 598 | } |
@@ -605,28 +605,28 @@ discard block |
||
| 605 | 605 | case 'DOUBLE': |
| 606 | 606 | case 'DATETIME.ISO8601': |
| 607 | 607 | case 'BASE64': |
| 608 | - $GLOBALS['_xh']['vt']=strtolower($name); |
|
| 608 | + $GLOBALS['_xh']['vt'] = strtolower($name); |
|
| 609 | 609 | /// @todo: optimization creep - remove the if/elseif cycle below |
| 610 | 610 | /// since the case() in which we are already did that |
| 611 | - if ($name=='STRING') |
|
| 611 | + if ($name == 'STRING') |
|
| 612 | 612 | {
|
| 613 | - $GLOBALS['_xh']['value']=$GLOBALS['_xh']['ac']; |
|
| 613 | + $GLOBALS['_xh']['value'] = $GLOBALS['_xh']['ac']; |
|
| 614 | 614 | } |
| 615 | - elseif ($name=='DATETIME.ISO8601') |
|
| 615 | + elseif ($name == 'DATETIME.ISO8601') |
|
| 616 | 616 | {
|
| 617 | 617 | if (!preg_match('/^[0-9]{8}T[0-9]{2}:[0-9]{2}:[0-9]{2}$/', $GLOBALS['_xh']['ac']))
|
| 618 | 618 | {
|
| 619 | 619 | error_log('XML-RPC: invalid value received in DATETIME: '.$GLOBALS['_xh']['ac']);
|
| 620 | 620 | } |
| 621 | - $GLOBALS['_xh']['vt']=$GLOBALS['xmlrpcDateTime']; |
|
| 622 | - $GLOBALS['_xh']['value']=$GLOBALS['_xh']['ac']; |
|
| 621 | + $GLOBALS['_xh']['vt'] = $GLOBALS['xmlrpcDateTime']; |
|
| 622 | + $GLOBALS['_xh']['value'] = $GLOBALS['_xh']['ac']; |
|
| 623 | 623 | } |
| 624 | - elseif ($name=='BASE64') |
|
| 624 | + elseif ($name == 'BASE64') |
|
| 625 | 625 | {
|
| 626 | 626 | /// @todo check for failure of base64 decoding / catch warnings |
| 627 | - $GLOBALS['_xh']['value']=base64_decode($GLOBALS['_xh']['ac']); |
|
| 627 | + $GLOBALS['_xh']['value'] = base64_decode($GLOBALS['_xh']['ac']); |
|
| 628 | 628 | } |
| 629 | - elseif ($name=='BOOLEAN') |
|
| 629 | + elseif ($name == 'BOOLEAN') |
|
| 630 | 630 | {
|
| 631 | 631 | // special case here: we translate boolean 1 or 0 into PHP |
| 632 | 632 | // constants true or false. |
@@ -634,19 +634,19 @@ discard block |
||
| 634 | 634 | // spec never mentions them (see eg. Blogger api docs) |
| 635 | 635 | // NB: this simple checks helps a lot sanitizing input, ie no |
| 636 | 636 | // security problems around here |
| 637 | - if ($GLOBALS['_xh']['ac']=='1' || strcasecmp($GLOBALS['_xh']['ac'], 'true') == 0) |
|
| 637 | + if ($GLOBALS['_xh']['ac'] == '1' || strcasecmp($GLOBALS['_xh']['ac'], 'true') == 0) |
|
| 638 | 638 | {
|
| 639 | - $GLOBALS['_xh']['value']=true; |
|
| 639 | + $GLOBALS['_xh']['value'] = true; |
|
| 640 | 640 | } |
| 641 | 641 | else |
| 642 | 642 | {
|
| 643 | 643 | // log if receiveing something strange, even though we set the value to false anyway |
| 644 | - if ($GLOBALS['_xh']['ac']!='0' && strcasecmp($GLOBALS['_xh']['ac'], 'false') != 0) |
|
| 644 | + if ($GLOBALS['_xh']['ac'] != '0' && strcasecmp($GLOBALS['_xh']['ac'], 'false') != 0) |
|
| 645 | 645 | error_log('XML-RPC: invalid value received in BOOLEAN: '.$GLOBALS['_xh']['ac']);
|
| 646 | - $GLOBALS['_xh']['value']=false; |
|
| 646 | + $GLOBALS['_xh']['value'] = false; |
|
| 647 | 647 | } |
| 648 | 648 | } |
| 649 | - elseif ($name=='DOUBLE') |
|
| 649 | + elseif ($name == 'DOUBLE') |
|
| 650 | 650 | {
|
| 651 | 651 | // we have a DOUBLE |
| 652 | 652 | // we must check that only 0123456789-.<space> are characters here |
@@ -655,12 +655,12 @@ discard block |
||
| 655 | 655 | {
|
| 656 | 656 | /// @todo: find a better way of throwing an error than this! |
| 657 | 657 | error_log('XML-RPC: non numeric value received in DOUBLE: '.$GLOBALS['_xh']['ac']);
|
| 658 | - $GLOBALS['_xh']['value']='ERROR_NON_NUMERIC_FOUND'; |
|
| 658 | + $GLOBALS['_xh']['value'] = 'ERROR_NON_NUMERIC_FOUND'; |
|
| 659 | 659 | } |
| 660 | 660 | else |
| 661 | 661 | {
|
| 662 | 662 | // it's ok, add it on |
| 663 | - $GLOBALS['_xh']['value']=(double)$GLOBALS['_xh']['ac']; |
|
| 663 | + $GLOBALS['_xh']['value'] = (double) $GLOBALS['_xh']['ac']; |
|
| 664 | 664 | } |
| 665 | 665 | } |
| 666 | 666 | else |
@@ -671,16 +671,16 @@ discard block |
||
| 671 | 671 | {
|
| 672 | 672 | /// @todo find a better way of throwing an error than this! |
| 673 | 673 | error_log('XML-RPC: non numeric value received in INT: '.$GLOBALS['_xh']['ac']);
|
| 674 | - $GLOBALS['_xh']['value']='ERROR_NON_NUMERIC_FOUND'; |
|
| 674 | + $GLOBALS['_xh']['value'] = 'ERROR_NON_NUMERIC_FOUND'; |
|
| 675 | 675 | } |
| 676 | 676 | else |
| 677 | 677 | {
|
| 678 | 678 | // it's ok, add it on |
| 679 | - $GLOBALS['_xh']['value']=(int)$GLOBALS['_xh']['ac']; |
|
| 679 | + $GLOBALS['_xh']['value'] = (int) $GLOBALS['_xh']['ac']; |
|
| 680 | 680 | } |
| 681 | 681 | } |
| 682 | 682 | //$GLOBALS['_xh']['ac']=''; // is this necessary? |
| 683 | - $GLOBALS['_xh']['lv']=3; // indicate we've found a value |
|
| 683 | + $GLOBALS['_xh']['lv'] = 3; // indicate we've found a value |
|
| 684 | 684 | break; |
| 685 | 685 | case 'NAME': |
| 686 | 686 | $GLOBALS['_xh']['valuestack'][count($GLOBALS['_xh']['valuestack'])-1]['name'] = $GLOBALS['_xh']['ac']; |
@@ -698,14 +698,14 @@ discard block |
||
| 698 | 698 | break; |
| 699 | 699 | case 'DATA': |
| 700 | 700 | //$GLOBALS['_xh']['ac']=''; // is this necessary? |
| 701 | - $GLOBALS['_xh']['vt']=null; // reset this to check for 2 data elements in a row - even if they're empty |
|
| 701 | + $GLOBALS['_xh']['vt'] = null; // reset this to check for 2 data elements in a row - even if they're empty |
|
| 702 | 702 | break; |
| 703 | 703 | case 'STRUCT': |
| 704 | 704 | case 'ARRAY': |
| 705 | 705 | // fetch out of stack array of values, and promote it to current value |
| 706 | 706 | $curr_val = array_pop($GLOBALS['_xh']['valuestack']); |
| 707 | 707 | $GLOBALS['_xh']['value'] = $curr_val['values']; |
| 708 | - $GLOBALS['_xh']['vt']=strtolower($name); |
|
| 708 | + $GLOBALS['_xh']['vt'] = strtolower($name); |
|
| 709 | 709 | if (isset($curr_val['php_class'])) |
| 710 | 710 | {
|
| 711 | 711 | $GLOBALS['_xh']['php_class'] = $curr_val['php_class']; |
@@ -716,22 +716,22 @@ discard block |
||
| 716 | 716 | // unless no VALUE was found |
| 717 | 717 | if ($GLOBALS['_xh']['vt']) |
| 718 | 718 | {
|
| 719 | - $GLOBALS['_xh']['params'][]=$GLOBALS['_xh']['value']; |
|
| 720 | - $GLOBALS['_xh']['pt'][]=$GLOBALS['_xh']['vt']; |
|
| 719 | + $GLOBALS['_xh']['params'][] = $GLOBALS['_xh']['value']; |
|
| 720 | + $GLOBALS['_xh']['pt'][] = $GLOBALS['_xh']['vt']; |
|
| 721 | 721 | } |
| 722 | 722 | else |
| 723 | 723 | error_log('XML-RPC: missing VALUE inside PARAM in received xml');
|
| 724 | 724 | break; |
| 725 | 725 | case 'METHODNAME': |
| 726 | - $GLOBALS['_xh']['method']=preg_replace('/^[\n\r\t ]+/', '', $GLOBALS['_xh']['ac']);
|
|
| 726 | + $GLOBALS['_xh']['method'] = preg_replace('/^[\n\r\t ]+/', '', $GLOBALS['_xh']['ac']);
|
|
| 727 | 727 | break; |
| 728 | 728 | case 'NIL': |
| 729 | 729 | case 'EX:NIL': |
| 730 | 730 | if ($GLOBALS['xmlrpc_null_extension']) |
| 731 | 731 | {
|
| 732 | - $GLOBALS['_xh']['vt']='null'; |
|
| 733 | - $GLOBALS['_xh']['value']=null; |
|
| 734 | - $GLOBALS['_xh']['lv']=3; |
|
| 732 | + $GLOBALS['_xh']['vt'] = 'null'; |
|
| 733 | + $GLOBALS['_xh']['value'] = null; |
|
| 734 | + $GLOBALS['_xh']['lv'] = 3; |
|
| 735 | 735 | break; |
| 736 | 736 | } |
| 737 | 737 | // drop through intentionally if nil extension not enabled |
@@ -758,11 +758,11 @@ discard block |
||
| 758 | 758 | function xmlrpc_cd($parser, $data) |
| 759 | 759 | {
|
| 760 | 760 | // skip processing if xml fault already detected |
| 761 | - if ($GLOBALS['_xh']['isf'] < 2) |
|
| 761 | + if ($GLOBALS['_xh']['isf']<2) |
|
| 762 | 762 | {
|
| 763 | 763 | // "lookforvalue==3" means that we've found an entire value |
| 764 | 764 | // and should discard any further character data |
| 765 | - if($GLOBALS['_xh']['lv']!=3) |
|
| 765 | + if ($GLOBALS['_xh']['lv'] != 3) |
|
| 766 | 766 | {
|
| 767 | 767 | // G. Giunta 2006-08-23: useless change of 'lv' from 1 to 2 |
| 768 | 768 | //if($GLOBALS['_xh']['lv']==1) |
@@ -776,7 +776,7 @@ discard block |
||
| 776 | 776 | //{
|
| 777 | 777 | // $GLOBALS['_xh']['ac'] = ''; |
| 778 | 778 | //} |
| 779 | - $GLOBALS['_xh']['ac'].=$data; |
|
| 779 | + $GLOBALS['_xh']['ac'] .= $data; |
|
| 780 | 780 | } |
| 781 | 781 | } |
| 782 | 782 | } |
@@ -786,16 +786,16 @@ discard block |
||
| 786 | 786 | function xmlrpc_dh($parser, $data) |
| 787 | 787 | {
|
| 788 | 788 | // skip processing if xml fault already detected |
| 789 | - if ($GLOBALS['_xh']['isf'] < 2) |
|
| 789 | + if ($GLOBALS['_xh']['isf']<2) |
|
| 790 | 790 | {
|
| 791 | - if(substr($data, 0, 1) == '&' && substr($data, -1, 1) == ';') |
|
| 791 | + if (substr($data, 0, 1) == '&' && substr($data, -1, 1) == ';') |
|
| 792 | 792 | {
|
| 793 | 793 | // G. Giunta 2006-08-25: useless change of 'lv' from 1 to 2 |
| 794 | 794 | //if($GLOBALS['_xh']['lv']==1) |
| 795 | 795 | //{
|
| 796 | 796 | // $GLOBALS['_xh']['lv']=2; |
| 797 | 797 | //} |
| 798 | - $GLOBALS['_xh']['ac'].=$data; |
|
| 798 | + $GLOBALS['_xh']['ac'] .= $data; |
|
| 799 | 799 | } |
| 800 | 800 | } |
| 801 | 801 | return true; |
@@ -805,31 +805,31 @@ discard block |
||
| 805 | 805 | {
|
| 806 | 806 | var $path; |
| 807 | 807 | var $server; |
| 808 | - var $port=0; |
|
| 809 | - var $method='http'; |
|
| 808 | + var $port = 0; |
|
| 809 | + var $method = 'http'; |
|
| 810 | 810 | var $errno; |
| 811 | 811 | var $errstr; |
| 812 | - var $debug=0; |
|
| 813 | - var $username=''; |
|
| 814 | - var $password=''; |
|
| 815 | - var $authtype=1; |
|
| 816 | - var $cert=''; |
|
| 817 | - var $certpass=''; |
|
| 818 | - var $cacert=''; |
|
| 819 | - var $cacertdir=''; |
|
| 820 | - var $key=''; |
|
| 821 | - var $keypass=''; |
|
| 822 | - var $verifypeer=true; |
|
| 823 | - var $verifyhost=1; |
|
| 824 | - var $sslversion=0; // corresponds to CURL_SSLVERSION_DEFAULT |
|
| 825 | - var $no_multicall=false; |
|
| 826 | - var $proxy=''; |
|
| 827 | - var $proxyport=0; |
|
| 828 | - var $proxy_user=''; |
|
| 829 | - var $proxy_pass=''; |
|
| 830 | - var $proxy_authtype=1; |
|
| 831 | - var $cookies=array(); |
|
| 832 | - var $extracurlopts=array(); |
|
| 812 | + var $debug = 0; |
|
| 813 | + var $username = ''; |
|
| 814 | + var $password = ''; |
|
| 815 | + var $authtype = 1; |
|
| 816 | + var $cert = ''; |
|
| 817 | + var $certpass = ''; |
|
| 818 | + var $cacert = ''; |
|
| 819 | + var $cacertdir = ''; |
|
| 820 | + var $key = ''; |
|
| 821 | + var $keypass = ''; |
|
| 822 | + var $verifypeer = true; |
|
| 823 | + var $verifyhost = 1; |
|
| 824 | + var $sslversion = 0; // corresponds to CURL_SSLVERSION_DEFAULT |
|
| 825 | + var $no_multicall = false; |
|
| 826 | + var $proxy = ''; |
|
| 827 | + var $proxyport = 0; |
|
| 828 | + var $proxy_user = ''; |
|
| 829 | + var $proxy_pass = ''; |
|
| 830 | + var $proxy_authtype = 1; |
|
| 831 | + var $cookies = array(); |
|
| 832 | + var $extracurlopts = array(); |
|
| 833 | 833 | |
| 834 | 834 | /** |
| 835 | 835 | * List of http compression methods accepted by the client for responses. |
@@ -873,59 +873,59 @@ discard block |
||
| 873 | 873 | * @param integer $port the port the server is listening on, defaults to 80 or 443 depending on protocol used |
| 874 | 874 | * @param string $method the http protocol variant: defaults to 'http', 'https' and 'http11' can be used if CURL is installed |
| 875 | 875 | */ |
| 876 | - function __construct($path, $server='', $port='', $method='') |
|
| 876 | + function __construct($path, $server = '', $port = '', $method = '') |
|
| 877 | 877 | {
|
| 878 | 878 | // allow user to specify all params in $path |
| 879 | - if($server == '' and $port == '' and $method == '') |
|
| 879 | + if ($server == '' and $port == '' and $method == '') |
|
| 880 | 880 | {
|
| 881 | 881 | $parts = parse_url($path); |
| 882 | 882 | $server = $parts['host']; |
| 883 | 883 | $path = isset($parts['path']) ? $parts['path'] : ''; |
| 884 | - if(isset($parts['query'])) |
|
| 884 | + if (isset($parts['query'])) |
|
| 885 | 885 | {
|
| 886 | 886 | $path .= '?'.$parts['query']; |
| 887 | 887 | } |
| 888 | - if(isset($parts['fragment'])) |
|
| 888 | + if (isset($parts['fragment'])) |
|
| 889 | 889 | {
|
| 890 | 890 | $path .= '#'.$parts['fragment']; |
| 891 | 891 | } |
| 892 | - if(isset($parts['port'])) |
|
| 892 | + if (isset($parts['port'])) |
|
| 893 | 893 | {
|
| 894 | 894 | $port = $parts['port']; |
| 895 | 895 | } |
| 896 | - if(isset($parts['scheme'])) |
|
| 896 | + if (isset($parts['scheme'])) |
|
| 897 | 897 | {
|
| 898 | 898 | $method = $parts['scheme']; |
| 899 | 899 | } |
| 900 | - if(isset($parts['user'])) |
|
| 900 | + if (isset($parts['user'])) |
|
| 901 | 901 | {
|
| 902 | 902 | $this->username = $parts['user']; |
| 903 | 903 | } |
| 904 | - if(isset($parts['pass'])) |
|
| 904 | + if (isset($parts['pass'])) |
|
| 905 | 905 | {
|
| 906 | 906 | $this->password = $parts['pass']; |
| 907 | 907 | } |
| 908 | 908 | } |
| 909 | - if($path == '' || $path[0] != '/') |
|
| 909 | + if ($path == '' || $path[0] != '/') |
|
| 910 | 910 | {
|
| 911 | - $this->path='/'.$path; |
|
| 911 | + $this->path = '/'.$path; |
|
| 912 | 912 | } |
| 913 | 913 | else |
| 914 | 914 | {
|
| 915 | - $this->path=$path; |
|
| 915 | + $this->path = $path; |
|
| 916 | 916 | } |
| 917 | - $this->server=$server; |
|
| 918 | - if($port != '') |
|
| 917 | + $this->server = $server; |
|
| 918 | + if ($port != '') |
|
| 919 | 919 | {
|
| 920 | - $this->port=$port; |
|
| 920 | + $this->port = $port; |
|
| 921 | 921 | } |
| 922 | - if($method != '') |
|
| 922 | + if ($method != '') |
|
| 923 | 923 | {
|
| 924 | - $this->method=$method; |
|
| 924 | + $this->method = $method; |
|
| 925 | 925 | } |
| 926 | 926 | |
| 927 | 927 | // if ZLIB is enabled, let the client by default accept compressed responses |
| 928 | - if(function_exists('gzinflate') || (
|
|
| 928 | + if (function_exists('gzinflate') || (
|
|
| 929 | 929 | function_exists('curl_init') && (($info = curl_version()) &&
|
| 930 | 930 | ((is_string($info) && strpos($info, 'zlib') !== null) || isset($info['libz_version']))) |
| 931 | 931 | )) |
@@ -940,13 +940,13 @@ discard block |
||
| 940 | 940 | $this->accepted_charset_encodings = array('UTF-8', 'ISO-8859-1', 'US-ASCII');
|
| 941 | 941 | |
| 942 | 942 | // initialize user_agent string |
| 943 | - $this->user_agent = $GLOBALS['xmlrpcName'] . ' ' . $GLOBALS['xmlrpcVersion']; |
|
| 943 | + $this->user_agent = $GLOBALS['xmlrpcName'].' '.$GLOBALS['xmlrpcVersion']; |
|
| 944 | 944 | } |
| 945 | 945 | |
| 946 | 946 | /** |
| 947 | 947 | * @deprecated |
| 948 | 948 | */ |
| 949 | - function xmlrpc_client($path, $server='', $port='', $method='') |
|
| 949 | + function xmlrpc_client($path, $server = '', $port = '', $method = '') |
|
| 950 | 950 | {
|
| 951 | 951 | self::__construct($path, $server, $port, $method); |
| 952 | 952 | } |
@@ -958,7 +958,7 @@ discard block |
||
| 958 | 958 | */ |
| 959 | 959 | function setDebug($in) |
| 960 | 960 | {
|
| 961 | - $this->debug=$in; |
|
| 961 | + $this->debug = $in; |
|
| 962 | 962 | } |
| 963 | 963 | |
| 964 | 964 | /** |
@@ -968,11 +968,11 @@ discard block |
||
| 968 | 968 | * @param integer $t auth type. See curl_setopt man page for supported auth types. Defaults to CURLAUTH_BASIC (basic auth) |
| 969 | 969 | * @access public |
| 970 | 970 | */ |
| 971 | - function setCredentials($u, $p, $t=1) |
|
| 971 | + function setCredentials($u, $p, $t = 1) |
|
| 972 | 972 | {
|
| 973 | - $this->username=$u; |
|
| 974 | - $this->password=$p; |
|
| 975 | - $this->authtype=$t; |
|
| 973 | + $this->username = $u; |
|
| 974 | + $this->password = $p; |
|
| 975 | + $this->authtype = $t; |
|
| 976 | 976 | } |
| 977 | 977 | |
| 978 | 978 | /** |
@@ -994,7 +994,7 @@ discard block |
||
| 994 | 994 | * @param bool $is_dir set to true to indicate cacert is a dir. defaults to false |
| 995 | 995 | * @access public |
| 996 | 996 | */ |
| 997 | - function setCaCertificate($cacert, $is_dir=false) |
|
| 997 | + function setCaCertificate($cacert, $is_dir = false) |
|
| 998 | 998 | {
|
| 999 | 999 | if ($is_dir) |
| 1000 | 1000 | {
|
@@ -1081,7 +1081,7 @@ discard block |
||
| 1081 | 1081 | if ($compmethod == 'any') |
| 1082 | 1082 | $this->accepted_compression = array('gzip', 'deflate');
|
| 1083 | 1083 | else |
| 1084 | - if ($compmethod == false ) |
|
| 1084 | + if ($compmethod == false) |
|
| 1085 | 1085 | $this->accepted_compression = array(); |
| 1086 | 1086 | else |
| 1087 | 1087 | $this->accepted_compression = array($compmethod); |
@@ -1112,7 +1112,7 @@ discard block |
||
| 1112 | 1112 | * |
| 1113 | 1113 | * @todo check correctness of urlencoding cookie value (copied from php way of doing it...) |
| 1114 | 1114 | */ |
| 1115 | - function setCookie($name, $value='', $path='', $domain='', $port=null) |
|
| 1115 | + function setCookie($name, $value = '', $path = '', $domain = '', $port = null) |
|
| 1116 | 1116 | {
|
| 1117 | 1117 | $this->cookies[$name]['value'] = urlencode($value); |
| 1118 | 1118 | if ($path || $domain || $port) |
@@ -1133,7 +1133,7 @@ discard block |
||
| 1133 | 1133 | * It allows eg. to bind client to a specific IP interface / address |
| 1134 | 1134 | * @param array $options |
| 1135 | 1135 | */ |
| 1136 | - function SetCurlOptions( $options ) |
|
| 1136 | + function SetCurlOptions($options) |
|
| 1137 | 1137 | {
|
| 1138 | 1138 | $this->extracurlopts = $options; |
| 1139 | 1139 | } |
@@ -1142,7 +1142,7 @@ discard block |
||
| 1142 | 1142 | * Set user-agent string that will be used by this client instance |
| 1143 | 1143 | * in http headers sent to the server |
| 1144 | 1144 | */ |
| 1145 | - function SetUserAgent( $agentstring ) |
|
| 1145 | + function SetUserAgent($agentstring) |
|
| 1146 | 1146 | {
|
| 1147 | 1147 | $this->user_agent = $agentstring; |
| 1148 | 1148 | } |
@@ -1155,22 +1155,22 @@ discard block |
||
| 1155 | 1155 | * @return xmlrpcresp |
| 1156 | 1156 | * @access public |
| 1157 | 1157 | */ |
| 1158 | - function& send($msg, $timeout=0, $method='') |
|
| 1158 | + function& send($msg, $timeout = 0, $method = '') |
|
| 1159 | 1159 | {
|
| 1160 | 1160 | // if user deos not specify http protocol, use native method of this client |
| 1161 | 1161 | // (i.e. method set during call to constructor) |
| 1162 | - if($method == '') |
|
| 1162 | + if ($method == '') |
|
| 1163 | 1163 | {
|
| 1164 | 1164 | $method = $this->method; |
| 1165 | 1165 | } |
| 1166 | 1166 | |
| 1167 | - if(is_array($msg)) |
|
| 1167 | + if (is_array($msg)) |
|
| 1168 | 1168 | {
|
| 1169 | 1169 | // $msg is an array of xmlrpcmsg's |
| 1170 | 1170 | $r = $this->multicall($msg, $timeout, $method); |
| 1171 | 1171 | return $r; |
| 1172 | 1172 | } |
| 1173 | - elseif(is_string($msg)) |
|
| 1173 | + elseif (is_string($msg)) |
|
| 1174 | 1174 | {
|
| 1175 | 1175 | $n = new xmlrpcmsg('');
|
| 1176 | 1176 | $n->payload = $msg; |
@@ -1178,11 +1178,11 @@ discard block |
||
| 1178 | 1178 | } |
| 1179 | 1179 | |
| 1180 | 1180 | // where msg is an xmlrpcmsg |
| 1181 | - $msg->debug=$this->debug; |
|
| 1181 | + $msg->debug = $this->debug; |
|
| 1182 | 1182 | |
| 1183 | - if($method == 'https') |
|
| 1183 | + if ($method == 'https') |
|
| 1184 | 1184 | {
|
| 1185 | - $r =& $this->sendPayloadHTTPS( |
|
| 1185 | + $r = & $this->sendPayloadHTTPS( |
|
| 1186 | 1186 | $msg, |
| 1187 | 1187 | $this->server, |
| 1188 | 1188 | $this->port, |
@@ -1205,9 +1205,9 @@ discard block |
||
| 1205 | 1205 | $this->sslversion |
| 1206 | 1206 | ); |
| 1207 | 1207 | } |
| 1208 | - elseif($method == 'http11') |
|
| 1208 | + elseif ($method == 'http11') |
|
| 1209 | 1209 | {
|
| 1210 | - $r =& $this->sendPayloadCURL( |
|
| 1210 | + $r = & $this->sendPayloadCURL( |
|
| 1211 | 1211 | $msg, |
| 1212 | 1212 | $this->server, |
| 1213 | 1213 | $this->port, |
@@ -1230,7 +1230,7 @@ discard block |
||
| 1230 | 1230 | } |
| 1231 | 1231 | else |
| 1232 | 1232 | {
|
| 1233 | - $r =& $this->sendPayloadHTTP10( |
|
| 1233 | + $r = & $this->sendPayloadHTTP10( |
|
| 1234 | 1234 | $msg, |
| 1235 | 1235 | $this->server, |
| 1236 | 1236 | $this->port, |
@@ -1252,29 +1252,29 @@ discard block |
||
| 1252 | 1252 | /** |
| 1253 | 1253 | * @access private |
| 1254 | 1254 | */ |
| 1255 | - function &sendPayloadHTTP10($msg, $server, $port, $timeout=0, |
|
| 1256 | - $username='', $password='', $authtype=1, $proxyhost='', |
|
| 1257 | - $proxyport=0, $proxyusername='', $proxypassword='', $proxyauthtype=1) |
|
| 1255 | + function &sendPayloadHTTP10($msg, $server, $port, $timeout = 0, |
|
| 1256 | + $username = '', $password = '', $authtype = 1, $proxyhost = '', |
|
| 1257 | + $proxyport = 0, $proxyusername = '', $proxypassword = '', $proxyauthtype = 1) |
|
| 1258 | 1258 | {
|
| 1259 | - if($port==0) |
|
| 1259 | + if ($port == 0) |
|
| 1260 | 1260 | {
|
| 1261 | - $port=80; |
|
| 1261 | + $port = 80; |
|
| 1262 | 1262 | } |
| 1263 | 1263 | |
| 1264 | 1264 | // Only create the payload if it was not created previously |
| 1265 | - if(empty($msg->payload)) |
|
| 1265 | + if (empty($msg->payload)) |
|
| 1266 | 1266 | {
|
| 1267 | 1267 | $msg->createPayload($this->request_charset_encoding); |
| 1268 | 1268 | } |
| 1269 | 1269 | |
| 1270 | 1270 | $payload = $msg->payload; |
| 1271 | 1271 | // Deflate request body and set appropriate request headers |
| 1272 | - if(function_exists('gzdeflate') && ($this->request_compression == 'gzip' || $this->request_compression == 'deflate'))
|
|
| 1272 | + if (function_exists('gzdeflate') && ($this->request_compression == 'gzip' || $this->request_compression == 'deflate'))
|
|
| 1273 | 1273 | {
|
| 1274 | - if($this->request_compression == 'gzip') |
|
| 1274 | + if ($this->request_compression == 'gzip') |
|
| 1275 | 1275 | {
|
| 1276 | 1276 | $a = @gzencode($payload); |
| 1277 | - if($a) |
|
| 1277 | + if ($a) |
|
| 1278 | 1278 | {
|
| 1279 | 1279 | $payload = $a; |
| 1280 | 1280 | $encoding_hdr = "Content-Encoding: gzip\r\n"; |
@@ -1283,7 +1283,7 @@ discard block |
||
| 1283 | 1283 | else |
| 1284 | 1284 | {
|
| 1285 | 1285 | $a = @gzcompress($payload); |
| 1286 | - if($a) |
|
| 1286 | + if ($a) |
|
| 1287 | 1287 | {
|
| 1288 | 1288 | $payload = $a; |
| 1289 | 1289 | $encoding_hdr = "Content-Encoding: deflate\r\n"; |
@@ -1296,10 +1296,10 @@ discard block |
||
| 1296 | 1296 | } |
| 1297 | 1297 | |
| 1298 | 1298 | // thanks to Grant Rauscher <[email protected]> for this |
| 1299 | - $credentials=''; |
|
| 1300 | - if($username!='') |
|
| 1299 | + $credentials = ''; |
|
| 1300 | + if ($username != '') |
|
| 1301 | 1301 | {
|
| 1302 | - $credentials='Authorization: Basic ' . base64_encode($username . ':' . $password) . "\r\n"; |
|
| 1302 | + $credentials = 'Authorization: Basic '.base64_encode($username.':'.$password)."\r\n"; |
|
| 1303 | 1303 | if ($authtype != 1) |
| 1304 | 1304 | {
|
| 1305 | 1305 | error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported with HTTP 1.0');
|
@@ -1307,28 +1307,28 @@ discard block |
||
| 1307 | 1307 | } |
| 1308 | 1308 | |
| 1309 | 1309 | $accepted_encoding = ''; |
| 1310 | - if(is_array($this->accepted_compression) && count($this->accepted_compression)) |
|
| 1310 | + if (is_array($this->accepted_compression) && count($this->accepted_compression)) |
|
| 1311 | 1311 | {
|
| 1312 | - $accepted_encoding = 'Accept-Encoding: ' . implode(', ', $this->accepted_compression) . "\r\n";
|
|
| 1312 | + $accepted_encoding = 'Accept-Encoding: '.implode(', ', $this->accepted_compression)."\r\n";
|
|
| 1313 | 1313 | } |
| 1314 | 1314 | |
| 1315 | 1315 | $proxy_credentials = ''; |
| 1316 | - if($proxyhost) |
|
| 1316 | + if ($proxyhost) |
|
| 1317 | 1317 | {
|
| 1318 | - if($proxyport == 0) |
|
| 1318 | + if ($proxyport == 0) |
|
| 1319 | 1319 | {
|
| 1320 | 1320 | $proxyport = 8080; |
| 1321 | 1321 | } |
| 1322 | 1322 | $connectserver = $proxyhost; |
| 1323 | 1323 | $connectport = $proxyport; |
| 1324 | 1324 | $uri = 'http://'.$server.':'.$port.$this->path; |
| 1325 | - if($proxyusername != '') |
|
| 1325 | + if ($proxyusername != '') |
|
| 1326 | 1326 | {
|
| 1327 | 1327 | if ($proxyauthtype != 1) |
| 1328 | 1328 | {
|
| 1329 | 1329 | error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported with HTTP 1.0');
|
| 1330 | 1330 | } |
| 1331 | - $proxy_credentials = 'Proxy-Authorization: Basic ' . base64_encode($proxyusername.':'.$proxypassword) . "\r\n"; |
|
| 1331 | + $proxy_credentials = 'Proxy-Authorization: Basic '.base64_encode($proxyusername.':'.$proxypassword)."\r\n"; |
|
| 1332 | 1332 | } |
| 1333 | 1333 | } |
| 1334 | 1334 | else |
@@ -1340,7 +1340,7 @@ discard block |
||
| 1340 | 1340 | |
| 1341 | 1341 | // Cookie generation, as per rfc2965 (version 1 cookies) or |
| 1342 | 1342 | // netscape's rules (version 0 cookies) |
| 1343 | - $cookieheader=''; |
|
| 1343 | + $cookieheader = ''; |
|
| 1344 | 1344 | if (count($this->cookies)) |
| 1345 | 1345 | {
|
| 1346 | 1346 | $version = ''; |
@@ -1348,73 +1348,73 @@ discard block |
||
| 1348 | 1348 | {
|
| 1349 | 1349 | if ($cookie['version']) |
| 1350 | 1350 | {
|
| 1351 | - $version = ' $Version="' . $cookie['version'] . '";'; |
|
| 1352 | - $cookieheader .= ' ' . $name . '="' . $cookie['value'] . '";'; |
|
| 1351 | + $version = ' $Version="'.$cookie['version'].'";'; |
|
| 1352 | + $cookieheader .= ' '.$name.'="'.$cookie['value'].'";'; |
|
| 1353 | 1353 | if ($cookie['path']) |
| 1354 | - $cookieheader .= ' $Path="' . $cookie['path'] . '";'; |
|
| 1354 | + $cookieheader .= ' $Path="'.$cookie['path'].'";'; |
|
| 1355 | 1355 | if ($cookie['domain']) |
| 1356 | - $cookieheader .= ' $Domain="' . $cookie['domain'] . '";'; |
|
| 1356 | + $cookieheader .= ' $Domain="'.$cookie['domain'].'";'; |
|
| 1357 | 1357 | if ($cookie['port']) |
| 1358 | - $cookieheader .= ' $Port="' . $cookie['port'] . '";'; |
|
| 1358 | + $cookieheader .= ' $Port="'.$cookie['port'].'";'; |
|
| 1359 | 1359 | } |
| 1360 | 1360 | else |
| 1361 | 1361 | {
|
| 1362 | - $cookieheader .= ' ' . $name . '=' . $cookie['value'] . ";"; |
|
| 1362 | + $cookieheader .= ' '.$name.'='.$cookie['value'].";"; |
|
| 1363 | 1363 | } |
| 1364 | 1364 | } |
| 1365 | - $cookieheader = 'Cookie:' . $version . substr($cookieheader, 0, -1) . "\r\n"; |
|
| 1365 | + $cookieheader = 'Cookie:'.$version.substr($cookieheader, 0, -1)."\r\n"; |
|
| 1366 | 1366 | } |
| 1367 | 1367 | |
| 1368 | 1368 | // omit port if 80 |
| 1369 | - $port = ($port == 80) ? '' : (':' . $port);
|
|
| 1370 | - |
|
| 1371 | - $op= 'POST ' . $uri. " HTTP/1.0\r\n" . |
|
| 1372 | - 'User-Agent: ' . $this->user_agent . "\r\n" . |
|
| 1373 | - 'Host: '. $server . $port . "\r\n" . |
|
| 1374 | - $credentials . |
|
| 1375 | - $proxy_credentials . |
|
| 1376 | - $accepted_encoding . |
|
| 1377 | - $encoding_hdr . |
|
| 1378 | - 'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings) . "\r\n" .
|
|
| 1379 | - $cookieheader . |
|
| 1380 | - 'Content-Type: ' . $msg->content_type . "\r\nContent-Length: " . |
|
| 1381 | - strlen($payload) . "\r\n\r\n" . |
|
| 1369 | + $port = ($port == 80) ? '' : (':'.$port);
|
|
| 1370 | + |
|
| 1371 | + $op = 'POST '.$uri." HTTP/1.0\r\n". |
|
| 1372 | + 'User-Agent: '.$this->user_agent."\r\n". |
|
| 1373 | + 'Host: '.$server.$port."\r\n". |
|
| 1374 | + $credentials. |
|
| 1375 | + $proxy_credentials. |
|
| 1376 | + $accepted_encoding. |
|
| 1377 | + $encoding_hdr. |
|
| 1378 | + 'Accept-Charset: '.implode(',', $this->accepted_charset_encodings)."\r\n".
|
|
| 1379 | + $cookieheader. |
|
| 1380 | + 'Content-Type: '.$msg->content_type."\r\nContent-Length: ". |
|
| 1381 | + strlen($payload)."\r\n\r\n". |
|
| 1382 | 1382 | $payload; |
| 1383 | 1383 | |
| 1384 | - if($this->debug > 1) |
|
| 1384 | + if ($this->debug>1) |
|
| 1385 | 1385 | {
|
| 1386 | - print "<PRE>\n---SENDING---\n" . htmlentities($op) . "\n---END---\n</PRE>"; |
|
| 1386 | + print "<PRE>\n---SENDING---\n".htmlentities($op)."\n---END---\n</PRE>"; |
|
| 1387 | 1387 | // let the client see this now in case http times out... |
| 1388 | 1388 | flush(); |
| 1389 | 1389 | } |
| 1390 | 1390 | |
| 1391 | - if($timeout>0) |
|
| 1391 | + if ($timeout>0) |
|
| 1392 | 1392 | {
|
| 1393 | - $fp=@fsockopen($connectserver, $connectport, $this->errno, $this->errstr, $timeout); |
|
| 1393 | + $fp = @fsockopen($connectserver, $connectport, $this->errno, $this->errstr, $timeout); |
|
| 1394 | 1394 | } |
| 1395 | 1395 | else |
| 1396 | 1396 | {
|
| 1397 | - $fp=@fsockopen($connectserver, $connectport, $this->errno, $this->errstr); |
|
| 1397 | + $fp = @fsockopen($connectserver, $connectport, $this->errno, $this->errstr); |
|
| 1398 | 1398 | } |
| 1399 | - if($fp) |
|
| 1399 | + if ($fp) |
|
| 1400 | 1400 | {
|
| 1401 | - if($timeout>0 && function_exists('stream_set_timeout'))
|
|
| 1401 | + if ($timeout>0 && function_exists('stream_set_timeout'))
|
|
| 1402 | 1402 | {
|
| 1403 | 1403 | stream_set_timeout($fp, $timeout); |
| 1404 | 1404 | } |
| 1405 | 1405 | } |
| 1406 | 1406 | else |
| 1407 | 1407 | {
|
| 1408 | - $this->errstr='Connect error: '.$this->errstr; |
|
| 1409 | - $r=new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['http_error'], $this->errstr . ' (' . $this->errno . ')');
|
|
| 1408 | + $this->errstr = 'Connect error: '.$this->errstr; |
|
| 1409 | + $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['http_error'], $this->errstr.' ('.$this->errno.')');
|
|
| 1410 | 1410 | return $r; |
| 1411 | 1411 | } |
| 1412 | 1412 | |
| 1413 | - if(!fputs($fp, $op, strlen($op))) |
|
| 1413 | + if (!fputs($fp, $op, strlen($op))) |
|
| 1414 | 1414 | {
|
| 1415 | 1415 | fclose($fp); |
| 1416 | - $this->errstr='Write error'; |
|
| 1417 | - $r=new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['http_error'], $this->errstr); |
|
| 1416 | + $this->errstr = 'Write error'; |
|
| 1417 | + $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['http_error'], $this->errstr); |
|
| 1418 | 1418 | return $r; |
| 1419 | 1419 | } |
| 1420 | 1420 | else |
@@ -1424,15 +1424,15 @@ discard block |
||
| 1424 | 1424 | } |
| 1425 | 1425 | // G. Giunta 2005/10/24: close socket before parsing. |
| 1426 | 1426 | // should yield slightly better execution times, and make easier recursive calls (e.g. to follow http redirects) |
| 1427 | - $ipd=''; |
|
| 1427 | + $ipd = ''; |
|
| 1428 | 1428 | do |
| 1429 | 1429 | {
|
| 1430 | 1430 | // shall we check for $data === FALSE? |
| 1431 | 1431 | // as per the manual, it signals an error |
| 1432 | - $ipd.=fread($fp, 32768); |
|
| 1433 | - } while(!feof($fp)); |
|
| 1432 | + $ipd .= fread($fp, 32768); |
|
| 1433 | + } while (!feof($fp)); |
|
| 1434 | 1434 | fclose($fp); |
| 1435 | - $r =& $msg->parseResponse($ipd, false, $this->return_type); |
|
| 1435 | + $r = & $msg->parseResponse($ipd, false, $this->return_type); |
|
| 1436 | 1436 | return $r; |
| 1437 | 1437 | |
| 1438 | 1438 | } |
@@ -1440,12 +1440,12 @@ discard block |
||
| 1440 | 1440 | /** |
| 1441 | 1441 | * @access private |
| 1442 | 1442 | */ |
| 1443 | - function &sendPayloadHTTPS($msg, $server, $port, $timeout=0, $username='', |
|
| 1444 | - $password='', $authtype=1, $cert='',$certpass='', $cacert='', $cacertdir='', |
|
| 1445 | - $proxyhost='', $proxyport=0, $proxyusername='', $proxypassword='', $proxyauthtype=1, |
|
| 1446 | - $keepalive=false, $key='', $keypass='', $sslVersion = 0) |
|
| 1443 | + function &sendPayloadHTTPS($msg, $server, $port, $timeout = 0, $username = '', |
|
| 1444 | + $password = '', $authtype = 1, $cert = '', $certpass = '', $cacert = '', $cacertdir = '', |
|
| 1445 | + $proxyhost = '', $proxyport = 0, $proxyusername = '', $proxypassword = '', $proxyauthtype = 1, |
|
| 1446 | + $keepalive = false, $key = '', $keypass = '', $sslVersion = 0) |
|
| 1447 | 1447 | {
|
| 1448 | - $r =& $this->sendPayloadCURL($msg, $server, $port, $timeout, $username, |
|
| 1448 | + $r = & $this->sendPayloadCURL($msg, $server, $port, $timeout, $username, |
|
| 1449 | 1449 | $password, $authtype, $cert, $certpass, $cacert, $cacertdir, $proxyhost, $proxyport, |
| 1450 | 1450 | $proxyusername, $proxypassword, $proxyauthtype, 'https', $keepalive, $key, $keypass, $sslVersion); |
| 1451 | 1451 | return $r; |
@@ -1457,31 +1457,31 @@ discard block |
||
| 1457 | 1457 | * NB: CURL versions before 7.11.10 cannot use proxy to talk to https servers! |
| 1458 | 1458 | * @access private |
| 1459 | 1459 | */ |
| 1460 | - function &sendPayloadCURL($msg, $server, $port, $timeout=0, $username='', |
|
| 1461 | - $password='', $authtype=1, $cert='', $certpass='', $cacert='', $cacertdir='', |
|
| 1462 | - $proxyhost='', $proxyport=0, $proxyusername='', $proxypassword='', $proxyauthtype=1, $method='https', |
|
| 1463 | - $keepalive=false, $key='', $keypass='', $sslVersion = 0) |
|
| 1460 | + function &sendPayloadCURL($msg, $server, $port, $timeout = 0, $username = '', |
|
| 1461 | + $password = '', $authtype = 1, $cert = '', $certpass = '', $cacert = '', $cacertdir = '', |
|
| 1462 | + $proxyhost = '', $proxyport = 0, $proxyusername = '', $proxypassword = '', $proxyauthtype = 1, $method = 'https', |
|
| 1463 | + $keepalive = false, $key = '', $keypass = '', $sslVersion = 0) |
|
| 1464 | 1464 | {
|
| 1465 | - if(!function_exists('curl_init'))
|
|
| 1465 | + if (!function_exists('curl_init'))
|
|
| 1466 | 1466 | {
|
| 1467 | - $this->errstr='CURL unavailable on this install'; |
|
| 1468 | - $r=new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['no_curl'], $GLOBALS['xmlrpcstr']['no_curl']); |
|
| 1467 | + $this->errstr = 'CURL unavailable on this install'; |
|
| 1468 | + $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['no_curl'], $GLOBALS['xmlrpcstr']['no_curl']); |
|
| 1469 | 1469 | return $r; |
| 1470 | 1470 | } |
| 1471 | - if($method == 'https') |
|
| 1471 | + if ($method == 'https') |
|
| 1472 | 1472 | {
|
| 1473 | - if(($info = curl_version()) && |
|
| 1473 | + if (($info = curl_version()) && |
|
| 1474 | 1474 | ((is_string($info) && strpos($info, 'OpenSSL') === null) || (is_array($info) && !isset($info['ssl_version'])))) |
| 1475 | 1475 | {
|
| 1476 | - $this->errstr='SSL unavailable on this install'; |
|
| 1477 | - $r=new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['no_ssl'], $GLOBALS['xmlrpcstr']['no_ssl']); |
|
| 1476 | + $this->errstr = 'SSL unavailable on this install'; |
|
| 1477 | + $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['no_ssl'], $GLOBALS['xmlrpcstr']['no_ssl']); |
|
| 1478 | 1478 | return $r; |
| 1479 | 1479 | } |
| 1480 | 1480 | } |
| 1481 | 1481 | |
| 1482 | - if($port == 0) |
|
| 1482 | + if ($port == 0) |
|
| 1483 | 1483 | {
|
| 1484 | - if($method == 'http') |
|
| 1484 | + if ($method == 'http') |
|
| 1485 | 1485 | {
|
| 1486 | 1486 | $port = 80; |
| 1487 | 1487 | } |
@@ -1492,19 +1492,19 @@ discard block |
||
| 1492 | 1492 | } |
| 1493 | 1493 | |
| 1494 | 1494 | // Only create the payload if it was not created previously |
| 1495 | - if(empty($msg->payload)) |
|
| 1495 | + if (empty($msg->payload)) |
|
| 1496 | 1496 | {
|
| 1497 | 1497 | $msg->createPayload($this->request_charset_encoding); |
| 1498 | 1498 | } |
| 1499 | 1499 | |
| 1500 | 1500 | // Deflate request body and set appropriate request headers |
| 1501 | 1501 | $payload = $msg->payload; |
| 1502 | - if(function_exists('gzdeflate') && ($this->request_compression == 'gzip' || $this->request_compression == 'deflate'))
|
|
| 1502 | + if (function_exists('gzdeflate') && ($this->request_compression == 'gzip' || $this->request_compression == 'deflate'))
|
|
| 1503 | 1503 | {
|
| 1504 | - if($this->request_compression == 'gzip') |
|
| 1504 | + if ($this->request_compression == 'gzip') |
|
| 1505 | 1505 | {
|
| 1506 | 1506 | $a = @gzencode($payload); |
| 1507 | - if($a) |
|
| 1507 | + if ($a) |
|
| 1508 | 1508 | {
|
| 1509 | 1509 | $payload = $a; |
| 1510 | 1510 | $encoding_hdr = 'Content-Encoding: gzip'; |
@@ -1513,7 +1513,7 @@ discard block |
||
| 1513 | 1513 | else |
| 1514 | 1514 | {
|
| 1515 | 1515 | $a = @gzcompress($payload); |
| 1516 | - if($a) |
|
| 1516 | + if ($a) |
|
| 1517 | 1517 | {
|
| 1518 | 1518 | $payload = $a; |
| 1519 | 1519 | $encoding_hdr = 'Content-Encoding: deflate'; |
@@ -1525,17 +1525,17 @@ discard block |
||
| 1525 | 1525 | $encoding_hdr = ''; |
| 1526 | 1526 | } |
| 1527 | 1527 | |
| 1528 | - if($this->debug > 1) |
|
| 1528 | + if ($this->debug>1) |
|
| 1529 | 1529 | {
|
| 1530 | - print "<PRE>\n---SENDING---\n" . htmlentities($payload) . "\n---END---\n</PRE>"; |
|
| 1530 | + print "<PRE>\n---SENDING---\n".htmlentities($payload)."\n---END---\n</PRE>"; |
|
| 1531 | 1531 | // let the client see this now in case http times out... |
| 1532 | 1532 | flush(); |
| 1533 | 1533 | } |
| 1534 | 1534 | |
| 1535 | - if(!$keepalive || !$this->xmlrpc_curl_handle) |
|
| 1535 | + if (!$keepalive || !$this->xmlrpc_curl_handle) |
|
| 1536 | 1536 | {
|
| 1537 | - $curl = curl_init($method . '://' . $server . ':' . $port . $this->path); |
|
| 1538 | - if($keepalive) |
|
| 1537 | + $curl = curl_init($method.'://'.$server.':'.$port.$this->path); |
|
| 1538 | + if ($keepalive) |
|
| 1539 | 1539 | {
|
| 1540 | 1540 | $this->xmlrpc_curl_handle = $curl; |
| 1541 | 1541 | } |
@@ -1548,7 +1548,7 @@ discard block |
||
| 1548 | 1548 | // results into variable |
| 1549 | 1549 | curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); |
| 1550 | 1550 | |
| 1551 | - if($this->debug) |
|
| 1551 | + if ($this->debug) |
|
| 1552 | 1552 | {
|
| 1553 | 1553 | curl_setopt($curl, CURLOPT_VERBOSE, 1); |
| 1554 | 1554 | } |
@@ -1564,7 +1564,7 @@ discard block |
||
| 1564 | 1564 | // NB: if we set an empty string, CURL will add http header indicating |
| 1565 | 1565 | // ALL methods it is supporting. This is possibly a better option than |
| 1566 | 1566 | // letting the user tell what curl can / cannot do... |
| 1567 | - if(is_array($this->accepted_compression) && count($this->accepted_compression)) |
|
| 1567 | + if (is_array($this->accepted_compression) && count($this->accepted_compression)) |
|
| 1568 | 1568 | {
|
| 1569 | 1569 | //curl_setopt($curl, CURLOPT_ENCODING, implode(',', $this->accepted_compression));
|
| 1570 | 1570 | // empty string means 'any supported by CURL' (shall we catch errors in case CURLOPT_SSLKEY undefined ?) |
@@ -1576,26 +1576,26 @@ discard block |
||
| 1576 | 1576 | curl_setopt($curl, CURLOPT_ENCODING, ''); |
| 1577 | 1577 | } |
| 1578 | 1578 | // extra headers |
| 1579 | - $headers = array('Content-Type: ' . $msg->content_type , 'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings));
|
|
| 1579 | + $headers = array('Content-Type: '.$msg->content_type, 'Accept-Charset: '.implode(',', $this->accepted_charset_encodings));
|
|
| 1580 | 1580 | // if no keepalive is wanted, let the server know it in advance |
| 1581 | - if(!$keepalive) |
|
| 1581 | + if (!$keepalive) |
|
| 1582 | 1582 | {
|
| 1583 | 1583 | $headers[] = 'Connection: close'; |
| 1584 | 1584 | } |
| 1585 | 1585 | // request compression header |
| 1586 | - if($encoding_hdr) |
|
| 1586 | + if ($encoding_hdr) |
|
| 1587 | 1587 | {
|
| 1588 | 1588 | $headers[] = $encoding_hdr; |
| 1589 | 1589 | } |
| 1590 | 1590 | |
| 1591 | 1591 | curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); |
| 1592 | 1592 | // timeout is borked |
| 1593 | - if($timeout) |
|
| 1593 | + if ($timeout) |
|
| 1594 | 1594 | {
|
| 1595 | - curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout - 1); |
|
| 1595 | + curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout-1); |
|
| 1596 | 1596 | } |
| 1597 | 1597 | |
| 1598 | - if($username && $password) |
|
| 1598 | + if ($username && $password) |
|
| 1599 | 1599 | {
|
| 1600 | 1600 | curl_setopt($curl, CURLOPT_USERPWD, $username.':'.$password); |
| 1601 | 1601 | if (defined('CURLOPT_HTTPAUTH'))
|
@@ -1608,43 +1608,43 @@ discard block |
||
| 1608 | 1608 | } |
| 1609 | 1609 | } |
| 1610 | 1610 | |
| 1611 | - if($method == 'https') |
|
| 1611 | + if ($method == 'https') |
|
| 1612 | 1612 | {
|
| 1613 | 1613 | // set cert file |
| 1614 | - if($cert) |
|
| 1614 | + if ($cert) |
|
| 1615 | 1615 | {
|
| 1616 | 1616 | curl_setopt($curl, CURLOPT_SSLCERT, $cert); |
| 1617 | 1617 | } |
| 1618 | 1618 | // set cert password |
| 1619 | - if($certpass) |
|
| 1619 | + if ($certpass) |
|
| 1620 | 1620 | {
|
| 1621 | 1621 | curl_setopt($curl, CURLOPT_SSLCERTPASSWD, $certpass); |
| 1622 | 1622 | } |
| 1623 | 1623 | // whether to verify remote host's cert |
| 1624 | 1624 | curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, $this->verifypeer); |
| 1625 | 1625 | // set ca certificates file/dir |
| 1626 | - if($cacert) |
|
| 1626 | + if ($cacert) |
|
| 1627 | 1627 | {
|
| 1628 | 1628 | curl_setopt($curl, CURLOPT_CAINFO, $cacert); |
| 1629 | 1629 | } |
| 1630 | - if($cacertdir) |
|
| 1630 | + if ($cacertdir) |
|
| 1631 | 1631 | {
|
| 1632 | 1632 | curl_setopt($curl, CURLOPT_CAPATH, $cacertdir); |
| 1633 | 1633 | } |
| 1634 | 1634 | // set key file (shall we catch errors in case CURLOPT_SSLKEY undefined ?) |
| 1635 | - if($key) |
|
| 1635 | + if ($key) |
|
| 1636 | 1636 | {
|
| 1637 | 1637 | curl_setopt($curl, CURLOPT_SSLKEY, $key); |
| 1638 | 1638 | } |
| 1639 | 1639 | // set key password (shall we catch errors in case CURLOPT_SSLKEY undefined ?) |
| 1640 | - if($keypass) |
|
| 1640 | + if ($keypass) |
|
| 1641 | 1641 | {
|
| 1642 | 1642 | curl_setopt($curl, CURLOPT_SSLKEYPASSWD, $keypass); |
| 1643 | 1643 | } |
| 1644 | 1644 | |
| 1645 | 1645 | // Upgrade transparently to more stringent check for versions of php which do not support otherwise. |
| 1646 | 1646 | // Doing it in constructor would be cleaner; doing it here saves us a couple of function calls |
| 1647 | - if($this->verifyhost == 1 && $info = curl_version() && version_compare($info['version'], '7.28.1') >= 0) |
|
| 1647 | + if ($this->verifyhost == 1 && $info = curl_version() && version_compare($info['version'], '7.28.1')>=0) |
|
| 1648 | 1648 | {
|
| 1649 | 1649 | $this->verifyhost = 2; |
| 1650 | 1650 | } |
@@ -1655,15 +1655,15 @@ discard block |
||
| 1655 | 1655 | } |
| 1656 | 1656 | |
| 1657 | 1657 | // proxy info |
| 1658 | - if($proxyhost) |
|
| 1658 | + if ($proxyhost) |
|
| 1659 | 1659 | {
|
| 1660 | - if($proxyport == 0) |
|
| 1660 | + if ($proxyport == 0) |
|
| 1661 | 1661 | {
|
| 1662 | 1662 | $proxyport = 8080; // NB: even for HTTPS, local connection is on port 8080 |
| 1663 | 1663 | } |
| 1664 | 1664 | curl_setopt($curl, CURLOPT_PROXY, $proxyhost.':'.$proxyport); |
| 1665 | 1665 | //curl_setopt($curl, CURLOPT_PROXYPORT,$proxyport); |
| 1666 | - if($proxyusername) |
|
| 1666 | + if ($proxyusername) |
|
| 1667 | 1667 | {
|
| 1668 | 1668 | curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyusername.':'.$proxypassword); |
| 1669 | 1669 | if (defined('CURLOPT_PROXYAUTH'))
|
@@ -1685,7 +1685,7 @@ discard block |
||
| 1685 | 1685 | $cookieheader = ''; |
| 1686 | 1686 | foreach ($this->cookies as $name => $cookie) |
| 1687 | 1687 | {
|
| 1688 | - $cookieheader .= $name . '=' . $cookie['value'] . '; '; |
|
| 1688 | + $cookieheader .= $name.'='.$cookie['value'].'; '; |
|
| 1689 | 1689 | } |
| 1690 | 1690 | curl_setopt($curl, CURLOPT_COOKIE, substr($cookieheader, 0, -2)); |
| 1691 | 1691 | } |
@@ -1697,40 +1697,40 @@ discard block |
||
| 1697 | 1697 | |
| 1698 | 1698 | $result = curl_exec($curl); |
| 1699 | 1699 | |
| 1700 | - if ($this->debug > 1) |
|
| 1700 | + if ($this->debug>1) |
|
| 1701 | 1701 | {
|
| 1702 | 1702 | print "<PRE>\n---CURL INFO---\n"; |
| 1703 | - foreach(curl_getinfo($curl) as $name => $val) |
|
| 1703 | + foreach (curl_getinfo($curl) as $name => $val) |
|
| 1704 | 1704 | {
|
| 1705 | 1705 | if (is_array($val)) |
| 1706 | 1706 | {
|
| 1707 | 1707 | $val = implode("\n", $val);
|
| 1708 | 1708 | } |
| 1709 | - print $name . ': ' . htmlentities($val) . "\n"; |
|
| 1709 | + print $name.': '.htmlentities($val)."\n"; |
|
| 1710 | 1710 | } |
| 1711 | 1711 | |
| 1712 | 1712 | print "---END---\n</PRE>"; |
| 1713 | 1713 | } |
| 1714 | 1714 | |
| 1715 | - if(!$result) /// @todo we should use a better check here - what if we get back '' or '0'? |
|
| 1715 | + if (!$result) /// @todo we should use a better check here - what if we get back '' or '0'? |
|
| 1716 | 1716 | {
|
| 1717 | - $this->errstr='no response'; |
|
| 1718 | - $resp=new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['curl_fail'], $GLOBALS['xmlrpcstr']['curl_fail']. ': '. curl_error($curl)); |
|
| 1717 | + $this->errstr = 'no response'; |
|
| 1718 | + $resp = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['curl_fail'], $GLOBALS['xmlrpcstr']['curl_fail'].': '.curl_error($curl)); |
|
| 1719 | 1719 | curl_close($curl); |
| 1720 | - if($keepalive) |
|
| 1720 | + if ($keepalive) |
|
| 1721 | 1721 | {
|
| 1722 | 1722 | $this->xmlrpc_curl_handle = null; |
| 1723 | 1723 | } |
| 1724 | 1724 | } |
| 1725 | 1725 | else |
| 1726 | 1726 | {
|
| 1727 | - if(!$keepalive) |
|
| 1727 | + if (!$keepalive) |
|
| 1728 | 1728 | {
|
| 1729 | 1729 | curl_close($curl); |
| 1730 | 1730 | } |
| 1731 | - $resp =& $msg->parseResponse($result, true, $this->return_type); |
|
| 1731 | + $resp = & $msg->parseResponse($result, true, $this->return_type); |
|
| 1732 | 1732 | // if we got back a 302, we can not reuse the curl handle for later calls |
| 1733 | - if($resp->faultCode() == $GLOBALS['xmlrpcerr']['http_error'] && $keepalive) |
|
| 1733 | + if ($resp->faultCode() == $GLOBALS['xmlrpcerr']['http_error'] && $keepalive) |
|
| 1734 | 1734 | {
|
| 1735 | 1735 | curl_close($curl); |
| 1736 | 1736 | $this->xmlrpc_curl_handle = null; |
@@ -1761,16 +1761,16 @@ discard block |
||
| 1761 | 1761 | * @return array |
| 1762 | 1762 | * @access public |
| 1763 | 1763 | */ |
| 1764 | - function multicall($msgs, $timeout=0, $method='', $fallback=true) |
|
| 1764 | + function multicall($msgs, $timeout = 0, $method = '', $fallback = true) |
|
| 1765 | 1765 | {
|
| 1766 | 1766 | if ($method == '') |
| 1767 | 1767 | {
|
| 1768 | 1768 | $method = $this->method; |
| 1769 | 1769 | } |
| 1770 | - if(!$this->no_multicall) |
|
| 1770 | + if (!$this->no_multicall) |
|
| 1771 | 1771 | {
|
| 1772 | 1772 | $results = $this->_try_multicall($msgs, $timeout, $method); |
| 1773 | - if(is_array($results)) |
|
| 1773 | + if (is_array($results)) |
|
| 1774 | 1774 | {
|
| 1775 | 1775 | // System.multicall succeeded |
| 1776 | 1776 | return $results; |
@@ -1809,9 +1809,9 @@ discard block |
||
| 1809 | 1809 | {
|
| 1810 | 1810 | // system.multicall is (probably) unsupported by server: |
| 1811 | 1811 | // emulate multicall via multiple requests |
| 1812 | - foreach($msgs as $msg) |
|
| 1812 | + foreach ($msgs as $msg) |
|
| 1813 | 1813 | {
|
| 1814 | - $results[] =& $this->send($msg, $timeout, $method); |
|
| 1814 | + $results[] = & $this->send($msg, $timeout, $method); |
|
| 1815 | 1815 | } |
| 1816 | 1816 | } |
| 1817 | 1817 | else |
@@ -1819,7 +1819,7 @@ discard block |
||
| 1819 | 1819 | // user does NOT want to fallback on many single calls: |
| 1820 | 1820 | // since we should always return an array of responses, |
| 1821 | 1821 | // return an array with the same error repeated n times |
| 1822 | - foreach($msgs as $msg) |
|
| 1822 | + foreach ($msgs as $msg) |
|
| 1823 | 1823 | {
|
| 1824 | 1824 | $results[] = $result; |
| 1825 | 1825 | } |
@@ -1837,12 +1837,12 @@ discard block |
||
| 1837 | 1837 | {
|
| 1838 | 1838 | // Construct multicall message |
| 1839 | 1839 | $calls = array(); |
| 1840 | - foreach($msgs as $msg) |
|
| 1840 | + foreach ($msgs as $msg) |
|
| 1841 | 1841 | {
|
| 1842 | - $call['methodName'] = new xmlrpcval($msg->method(),'string'); |
|
| 1842 | + $call['methodName'] = new xmlrpcval($msg->method(), 'string'); |
|
| 1843 | 1843 | $numParams = $msg->getNumParams(); |
| 1844 | 1844 | $params = array(); |
| 1845 | - for($i = 0; $i < $numParams; $i++) |
|
| 1845 | + for ($i = 0; $i<$numParams; $i++) |
|
| 1846 | 1846 | {
|
| 1847 | 1847 | $params[$i] = $msg->getParam($i); |
| 1848 | 1848 | } |
@@ -1853,9 +1853,9 @@ discard block |
||
| 1853 | 1853 | $multicall->addParam(new xmlrpcval($calls, 'array')); |
| 1854 | 1854 | |
| 1855 | 1855 | // Attempt RPC call |
| 1856 | - $result =& $this->send($multicall, $timeout, $method); |
|
| 1856 | + $result = & $this->send($multicall, $timeout, $method); |
|
| 1857 | 1857 | |
| 1858 | - if($result->faultCode() != 0) |
|
| 1858 | + if ($result->faultCode() != 0) |
|
| 1859 | 1859 | {
|
| 1860 | 1860 | // call to system.multicall failed |
| 1861 | 1861 | return $result; |
@@ -1872,29 +1872,29 @@ discard block |
||
| 1872 | 1872 | {
|
| 1873 | 1873 | ///@todo test this code branch... |
| 1874 | 1874 | $rets = $result->value(); |
| 1875 | - if(!is_array($rets)) |
|
| 1875 | + if (!is_array($rets)) |
|
| 1876 | 1876 | {
|
| 1877 | - return false; // bad return type from system.multicall |
|
| 1877 | + return false; // bad return type from system.multicall |
|
| 1878 | 1878 | } |
| 1879 | 1879 | $numRets = count($rets); |
| 1880 | - if($numRets != count($msgs)) |
|
| 1880 | + if ($numRets != count($msgs)) |
|
| 1881 | 1881 | {
|
| 1882 | - return false; // wrong number of return values. |
|
| 1882 | + return false; // wrong number of return values. |
|
| 1883 | 1883 | } |
| 1884 | 1884 | |
| 1885 | 1885 | $response = array(); |
| 1886 | - for($i = 0; $i < $numRets; $i++) |
|
| 1886 | + for ($i = 0; $i<$numRets; $i++) |
|
| 1887 | 1887 | {
|
| 1888 | 1888 | $val = $rets[$i]; |
| 1889 | 1889 | if (!is_array($val)) {
|
| 1890 | 1890 | return false; |
| 1891 | 1891 | } |
| 1892 | - switch(count($val)) |
|
| 1892 | + switch (count($val)) |
|
| 1893 | 1893 | {
|
| 1894 | 1894 | case 1: |
| 1895 | - if(!isset($val[0])) |
|
| 1895 | + if (!isset($val[0])) |
|
| 1896 | 1896 | {
|
| 1897 | - return false; // Bad value |
|
| 1897 | + return false; // Bad value |
|
| 1898 | 1898 | } |
| 1899 | 1899 | // Normal return value |
| 1900 | 1900 | $response[$i] = new xmlrpcresp($val[0], 0, '', 'phpvals'); |
@@ -1902,12 +1902,12 @@ discard block |
||
| 1902 | 1902 | case 2: |
| 1903 | 1903 | /// @todo remove usage of @: it is apparently quite slow |
| 1904 | 1904 | $code = @$val['faultCode']; |
| 1905 | - if(!is_int($code)) |
|
| 1905 | + if (!is_int($code)) |
|
| 1906 | 1906 | {
|
| 1907 | 1907 | return false; |
| 1908 | 1908 | } |
| 1909 | 1909 | $str = @$val['faultString']; |
| 1910 | - if(!is_string($str)) |
|
| 1910 | + if (!is_string($str)) |
|
| 1911 | 1911 | {
|
| 1912 | 1912 | return false; |
| 1913 | 1913 | } |
@@ -1922,38 +1922,38 @@ discard block |
||
| 1922 | 1922 | else // return type == 'xmlrpcvals' |
| 1923 | 1923 | {
|
| 1924 | 1924 | $rets = $result->value(); |
| 1925 | - if($rets->kindOf() != 'array') |
|
| 1925 | + if ($rets->kindOf() != 'array') |
|
| 1926 | 1926 | {
|
| 1927 | - return false; // bad return type from system.multicall |
|
| 1927 | + return false; // bad return type from system.multicall |
|
| 1928 | 1928 | } |
| 1929 | 1929 | $numRets = $rets->arraysize(); |
| 1930 | - if($numRets != count($msgs)) |
|
| 1930 | + if ($numRets != count($msgs)) |
|
| 1931 | 1931 | {
|
| 1932 | - return false; // wrong number of return values. |
|
| 1932 | + return false; // wrong number of return values. |
|
| 1933 | 1933 | } |
| 1934 | 1934 | |
| 1935 | 1935 | $response = array(); |
| 1936 | - for($i = 0; $i < $numRets; $i++) |
|
| 1936 | + for ($i = 0; $i<$numRets; $i++) |
|
| 1937 | 1937 | {
|
| 1938 | 1938 | $val = $rets->arraymem($i); |
| 1939 | - switch($val->kindOf()) |
|
| 1939 | + switch ($val->kindOf()) |
|
| 1940 | 1940 | {
|
| 1941 | 1941 | case 'array': |
| 1942 | - if($val->arraysize() != 1) |
|
| 1942 | + if ($val->arraysize() != 1) |
|
| 1943 | 1943 | {
|
| 1944 | - return false; // Bad value |
|
| 1944 | + return false; // Bad value |
|
| 1945 | 1945 | } |
| 1946 | 1946 | // Normal return value |
| 1947 | 1947 | $response[$i] = new xmlrpcresp($val->arraymem(0)); |
| 1948 | 1948 | break; |
| 1949 | 1949 | case 'struct': |
| 1950 | 1950 | $code = $val->structmem('faultCode');
|
| 1951 | - if($code->kindOf() != 'scalar' || $code->scalartyp() != 'int') |
|
| 1951 | + if ($code->kindOf() != 'scalar' || $code->scalartyp() != 'int') |
|
| 1952 | 1952 | {
|
| 1953 | 1953 | return false; |
| 1954 | 1954 | } |
| 1955 | 1955 | $str = $val->structmem('faultString');
|
| 1956 | - if($str->kindOf() != 'scalar' || $str->scalartyp() != 'string') |
|
| 1956 | + if ($str->kindOf() != 'scalar' || $str->scalartyp() != 'string') |
|
| 1957 | 1957 | {
|
| 1958 | 1958 | return false; |
| 1959 | 1959 | } |
@@ -1990,9 +1990,9 @@ discard block |
||
| 1990 | 1990 | * NB: as of now we do not do it, since it might be either an xmlrpcval or a plain |
| 1991 | 1991 | * php val, or a complete xml chunk, depending on usage of xmlrpc_client::send() inside which creator is called... |
| 1992 | 1992 | */ |
| 1993 | - function __construct($val, $fcode = 0, $fstr = '', $valtyp='') |
|
| 1993 | + function __construct($val, $fcode = 0, $fstr = '', $valtyp = '') |
|
| 1994 | 1994 | {
|
| 1995 | - if($fcode != 0) |
|
| 1995 | + if ($fcode != 0) |
|
| 1996 | 1996 | {
|
| 1997 | 1997 | // error response |
| 1998 | 1998 | $this->errno = $fcode; |
@@ -2031,7 +2031,7 @@ discard block |
||
| 2031 | 2031 | /** |
| 2032 | 2032 | * @deprecated |
| 2033 | 2033 | */ |
| 2034 | - function xmlrpcresp($val, $fcode = 0, $fstr = '', $valtyp='') |
|
| 2034 | + function xmlrpcresp($val, $fcode = 0, $fstr = '', $valtyp = '') |
|
| 2035 | 2035 | {
|
| 2036 | 2036 | self::__construct($val, $fcode, $fstr, $valtyp); |
| 2037 | 2037 | } |
@@ -2088,10 +2088,10 @@ discard block |
||
| 2088 | 2088 | * @return string the xml representation of the response |
| 2089 | 2089 | * @access public |
| 2090 | 2090 | */ |
| 2091 | - function serialize($charset_encoding='') |
|
| 2091 | + function serialize($charset_encoding = '') |
|
| 2092 | 2092 | {
|
| 2093 | 2093 | if ($charset_encoding != '') |
| 2094 | - $this->content_type = 'text/xml; charset=' . $charset_encoding; |
|
| 2094 | + $this->content_type = 'text/xml; charset='.$charset_encoding; |
|
| 2095 | 2095 | else |
| 2096 | 2096 | $this->content_type = 'text/xml'; |
| 2097 | 2097 | if ($GLOBALS['xmlrpc_null_apache_encoding']) |
@@ -2102,24 +2102,24 @@ discard block |
||
| 2102 | 2102 | {
|
| 2103 | 2103 | $result = "<methodResponse>\n"; |
| 2104 | 2104 | } |
| 2105 | - if($this->errno) |
|
| 2105 | + if ($this->errno) |
|
| 2106 | 2106 | {
|
| 2107 | 2107 | // G. Giunta 2005/2/13: let non-ASCII response messages be tolerated by clients |
| 2108 | 2108 | // by xml-encoding non ascii chars |
| 2109 | - $result .= "<fault>\n" . |
|
| 2110 | -"<value>\n<struct><member><name>faultCode</name>\n<value><int>" . $this->errno . |
|
| 2111 | -"</int></value>\n</member>\n<member>\n<name>faultString</name>\n<value><string>" . |
|
| 2112 | -xmlrpc_encode_entitites($this->errstr, $GLOBALS['xmlrpc_internalencoding'], $charset_encoding) . "</string></value>\n</member>\n" . |
|
| 2109 | + $result .= "<fault>\n". |
|
| 2110 | +"<value>\n<struct><member><name>faultCode</name>\n<value><int>".$this->errno. |
|
| 2111 | +"</int></value>\n</member>\n<member>\n<name>faultString</name>\n<value><string>". |
|
| 2112 | +xmlrpc_encode_entitites($this->errstr, $GLOBALS['xmlrpc_internalencoding'], $charset_encoding)."</string></value>\n</member>\n". |
|
| 2113 | 2113 | "</struct>\n</value>\n</fault>"; |
| 2114 | 2114 | } |
| 2115 | 2115 | else |
| 2116 | 2116 | {
|
| 2117 | - if(!is_object($this->val) || !is_a($this->val, 'xmlrpcval')) |
|
| 2117 | + if (!is_object($this->val) || !is_a($this->val, 'xmlrpcval')) |
|
| 2118 | 2118 | {
|
| 2119 | 2119 | if (is_string($this->val) && $this->valtyp == 'xml') |
| 2120 | 2120 | {
|
| 2121 | - $result .= "<params>\n<param>\n" . |
|
| 2122 | - $this->val . |
|
| 2121 | + $result .= "<params>\n<param>\n". |
|
| 2122 | + $this->val. |
|
| 2123 | 2123 | "</param>\n</params>"; |
| 2124 | 2124 | } |
| 2125 | 2125 | else |
@@ -2130,8 +2130,8 @@ discard block |
||
| 2130 | 2130 | } |
| 2131 | 2131 | else |
| 2132 | 2132 | {
|
| 2133 | - $result .= "<params>\n<param>\n" . |
|
| 2134 | - $this->val->serialize($charset_encoding) . |
|
| 2133 | + $result .= "<params>\n<param>\n". |
|
| 2134 | + $this->val->serialize($charset_encoding). |
|
| 2135 | 2135 | "</param>\n</params>"; |
| 2136 | 2136 | } |
| 2137 | 2137 | } |
@@ -2145,20 +2145,20 @@ discard block |
||
| 2145 | 2145 | {
|
| 2146 | 2146 | var $payload; |
| 2147 | 2147 | var $methodname; |
| 2148 | - var $params=array(); |
|
| 2149 | - var $debug=0; |
|
| 2148 | + var $params = array(); |
|
| 2149 | + var $debug = 0; |
|
| 2150 | 2150 | var $content_type = 'text/xml'; |
| 2151 | 2151 | |
| 2152 | 2152 | /** |
| 2153 | 2153 | * @param string $meth the name of the method to invoke |
| 2154 | 2154 | * @param array $pars array of parameters to be passed to the method (xmlrpcval objects) |
| 2155 | 2155 | */ |
| 2156 | - function __construct($meth, $pars=0) |
|
| 2156 | + function __construct($meth, $pars = 0) |
|
| 2157 | 2157 | {
|
| 2158 | - $this->methodname=$meth; |
|
| 2159 | - if(is_array($pars) && count($pars)>0) |
|
| 2158 | + $this->methodname = $meth; |
|
| 2159 | + if (is_array($pars) && count($pars)>0) |
|
| 2160 | 2160 | {
|
| 2161 | - for($i=0; $i<count($pars); $i++) |
|
| 2161 | + for ($i = 0; $i<count($pars); $i++) |
|
| 2162 | 2162 | {
|
| 2163 | 2163 | $this->addParam($pars[$i]); |
| 2164 | 2164 | } |
@@ -2168,7 +2168,7 @@ discard block |
||
| 2168 | 2168 | /** |
| 2169 | 2169 | * @deprecated |
| 2170 | 2170 | */ |
| 2171 | - function xmlrpcmsg($meth, $pars=0) |
|
| 2171 | + function xmlrpcmsg($meth, $pars = 0) |
|
| 2172 | 2172 | {
|
| 2173 | 2173 | self::__construct($meth, $pars); |
| 2174 | 2174 | } |
@@ -2176,15 +2176,15 @@ discard block |
||
| 2176 | 2176 | /** |
| 2177 | 2177 | * @access private |
| 2178 | 2178 | */ |
| 2179 | - function xml_header($charset_encoding='') |
|
| 2179 | + function xml_header($charset_encoding = '') |
|
| 2180 | 2180 | {
|
| 2181 | 2181 | if ($charset_encoding != '') |
| 2182 | 2182 | {
|
| 2183 | - return "<?xml version=\"1.0\" encoding=\"$charset_encoding\" ?" . ">\n<methodCall>\n"; |
|
| 2183 | + return "<?xml version=\"1.0\" encoding=\"$charset_encoding\" ?".">\n<methodCall>\n"; |
|
| 2184 | 2184 | } |
| 2185 | 2185 | else |
| 2186 | 2186 | {
|
| 2187 | - return "<?xml version=\"1.0\"?" . ">\n<methodCall>\n"; |
|
| 2187 | + return "<?xml version=\"1.0\"?".">\n<methodCall>\n"; |
|
| 2188 | 2188 | } |
| 2189 | 2189 | } |
| 2190 | 2190 | |
@@ -2207,23 +2207,23 @@ discard block |
||
| 2207 | 2207 | /** |
| 2208 | 2208 | * @access private |
| 2209 | 2209 | */ |
| 2210 | - function createPayload($charset_encoding='') |
|
| 2210 | + function createPayload($charset_encoding = '') |
|
| 2211 | 2211 | {
|
| 2212 | 2212 | if ($charset_encoding != '') |
| 2213 | - $this->content_type = 'text/xml; charset=' . $charset_encoding; |
|
| 2213 | + $this->content_type = 'text/xml; charset='.$charset_encoding; |
|
| 2214 | 2214 | else |
| 2215 | 2215 | $this->content_type = 'text/xml'; |
| 2216 | - $this->payload=$this->xml_header($charset_encoding); |
|
| 2217 | - $this->payload.='<methodName>' . xmlrpc_encode_entitites($this->methodname, $GLOBALS['xmlrpc_internalencoding'], $charset_encoding) . "</methodName>\n"; |
|
| 2218 | - $this->payload.="<params>\n"; |
|
| 2219 | - for($i=0; $i<count($this->params); $i++) |
|
| 2216 | + $this->payload = $this->xml_header($charset_encoding); |
|
| 2217 | + $this->payload .= '<methodName>'.xmlrpc_encode_entitites($this->methodname, $GLOBALS['xmlrpc_internalencoding'], $charset_encoding)."</methodName>\n"; |
|
| 2218 | + $this->payload .= "<params>\n"; |
|
| 2219 | + for ($i = 0; $i<count($this->params); $i++) |
|
| 2220 | 2220 | {
|
| 2221 | - $p=$this->params[$i]; |
|
| 2222 | - $this->payload.="<param>\n" . $p->serialize($charset_encoding) . |
|
| 2221 | + $p = $this->params[$i]; |
|
| 2222 | + $this->payload .= "<param>\n".$p->serialize($charset_encoding). |
|
| 2223 | 2223 | "</param>\n"; |
| 2224 | 2224 | } |
| 2225 | - $this->payload.="</params>\n"; |
|
| 2226 | - $this->payload.=$this->xml_footer(); |
|
| 2225 | + $this->payload .= "</params>\n"; |
|
| 2226 | + $this->payload .= $this->xml_footer(); |
|
| 2227 | 2227 | } |
| 2228 | 2228 | |
| 2229 | 2229 | /** |
@@ -2232,11 +2232,11 @@ discard block |
||
| 2232 | 2232 | * @return string the method that will be invoked |
| 2233 | 2233 | * @access public |
| 2234 | 2234 | */ |
| 2235 | - function method($meth='') |
|
| 2235 | + function method($meth = '') |
|
| 2236 | 2236 | {
|
| 2237 | - if($meth!='') |
|
| 2237 | + if ($meth != '') |
|
| 2238 | 2238 | {
|
| 2239 | - $this->methodname=$meth; |
|
| 2239 | + $this->methodname = $meth; |
|
| 2240 | 2240 | } |
| 2241 | 2241 | return $this->methodname; |
| 2242 | 2242 | } |
@@ -2247,7 +2247,7 @@ discard block |
||
| 2247 | 2247 | * @return string the xml representation of the message, xml prologue included |
| 2248 | 2248 | * @access public |
| 2249 | 2249 | */ |
| 2250 | - function serialize($charset_encoding='') |
|
| 2250 | + function serialize($charset_encoding = '') |
|
| 2251 | 2251 | {
|
| 2252 | 2252 | $this->createPayload($charset_encoding); |
| 2253 | 2253 | return $this->payload; |
@@ -2262,9 +2262,9 @@ discard block |
||
| 2262 | 2262 | function addParam($par) |
| 2263 | 2263 | {
|
| 2264 | 2264 | // add check: do not add to self params which are not xmlrpcvals |
| 2265 | - if(is_object($par) && is_a($par, 'xmlrpcval')) |
|
| 2265 | + if (is_object($par) && is_a($par, 'xmlrpcval')) |
|
| 2266 | 2266 | {
|
| 2267 | - $this->params[]=$par; |
|
| 2267 | + $this->params[] = $par; |
|
| 2268 | 2268 | return true; |
| 2269 | 2269 | } |
| 2270 | 2270 | else |
@@ -2303,13 +2303,13 @@ discard block |
||
| 2303 | 2303 | */ |
| 2304 | 2304 | function &parseResponseFile($fp) |
| 2305 | 2305 | {
|
| 2306 | - $ipd=''; |
|
| 2307 | - while($data=fread($fp, 32768)) |
|
| 2306 | + $ipd = ''; |
|
| 2307 | + while ($data = fread($fp, 32768)) |
|
| 2308 | 2308 | {
|
| 2309 | - $ipd.=$data; |
|
| 2309 | + $ipd .= $data; |
|
| 2310 | 2310 | } |
| 2311 | 2311 | //fclose($fp); |
| 2312 | - $r =& $this->parseResponse($ipd); |
|
| 2312 | + $r = & $this->parseResponse($ipd); |
|
| 2313 | 2313 | return $r; |
| 2314 | 2314 | } |
| 2315 | 2315 | |
@@ -2317,22 +2317,22 @@ discard block |
||
| 2317 | 2317 | * Parses HTTP headers and separates them from data. |
| 2318 | 2318 | * @access private |
| 2319 | 2319 | */ |
| 2320 | - function &parseResponseHeaders(&$data, $headers_processed=false) |
|
| 2320 | + function &parseResponseHeaders(&$data, $headers_processed = false) |
|
| 2321 | 2321 | {
|
| 2322 | 2322 | // Support "web-proxy-tunelling" connections for https through proxies |
| 2323 | - if(preg_match('/^HTTP\/1\.[0-1] 200 Connection established/', $data))
|
|
| 2323 | + if (preg_match('/^HTTP\/1\.[0-1] 200 Connection established/', $data))
|
|
| 2324 | 2324 | {
|
| 2325 | 2325 | // Look for CR/LF or simple LF as line separator, |
| 2326 | 2326 | // (even though it is not valid http) |
| 2327 | - $pos = strpos($data,"\r\n\r\n"); |
|
| 2328 | - if($pos || is_int($pos)) |
|
| 2327 | + $pos = strpos($data, "\r\n\r\n"); |
|
| 2328 | + if ($pos || is_int($pos)) |
|
| 2329 | 2329 | {
|
| 2330 | 2330 | $bd = $pos+4; |
| 2331 | 2331 | } |
| 2332 | 2332 | else |
| 2333 | 2333 | {
|
| 2334 | - $pos = strpos($data,"\n\n"); |
|
| 2335 | - if($pos || is_int($pos)) |
|
| 2334 | + $pos = strpos($data, "\n\n"); |
|
| 2335 | + if ($pos || is_int($pos)) |
|
| 2336 | 2336 | {
|
| 2337 | 2337 | $bd = $pos+2; |
| 2338 | 2338 | } |
@@ -2351,28 +2351,28 @@ discard block |
||
| 2351 | 2351 | else |
| 2352 | 2352 | {
|
| 2353 | 2353 | error_log('XML-RPC: '.__METHOD__.': HTTPS via proxy error, tunnel connection possibly failed');
|
| 2354 | - $r=new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['http_error'], $GLOBALS['xmlrpcstr']['http_error']. ' (HTTPS via proxy error, tunnel connection possibly failed)'); |
|
| 2354 | + $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['http_error'], $GLOBALS['xmlrpcstr']['http_error'].' (HTTPS via proxy error, tunnel connection possibly failed)'); |
|
| 2355 | 2355 | return $r; |
| 2356 | 2356 | } |
| 2357 | 2357 | } |
| 2358 | 2358 | |
| 2359 | 2359 | // Strip HTTP 1.1 100 Continue header if present |
| 2360 | - while(preg_match('/^HTTP\/1\.1 1[0-9]{2} /', $data))
|
|
| 2360 | + while (preg_match('/^HTTP\/1\.1 1[0-9]{2} /', $data))
|
|
| 2361 | 2361 | {
|
| 2362 | 2362 | $pos = strpos($data, 'HTTP', 12); |
| 2363 | 2363 | // server sent a Continue header without any (valid) content following... |
| 2364 | 2364 | // give the client a chance to know it |
| 2365 | - if(!$pos && !is_int($pos)) // works fine in php 3, 4 and 5 |
|
| 2365 | + if (!$pos && !is_int($pos)) // works fine in php 3, 4 and 5 |
|
| 2366 | 2366 | {
|
| 2367 | 2367 | break; |
| 2368 | 2368 | } |
| 2369 | 2369 | $data = substr($data, $pos); |
| 2370 | 2370 | } |
| 2371 | - if(!preg_match('/^HTTP\/[0-9.]+ 200 /', $data))
|
|
| 2371 | + if (!preg_match('/^HTTP\/[0-9.]+ 200 /', $data))
|
|
| 2372 | 2372 | {
|
| 2373 | - $errstr= substr($data, 0, strpos($data, "\n")-1); |
|
| 2374 | - error_log('XML-RPC: '.__METHOD__.': HTTP error, got response: ' .$errstr);
|
|
| 2375 | - $r=new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['http_error'], $GLOBALS['xmlrpcstr']['http_error']. ' (' . $errstr . ')');
|
|
| 2373 | + $errstr = substr($data, 0, strpos($data, "\n")-1); |
|
| 2374 | + error_log('XML-RPC: '.__METHOD__.': HTTP error, got response: '.$errstr);
|
|
| 2375 | + $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['http_error'], $GLOBALS['xmlrpcstr']['http_error'].' ('.$errstr.')');
|
|
| 2376 | 2376 | return $r; |
| 2377 | 2377 | } |
| 2378 | 2378 | |
@@ -2381,15 +2381,15 @@ discard block |
||
| 2381 | 2381 | |
| 2382 | 2382 | // be tolerant to usage of \n instead of \r\n to separate headers and data |
| 2383 | 2383 | // (even though it is not valid http) |
| 2384 | - $pos = strpos($data,"\r\n\r\n"); |
|
| 2385 | - if($pos || is_int($pos)) |
|
| 2384 | + $pos = strpos($data, "\r\n\r\n"); |
|
| 2385 | + if ($pos || is_int($pos)) |
|
| 2386 | 2386 | {
|
| 2387 | 2387 | $bd = $pos+4; |
| 2388 | 2388 | } |
| 2389 | 2389 | else |
| 2390 | 2390 | {
|
| 2391 | - $pos = strpos($data,"\n\n"); |
|
| 2392 | - if($pos || is_int($pos)) |
|
| 2391 | + $pos = strpos($data, "\n\n"); |
|
| 2392 | + if ($pos || is_int($pos)) |
|
| 2393 | 2393 | {
|
| 2394 | 2394 | $bd = $pos+2; |
| 2395 | 2395 | } |
@@ -2402,11 +2402,11 @@ discard block |
||
| 2402 | 2402 | } |
| 2403 | 2403 | // be tolerant to line endings, and extra empty lines |
| 2404 | 2404 | $ar = preg_split("/\r?\n/", trim(substr($data, 0, $pos)));
|
| 2405 | - foreach($ar as $line) |
|
| 2405 | + foreach ($ar as $line) |
|
| 2406 | 2406 | {
|
| 2407 | 2407 | // take care of multi-line headers and cookies |
| 2408 | - $arr = explode(':',$line,2);
|
|
| 2409 | - if(count($arr) > 1) |
|
| 2408 | + $arr = explode(':', $line, 2);
|
|
| 2409 | + if (count($arr)>1) |
|
| 2410 | 2410 | {
|
| 2411 | 2411 | $header_name = strtolower(trim($arr[0])); |
| 2412 | 2412 | /// @todo some other headers (the ones that allow a CSV list of values) |
@@ -2430,7 +2430,7 @@ discard block |
||
| 2430 | 2430 | // glue together all received cookies, using a comma to separate them |
| 2431 | 2431 | // (same as php does with getallheaders()) |
| 2432 | 2432 | if (isset($GLOBALS['_xh']['headers'][$header_name])) |
| 2433 | - $GLOBALS['_xh']['headers'][$header_name] .= ', ' . trim($cookie); |
|
| 2433 | + $GLOBALS['_xh']['headers'][$header_name] .= ', '.trim($cookie); |
|
| 2434 | 2434 | else |
| 2435 | 2435 | $GLOBALS['_xh']['headers'][$header_name] = trim($cookie); |
| 2436 | 2436 | // parse cookie attributes, in case user wants to correctly honour them |
@@ -2464,23 +2464,23 @@ discard block |
||
| 2464 | 2464 | $GLOBALS['_xh']['headers'][$header_name] = trim($arr[1]); |
| 2465 | 2465 | } |
| 2466 | 2466 | } |
| 2467 | - elseif(isset($header_name)) |
|
| 2467 | + elseif (isset($header_name)) |
|
| 2468 | 2468 | {
|
| 2469 | 2469 | /// @todo version1 cookies might span multiple lines, thus breaking the parsing above |
| 2470 | - $GLOBALS['_xh']['headers'][$header_name] .= ' ' . trim($line); |
|
| 2470 | + $GLOBALS['_xh']['headers'][$header_name] .= ' '.trim($line); |
|
| 2471 | 2471 | } |
| 2472 | 2472 | } |
| 2473 | 2473 | |
| 2474 | 2474 | $data = substr($data, $bd); |
| 2475 | 2475 | |
| 2476 | - if($this->debug && count($GLOBALS['_xh']['headers'])) |
|
| 2476 | + if ($this->debug && count($GLOBALS['_xh']['headers'])) |
|
| 2477 | 2477 | {
|
| 2478 | 2478 | print '<PRE>'; |
| 2479 | - foreach($GLOBALS['_xh']['headers'] as $header => $value) |
|
| 2479 | + foreach ($GLOBALS['_xh']['headers'] as $header => $value) |
|
| 2480 | 2480 | {
|
| 2481 | 2481 | print htmlentities("HEADER: $header: $value\n");
|
| 2482 | 2482 | } |
| 2483 | - foreach($GLOBALS['_xh']['cookies'] as $header => $value) |
|
| 2483 | + foreach ($GLOBALS['_xh']['cookies'] as $header => $value) |
|
| 2484 | 2484 | {
|
| 2485 | 2485 | print htmlentities("COOKIE: $header={$value['value']}\n");
|
| 2486 | 2486 | } |
@@ -2489,12 +2489,12 @@ discard block |
||
| 2489 | 2489 | |
| 2490 | 2490 | // if CURL was used for the call, http headers have been processed, |
| 2491 | 2491 | // and dechunking + reinflating have been carried out |
| 2492 | - if(!$headers_processed) |
|
| 2492 | + if (!$headers_processed) |
|
| 2493 | 2493 | {
|
| 2494 | 2494 | // Decode chunked encoding sent by http 1.1 servers |
| 2495 | - if(isset($GLOBALS['_xh']['headers']['transfer-encoding']) && $GLOBALS['_xh']['headers']['transfer-encoding'] == 'chunked') |
|
| 2495 | + if (isset($GLOBALS['_xh']['headers']['transfer-encoding']) && $GLOBALS['_xh']['headers']['transfer-encoding'] == 'chunked') |
|
| 2496 | 2496 | {
|
| 2497 | - if(!$data = decode_chunked($data)) |
|
| 2497 | + if (!$data = decode_chunked($data)) |
|
| 2498 | 2498 | {
|
| 2499 | 2499 | error_log('XML-RPC: '.__METHOD__.': errors occurred when trying to rebuild the chunked data received from server');
|
| 2500 | 2500 | $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['dechunk_fail'], $GLOBALS['xmlrpcstr']['dechunk_fail']); |
@@ -2504,25 +2504,25 @@ discard block |
||
| 2504 | 2504 | |
| 2505 | 2505 | // Decode gzip-compressed stuff |
| 2506 | 2506 | // code shamelessly inspired from nusoap library by Dietrich Ayala |
| 2507 | - if(isset($GLOBALS['_xh']['headers']['content-encoding'])) |
|
| 2507 | + if (isset($GLOBALS['_xh']['headers']['content-encoding'])) |
|
| 2508 | 2508 | {
|
| 2509 | 2509 | $GLOBALS['_xh']['headers']['content-encoding'] = str_replace('x-', '', $GLOBALS['_xh']['headers']['content-encoding']);
|
| 2510 | - if($GLOBALS['_xh']['headers']['content-encoding'] == 'deflate' || $GLOBALS['_xh']['headers']['content-encoding'] == 'gzip') |
|
| 2510 | + if ($GLOBALS['_xh']['headers']['content-encoding'] == 'deflate' || $GLOBALS['_xh']['headers']['content-encoding'] == 'gzip') |
|
| 2511 | 2511 | {
|
| 2512 | 2512 | // if decoding works, use it. else assume data wasn't gzencoded |
| 2513 | - if(function_exists('gzinflate'))
|
|
| 2513 | + if (function_exists('gzinflate'))
|
|
| 2514 | 2514 | {
|
| 2515 | - if($GLOBALS['_xh']['headers']['content-encoding'] == 'deflate' && $degzdata = @gzuncompress($data)) |
|
| 2515 | + if ($GLOBALS['_xh']['headers']['content-encoding'] == 'deflate' && $degzdata = @gzuncompress($data)) |
|
| 2516 | 2516 | {
|
| 2517 | 2517 | $data = $degzdata; |
| 2518 | - if($this->debug) |
|
| 2519 | - print "<PRE>---INFLATED RESPONSE---[".strlen($data)." chars]---\n" . htmlentities($data) . "\n---END---</PRE>"; |
|
| 2518 | + if ($this->debug) |
|
| 2519 | + print "<PRE>---INFLATED RESPONSE---[".strlen($data)." chars]---\n".htmlentities($data)."\n---END---</PRE>"; |
|
| 2520 | 2520 | } |
| 2521 | - elseif($GLOBALS['_xh']['headers']['content-encoding'] == 'gzip' && $degzdata = @gzinflate(substr($data, 10))) |
|
| 2521 | + elseif ($GLOBALS['_xh']['headers']['content-encoding'] == 'gzip' && $degzdata = @gzinflate(substr($data, 10))) |
|
| 2522 | 2522 | {
|
| 2523 | 2523 | $data = $degzdata; |
| 2524 | - if($this->debug) |
|
| 2525 | - print "<PRE>---INFLATED RESPONSE---[".strlen($data)." chars]---\n" . htmlentities($data) . "\n---END---</PRE>"; |
|
| 2524 | + if ($this->debug) |
|
| 2525 | + print "<PRE>---INFLATED RESPONSE---[".strlen($data)." chars]---\n".htmlentities($data)."\n---END---</PRE>"; |
|
| 2526 | 2526 | } |
| 2527 | 2527 | else |
| 2528 | 2528 | {
|
@@ -2543,7 +2543,7 @@ discard block |
||
| 2543 | 2543 | |
| 2544 | 2544 | // real stupid hack to avoid PHP complaining about returning NULL by ref |
| 2545 | 2545 | $r = null; |
| 2546 | - $r =& $r; |
|
| 2546 | + $r = & $r; |
|
| 2547 | 2547 | return $r; |
| 2548 | 2548 | } |
| 2549 | 2549 | |
@@ -2555,28 +2555,28 @@ discard block |
||
| 2555 | 2555 | * @return xmlrpcresp |
| 2556 | 2556 | * @access public |
| 2557 | 2557 | */ |
| 2558 | - function &parseResponse($data='', $headers_processed=false, $return_type='xmlrpcvals') |
|
| 2558 | + function &parseResponse($data = '', $headers_processed = false, $return_type = 'xmlrpcvals') |
|
| 2559 | 2559 | {
|
| 2560 | - if($this->debug) |
|
| 2560 | + if ($this->debug) |
|
| 2561 | 2561 | {
|
| 2562 | 2562 | //by maHo, replaced htmlspecialchars with htmlentities |
| 2563 | - print "<PRE>---GOT---\n" . htmlentities($data) . "\n---END---\n</PRE>"; |
|
| 2563 | + print "<PRE>---GOT---\n".htmlentities($data)."\n---END---\n</PRE>"; |
|
| 2564 | 2564 | } |
| 2565 | 2565 | |
| 2566 | - if($data == '') |
|
| 2566 | + if ($data == '') |
|
| 2567 | 2567 | {
|
| 2568 | 2568 | error_log('XML-RPC: '.__METHOD__.': no response received from server.');
|
| 2569 | 2569 | $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['no_data'], $GLOBALS['xmlrpcstr']['no_data']); |
| 2570 | 2570 | return $r; |
| 2571 | 2571 | } |
| 2572 | 2572 | |
| 2573 | - $GLOBALS['_xh']=array(); |
|
| 2573 | + $GLOBALS['_xh'] = array(); |
|
| 2574 | 2574 | |
| 2575 | 2575 | $raw_data = $data; |
| 2576 | 2576 | // parse the HTTP headers of the response, if present, and separate them from data |
| 2577 | - if(substr($data, 0, 4) == 'HTTP') |
|
| 2577 | + if (substr($data, 0, 4) == 'HTTP') |
|
| 2578 | 2578 | {
|
| 2579 | - $r =& $this->parseResponseHeaders($data, $headers_processed); |
|
| 2579 | + $r = & $this->parseResponseHeaders($data, $headers_processed); |
|
| 2580 | 2580 | if ($r) |
| 2581 | 2581 | {
|
| 2582 | 2582 | // failed processing of HTTP response headers |
@@ -2591,7 +2591,7 @@ discard block |
||
| 2591 | 2591 | $GLOBALS['_xh']['cookies'] = array(); |
| 2592 | 2592 | } |
| 2593 | 2593 | |
| 2594 | - if($this->debug) |
|
| 2594 | + if ($this->debug) |
|
| 2595 | 2595 | {
|
| 2596 | 2596 | $start = strpos($data, '<!-- SERVER DEBUG INFO (BASE64 ENCODED):'); |
| 2597 | 2597 | if ($start) |
@@ -2611,7 +2611,7 @@ discard block |
||
| 2611 | 2611 | // be tolerant of junk after methodResponse (e.g. javascript ads automatically inserted by free hosts) |
| 2612 | 2612 | // idea from Luca Mariano <[email protected]> originally in PEARified version of the lib |
| 2613 | 2613 | $pos = strrpos($data, '</methodResponse>'); |
| 2614 | - if($pos !== false) |
|
| 2614 | + if ($pos !== false) |
|
| 2615 | 2615 | {
|
| 2616 | 2616 | $data = substr($data, 0, $pos+17); |
| 2617 | 2617 | } |
@@ -2629,13 +2629,13 @@ discard block |
||
| 2629 | 2629 | // try to 'guestimate' the character encoding of the received response |
| 2630 | 2630 | $resp_encoding = guess_encoding(@$GLOBALS['_xh']['headers']['content-type'], $data); |
| 2631 | 2631 | |
| 2632 | - $GLOBALS['_xh']['ac']=''; |
|
| 2632 | + $GLOBALS['_xh']['ac'] = ''; |
|
| 2633 | 2633 | //$GLOBALS['_xh']['qt']=''; //unused... |
| 2634 | 2634 | $GLOBALS['_xh']['stack'] = array(); |
| 2635 | 2635 | $GLOBALS['_xh']['valuestack'] = array(); |
| 2636 | - $GLOBALS['_xh']['isf']=0; // 0 = OK, 1 for xmlrpc fault responses, 2 = invalid xmlrpc |
|
| 2637 | - $GLOBALS['_xh']['isf_reason']=''; |
|
| 2638 | - $GLOBALS['_xh']['rt']=''; // 'methodcall or 'methodresponse' |
|
| 2636 | + $GLOBALS['_xh']['isf'] = 0; // 0 = OK, 1 for xmlrpc fault responses, 2 = invalid xmlrpc |
|
| 2637 | + $GLOBALS['_xh']['isf_reason'] = ''; |
|
| 2638 | + $GLOBALS['_xh']['rt'] = ''; // 'methodcall or 'methodresponse' |
|
| 2639 | 2639 | |
| 2640 | 2640 | // Since parsing will fail if charset is not specified in the xml prologue, |
| 2641 | 2641 | // the encoding is not UTF8 and there are non-ascii chars in the text, we try to work round that... |
@@ -2649,7 +2649,7 @@ discard block |
||
| 2649 | 2649 | if (extension_loaded('mbstring')) {
|
| 2650 | 2650 | $data = mb_convert_encoding($data, 'UTF-8', $resp_encoding); |
| 2651 | 2651 | } else {
|
| 2652 | - error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of received request: ' . $resp_encoding);
|
|
| 2652 | + error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of received request: '.$resp_encoding);
|
|
| 2653 | 2653 | } |
| 2654 | 2654 | } |
| 2655 | 2655 | } |
@@ -2684,10 +2684,10 @@ discard block |
||
| 2684 | 2684 | xml_set_default_handler($parser, 'xmlrpc_dh'); |
| 2685 | 2685 | |
| 2686 | 2686 | // first error check: xml not well formed |
| 2687 | - if(!xml_parse($parser, $data, 1)) |
|
| 2687 | + if (!xml_parse($parser, $data, 1)) |
|
| 2688 | 2688 | {
|
| 2689 | 2689 | // thanks to Peter Kocks <[email protected]> |
| 2690 | - if((xml_get_current_line_number($parser)) == 1) |
|
| 2690 | + if ((xml_get_current_line_number($parser)) == 1) |
|
| 2691 | 2691 | {
|
| 2692 | 2692 | $errstr = 'XML error at line 1, check URL'; |
| 2693 | 2693 | } |
@@ -2698,9 +2698,9 @@ discard block |
||
| 2698 | 2698 | xml_get_current_line_number($parser), xml_get_current_column_number($parser)); |
| 2699 | 2699 | } |
| 2700 | 2700 | error_log($errstr); |
| 2701 | - $r=new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['invalid_return'], $GLOBALS['xmlrpcstr']['invalid_return'].' ('.$errstr.')');
|
|
| 2701 | + $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['invalid_return'], $GLOBALS['xmlrpcstr']['invalid_return'].' ('.$errstr.')');
|
|
| 2702 | 2702 | xml_parser_free($parser); |
| 2703 | - if($this->debug) |
|
| 2703 | + if ($this->debug) |
|
| 2704 | 2704 | {
|
| 2705 | 2705 | print $errstr; |
| 2706 | 2706 | } |
@@ -2711,7 +2711,7 @@ discard block |
||
| 2711 | 2711 | } |
| 2712 | 2712 | xml_parser_free($parser); |
| 2713 | 2713 | // second error check: xml well formed but not xml-rpc compliant |
| 2714 | - if ($GLOBALS['_xh']['isf'] > 1) |
|
| 2714 | + if ($GLOBALS['_xh']['isf']>1) |
|
| 2715 | 2715 | {
|
| 2716 | 2716 | if ($this->debug) |
| 2717 | 2717 | {
|
@@ -2719,7 +2719,7 @@ discard block |
||
| 2719 | 2719 | } |
| 2720 | 2720 | |
| 2721 | 2721 | $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['invalid_return'], |
| 2722 | - $GLOBALS['xmlrpcstr']['invalid_return'] . ' ' . $GLOBALS['_xh']['isf_reason']); |
|
| 2722 | + $GLOBALS['xmlrpcstr']['invalid_return'].' '.$GLOBALS['_xh']['isf_reason']); |
|
| 2723 | 2723 | } |
| 2724 | 2724 | // third error check: parsing of the response has somehow gone boink. |
| 2725 | 2725 | // NB: shall we omit this check, since we trust the parsing code? |
@@ -2728,7 +2728,7 @@ discard block |
||
| 2728 | 2728 | // something odd has happened |
| 2729 | 2729 | // and it's time to generate a client side error |
| 2730 | 2730 | // indicating something odd went on |
| 2731 | - $r=new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['invalid_return'], |
|
| 2731 | + $r = new xmlrpcresp(0, $GLOBALS['xmlrpcerr']['invalid_return'], |
|
| 2732 | 2732 | $GLOBALS['xmlrpcstr']['invalid_return']); |
| 2733 | 2733 | } |
| 2734 | 2734 | else |
@@ -2743,9 +2743,9 @@ discard block |
||
| 2743 | 2743 | } |
| 2744 | 2744 | |
| 2745 | 2745 | // note that using =& will raise an error if $GLOBALS['_xh']['st'] does not generate an object. |
| 2746 | - $v =& $GLOBALS['_xh']['value']; |
|
| 2746 | + $v = & $GLOBALS['_xh']['value']; |
|
| 2747 | 2747 | |
| 2748 | - if($GLOBALS['_xh']['isf']) |
|
| 2748 | + if ($GLOBALS['_xh']['isf']) |
|
| 2749 | 2749 | {
|
| 2750 | 2750 | /// @todo we should test here if server sent an int and a string, |
| 2751 | 2751 | /// and/or coerce them into such... |
@@ -2762,7 +2762,7 @@ discard block |
||
| 2762 | 2762 | $errstr = $v['faultString']; |
| 2763 | 2763 | } |
| 2764 | 2764 | |
| 2765 | - if($errno == 0) |
|
| 2765 | + if ($errno == 0) |
|
| 2766 | 2766 | {
|
| 2767 | 2767 | // FAULT returned, errno needs to reflect that |
| 2768 | 2768 | $errno = -1; |
@@ -2772,7 +2772,7 @@ discard block |
||
| 2772 | 2772 | } |
| 2773 | 2773 | else |
| 2774 | 2774 | {
|
| 2775 | - $r=new xmlrpcresp($v, 0, '', $return_type); |
|
| 2775 | + $r = new xmlrpcresp($v, 0, '', $return_type); |
|
| 2776 | 2776 | } |
| 2777 | 2777 | } |
| 2778 | 2778 | |
@@ -2785,26 +2785,26 @@ discard block |
||
| 2785 | 2785 | |
| 2786 | 2786 | class xmlrpcval |
| 2787 | 2787 | {
|
| 2788 | - var $me=array(); |
|
| 2789 | - var $mytype=0; |
|
| 2790 | - var $_php_class=null; |
|
| 2788 | + var $me = array(); |
|
| 2789 | + var $mytype = 0; |
|
| 2790 | + var $_php_class = null; |
|
| 2791 | 2791 | |
| 2792 | 2792 | /** |
| 2793 | 2793 | * @param mixed $val |
| 2794 | 2794 | * @param string $type any valid xmlrpc type name (lowercase). If null, 'string' is assumed |
| 2795 | 2795 | */ |
| 2796 | - function __construct($val=-1, $type='') |
|
| 2796 | + function __construct($val = -1, $type = '') |
|
| 2797 | 2797 | {
|
| 2798 | 2798 | /// @todo: optimization creep - do not call addXX, do it all inline. |
| 2799 | 2799 | /// downside: booleans will not be coerced anymore |
| 2800 | - if($val!==-1 || $type!='') |
|
| 2800 | + if ($val !== -1 || $type != '') |
|
| 2801 | 2801 | {
|
| 2802 | 2802 | // optimization creep: inlined all work done by constructor |
| 2803 | - switch($type) |
|
| 2803 | + switch ($type) |
|
| 2804 | 2804 | {
|
| 2805 | 2805 | case '': |
| 2806 | - $this->mytype=1; |
|
| 2807 | - $this->me['string']=$val; |
|
| 2806 | + $this->mytype = 1; |
|
| 2807 | + $this->me['string'] = $val; |
|
| 2808 | 2808 | break; |
| 2809 | 2809 | case 'i4': |
| 2810 | 2810 | case 'int': |
@@ -2814,16 +2814,16 @@ discard block |
||
| 2814 | 2814 | case 'dateTime.iso8601': |
| 2815 | 2815 | case 'base64': |
| 2816 | 2816 | case 'null': |
| 2817 | - $this->mytype=1; |
|
| 2818 | - $this->me[$type]=$val; |
|
| 2817 | + $this->mytype = 1; |
|
| 2818 | + $this->me[$type] = $val; |
|
| 2819 | 2819 | break; |
| 2820 | 2820 | case 'array': |
| 2821 | - $this->mytype=2; |
|
| 2822 | - $this->me['array']=$val; |
|
| 2821 | + $this->mytype = 2; |
|
| 2822 | + $this->me['array'] = $val; |
|
| 2823 | 2823 | break; |
| 2824 | 2824 | case 'struct': |
| 2825 | - $this->mytype=3; |
|
| 2826 | - $this->me['struct']=$val; |
|
| 2825 | + $this->mytype = 3; |
|
| 2826 | + $this->me['struct'] = $val; |
|
| 2827 | 2827 | break; |
| 2828 | 2828 | default: |
| 2829 | 2829 | error_log("XML-RPC: ".__METHOD__.": not a known type ($type)");
|
@@ -2850,7 +2850,7 @@ discard block |
||
| 2850 | 2850 | /** |
| 2851 | 2851 | * @deprecated |
| 2852 | 2852 | */ |
| 2853 | - function xmlrpcval($val=-1, $type='') |
|
| 2853 | + function xmlrpcval($val = -1, $type = '') |
|
| 2854 | 2854 | {
|
| 2855 | 2855 | self::__construct($val, $type); |
| 2856 | 2856 | } |
@@ -2861,10 +2861,10 @@ discard block |
||
| 2861 | 2861 | * @param string $type |
| 2862 | 2862 | * @return int 1 or 0 on failure |
| 2863 | 2863 | */ |
| 2864 | - function addScalar($val, $type='string') |
|
| 2864 | + function addScalar($val, $type = 'string') |
|
| 2865 | 2865 | {
|
| 2866 | - $typeof=@$GLOBALS['xmlrpcTypes'][$type]; |
|
| 2867 | - if($typeof!=1) |
|
| 2866 | + $typeof = @$GLOBALS['xmlrpcTypes'][$type]; |
|
| 2867 | + if ($typeof != 1) |
|
| 2868 | 2868 | {
|
| 2869 | 2869 | error_log("XML-RPC: ".__METHOD__.": not a scalar type ($type)");
|
| 2870 | 2870 | return 0; |
@@ -2873,19 +2873,19 @@ discard block |
||
| 2873 | 2873 | // coerce booleans into correct values |
| 2874 | 2874 | // NB: we should either do it for datetimes, integers and doubles, too, |
| 2875 | 2875 | // or just plain remove this check, implemented on booleans only... |
| 2876 | - if($type==$GLOBALS['xmlrpcBoolean']) |
|
| 2876 | + if ($type == $GLOBALS['xmlrpcBoolean']) |
|
| 2877 | 2877 | {
|
| 2878 | - if(strcasecmp($val,'true')==0 || $val==1 || ($val==true && strcasecmp($val,'false'))) |
|
| 2878 | + if (strcasecmp($val, 'true') == 0 || $val == 1 || ($val == true && strcasecmp($val, 'false'))) |
|
| 2879 | 2879 | {
|
| 2880 | - $val=true; |
|
| 2880 | + $val = true; |
|
| 2881 | 2881 | } |
| 2882 | 2882 | else |
| 2883 | 2883 | {
|
| 2884 | - $val=false; |
|
| 2884 | + $val = false; |
|
| 2885 | 2885 | } |
| 2886 | 2886 | } |
| 2887 | 2887 | |
| 2888 | - switch($this->mytype) |
|
| 2888 | + switch ($this->mytype) |
|
| 2889 | 2889 | {
|
| 2890 | 2890 | case 1: |
| 2891 | 2891 | error_log('XML-RPC: '.__METHOD__.': scalar xmlrpcval can have only one value');
|
@@ -2899,12 +2899,12 @@ discard block |
||
| 2899 | 2899 | //$ar[]=new xmlrpcval($val, $type); |
| 2900 | 2900 | //$this->me['array']=$ar; |
| 2901 | 2901 | // Faster (?) avoid all the costly array-copy-by-val done here... |
| 2902 | - $this->me['array'][]=new xmlrpcval($val, $type); |
|
| 2902 | + $this->me['array'][] = new xmlrpcval($val, $type); |
|
| 2903 | 2903 | return 1; |
| 2904 | 2904 | default: |
| 2905 | 2905 | // a scalar, so set the value and remember we're scalar |
| 2906 | - $this->me[$type]=$val; |
|
| 2907 | - $this->mytype=$typeof; |
|
| 2906 | + $this->me[$type] = $val; |
|
| 2907 | + $this->mytype = $typeof; |
|
| 2908 | 2908 | return 1; |
| 2909 | 2909 | } |
| 2910 | 2910 | } |
@@ -2919,13 +2919,13 @@ discard block |
||
| 2919 | 2919 | */ |
| 2920 | 2920 | function addArray($vals) |
| 2921 | 2921 | {
|
| 2922 | - if($this->mytype==0) |
|
| 2922 | + if ($this->mytype == 0) |
|
| 2923 | 2923 | {
|
| 2924 | - $this->mytype=$GLOBALS['xmlrpcTypes']['array']; |
|
| 2925 | - $this->me['array']=$vals; |
|
| 2924 | + $this->mytype = $GLOBALS['xmlrpcTypes']['array']; |
|
| 2925 | + $this->me['array'] = $vals; |
|
| 2926 | 2926 | return 1; |
| 2927 | 2927 | } |
| 2928 | - elseif($this->mytype==2) |
|
| 2928 | + elseif ($this->mytype == 2) |
|
| 2929 | 2929 | {
|
| 2930 | 2930 | // we're adding to an array here |
| 2931 | 2931 | $this->me['array'] = array_merge($this->me['array'], $vals); |
@@ -2933,7 +2933,7 @@ discard block |
||
| 2933 | 2933 | } |
| 2934 | 2934 | else |
| 2935 | 2935 | {
|
| 2936 | - error_log('XML-RPC: '.__METHOD__.': already initialized as a [' . $this->kindOf() . ']');
|
|
| 2936 | + error_log('XML-RPC: '.__METHOD__.': already initialized as a ['.$this->kindOf().']');
|
|
| 2937 | 2937 | return 0; |
| 2938 | 2938 | } |
| 2939 | 2939 | } |
@@ -2948,13 +2948,13 @@ discard block |
||
| 2948 | 2948 | */ |
| 2949 | 2949 | function addStruct($vals) |
| 2950 | 2950 | {
|
| 2951 | - if($this->mytype==0) |
|
| 2951 | + if ($this->mytype == 0) |
|
| 2952 | 2952 | {
|
| 2953 | - $this->mytype=$GLOBALS['xmlrpcTypes']['struct']; |
|
| 2954 | - $this->me['struct']=$vals; |
|
| 2953 | + $this->mytype = $GLOBALS['xmlrpcTypes']['struct']; |
|
| 2954 | + $this->me['struct'] = $vals; |
|
| 2955 | 2955 | return 1; |
| 2956 | 2956 | } |
| 2957 | - elseif($this->mytype==3) |
|
| 2957 | + elseif ($this->mytype == 3) |
|
| 2958 | 2958 | {
|
| 2959 | 2959 | // we're adding to a struct here |
| 2960 | 2960 | $this->me['struct'] = array_merge($this->me['struct'], $vals); |
@@ -2962,7 +2962,7 @@ discard block |
||
| 2962 | 2962 | } |
| 2963 | 2963 | else |
| 2964 | 2964 | {
|
| 2965 | - error_log('XML-RPC: '.__METHOD__.': already initialized as a [' . $this->kindOf() . ']');
|
|
| 2965 | + error_log('XML-RPC: '.__METHOD__.': already initialized as a ['.$this->kindOf().']');
|
|
| 2966 | 2966 | return 0; |
| 2967 | 2967 | } |
| 2968 | 2968 | } |
@@ -2971,12 +2971,12 @@ discard block |
||
| 2971 | 2971 | // DEPRECATED! |
| 2972 | 2972 | function dump($ar) |
| 2973 | 2973 | {
|
| 2974 | - foreach($ar as $key => $val) |
|
| 2974 | + foreach ($ar as $key => $val) |
|
| 2975 | 2975 | {
|
| 2976 | 2976 | echo "$key => $val<br />"; |
| 2977 | - if($key == 'array') |
|
| 2977 | + if ($key == 'array') |
|
| 2978 | 2978 | {
|
| 2979 | - foreach($val as $key2 => $val2) |
|
| 2979 | + foreach ($val as $key2 => $val2) |
|
| 2980 | 2980 | {
|
| 2981 | 2981 | echo "-- $key2 => $val2<br />"; |
| 2982 | 2982 | } |
@@ -2991,7 +2991,7 @@ discard block |
||
| 2991 | 2991 | */ |
| 2992 | 2992 | function kindOf() |
| 2993 | 2993 | {
|
| 2994 | - switch($this->mytype) |
|
| 2994 | + switch ($this->mytype) |
|
| 2995 | 2995 | {
|
| 2996 | 2996 | case 3: |
| 2997 | 2997 | return 'struct'; |
@@ -3010,28 +3010,28 @@ discard block |
||
| 3010 | 3010 | /** |
| 3011 | 3011 | * @access private |
| 3012 | 3012 | */ |
| 3013 | - function serializedata($typ, $val, $charset_encoding='') |
|
| 3013 | + function serializedata($typ, $val, $charset_encoding = '') |
|
| 3014 | 3014 | {
|
| 3015 | - $rs=''; |
|
| 3016 | - switch(@$GLOBALS['xmlrpcTypes'][$typ]) |
|
| 3015 | + $rs = ''; |
|
| 3016 | + switch (@$GLOBALS['xmlrpcTypes'][$typ]) |
|
| 3017 | 3017 | {
|
| 3018 | 3018 | case 1: |
| 3019 | - switch($typ) |
|
| 3019 | + switch ($typ) |
|
| 3020 | 3020 | {
|
| 3021 | 3021 | case $GLOBALS['xmlrpcBase64']: |
| 3022 | - $rs.="<${typ}>" . base64_encode($val) . "</${typ}>";
|
|
| 3022 | + $rs .= "<${typ}>".base64_encode($val)."</${typ}>";
|
|
| 3023 | 3023 | break; |
| 3024 | 3024 | case $GLOBALS['xmlrpcBoolean']: |
| 3025 | - $rs.="<${typ}>" . ($val ? '1' : '0') . "</${typ}>";
|
|
| 3025 | + $rs .= "<${typ}>".($val ? '1' : '0')."</${typ}>";
|
|
| 3026 | 3026 | break; |
| 3027 | 3027 | case $GLOBALS['xmlrpcString']: |
| 3028 | 3028 | // G. Giunta 2005/2/13: do NOT use htmlentities, since |
| 3029 | 3029 | // it will produce named html entities, which are invalid xml |
| 3030 | - $rs.="<${typ}>" . xmlrpc_encode_entitites($val, $GLOBALS['xmlrpc_internalencoding'], $charset_encoding). "</${typ}>";
|
|
| 3030 | + $rs .= "<${typ}>".xmlrpc_encode_entitites($val, $GLOBALS['xmlrpc_internalencoding'], $charset_encoding)."</${typ}>";
|
|
| 3031 | 3031 | break; |
| 3032 | 3032 | case $GLOBALS['xmlrpcInt']: |
| 3033 | 3033 | case $GLOBALS['xmlrpcI4']: |
| 3034 | - $rs.="<${typ}>".(int)$val."</${typ}>";
|
|
| 3034 | + $rs .= "<${typ}>".(int) $val."</${typ}>";
|
|
| 3035 | 3035 | break; |
| 3036 | 3036 | case $GLOBALS['xmlrpcDouble']: |
| 3037 | 3037 | // avoid using standard conversion of float to string because it is locale-dependent, |
@@ -3039,71 +3039,71 @@ discard block |
||
| 3039 | 3039 | // sprintf('%F') could be most likely ok but it fails eg. on 2e-14.
|
| 3040 | 3040 | // The code below tries its best at keeping max precision while avoiding exp notation, |
| 3041 | 3041 | // but there is of course no limit in the number of decimal places to be used... |
| 3042 | - $rs.="<${typ}>".preg_replace('/\\.?0+$/','',number_format((double)$val, 128, '.', ''))."</${typ}>";
|
|
| 3042 | + $rs .= "<${typ}>".preg_replace('/\\.?0+$/', '', number_format((double) $val, 128, '.', ''))."</${typ}>";
|
|
| 3043 | 3043 | break; |
| 3044 | 3044 | case $GLOBALS['xmlrpcDateTime']: |
| 3045 | 3045 | if (is_string($val)) |
| 3046 | 3046 | {
|
| 3047 | - $rs.="<${typ}>${val}</${typ}>";
|
|
| 3047 | + $rs .= "<${typ}>${val}</${typ}>";
|
|
| 3048 | 3048 | } |
| 3049 | - else if(is_a($val, 'DateTime')) |
|
| 3049 | + else if (is_a($val, 'DateTime')) |
|
| 3050 | 3050 | {
|
| 3051 | - $rs.="<${typ}>".$val->format('Ymd\TH:i:s')."</${typ}>";
|
|
| 3051 | + $rs .= "<${typ}>".$val->format('Ymd\TH:i:s')."</${typ}>";
|
|
| 3052 | 3052 | } |
| 3053 | - else if(is_int($val)) |
|
| 3053 | + else if (is_int($val)) |
|
| 3054 | 3054 | {
|
| 3055 | - $rs.="<${typ}>".strftime("%Y%m%dT%H:%M:%S", $val)."</${typ}>";
|
|
| 3055 | + $rs .= "<${typ}>".strftime("%Y%m%dT%H:%M:%S", $val)."</${typ}>";
|
|
| 3056 | 3056 | } |
| 3057 | 3057 | else |
| 3058 | 3058 | {
|
| 3059 | 3059 | // not really a good idea here: but what shall we output anyway? left for backward compat... |
| 3060 | - $rs.="<${typ}>${val}</${typ}>";
|
|
| 3060 | + $rs .= "<${typ}>${val}</${typ}>";
|
|
| 3061 | 3061 | } |
| 3062 | 3062 | break; |
| 3063 | 3063 | case $GLOBALS['xmlrpcNull']: |
| 3064 | 3064 | if ($GLOBALS['xmlrpc_null_apache_encoding']) |
| 3065 | 3065 | {
|
| 3066 | - $rs.="<ex:nil/>"; |
|
| 3066 | + $rs .= "<ex:nil/>"; |
|
| 3067 | 3067 | } |
| 3068 | 3068 | else |
| 3069 | 3069 | {
|
| 3070 | - $rs.="<nil/>"; |
|
| 3070 | + $rs .= "<nil/>"; |
|
| 3071 | 3071 | } |
| 3072 | 3072 | break; |
| 3073 | 3073 | default: |
| 3074 | 3074 | // no standard type value should arrive here, but provide a possibility |
| 3075 | 3075 | // for xmlrpcvals of unknown type... |
| 3076 | - $rs.="<${typ}>${val}</${typ}>";
|
|
| 3076 | + $rs .= "<${typ}>${val}</${typ}>";
|
|
| 3077 | 3077 | } |
| 3078 | 3078 | break; |
| 3079 | 3079 | case 3: |
| 3080 | 3080 | // struct |
| 3081 | 3081 | if ($this->_php_class) |
| 3082 | 3082 | {
|
| 3083 | - $rs.='<struct php_class="' . $this->_php_class . "\">\n"; |
|
| 3083 | + $rs .= '<struct php_class="'.$this->_php_class."\">\n"; |
|
| 3084 | 3084 | } |
| 3085 | 3085 | else |
| 3086 | 3086 | {
|
| 3087 | - $rs.="<struct>\n"; |
|
| 3087 | + $rs .= "<struct>\n"; |
|
| 3088 | 3088 | } |
| 3089 | - foreach($val as $key2 => $val2) |
|
| 3089 | + foreach ($val as $key2 => $val2) |
|
| 3090 | 3090 | {
|
| 3091 | - $rs.='<member><name>'.xmlrpc_encode_entitites($key2, $GLOBALS['xmlrpc_internalencoding'], $charset_encoding)."</name>\n"; |
|
| 3091 | + $rs .= '<member><name>'.xmlrpc_encode_entitites($key2, $GLOBALS['xmlrpc_internalencoding'], $charset_encoding)."</name>\n"; |
|
| 3092 | 3092 | //$rs.=$this->serializeval($val2); |
| 3093 | - $rs.=$val2->serialize($charset_encoding); |
|
| 3094 | - $rs.="</member>\n"; |
|
| 3093 | + $rs .= $val2->serialize($charset_encoding); |
|
| 3094 | + $rs .= "</member>\n"; |
|
| 3095 | 3095 | } |
| 3096 | - $rs.='</struct>'; |
|
| 3096 | + $rs .= '</struct>'; |
|
| 3097 | 3097 | break; |
| 3098 | 3098 | case 2: |
| 3099 | 3099 | // array |
| 3100 | - $rs.="<array>\n<data>\n"; |
|
| 3101 | - for($i=0; $i<count($val); $i++) |
|
| 3100 | + $rs .= "<array>\n<data>\n"; |
|
| 3101 | + for ($i = 0; $i<count($val); $i++) |
|
| 3102 | 3102 | {
|
| 3103 | 3103 | //$rs.=$this->serializeval($val[$i]); |
| 3104 | - $rs.=$val[$i]->serialize($charset_encoding); |
|
| 3104 | + $rs .= $val[$i]->serialize($charset_encoding); |
|
| 3105 | 3105 | } |
| 3106 | - $rs.="</data>\n</array>"; |
|
| 3106 | + $rs .= "</data>\n</array>"; |
|
| 3107 | 3107 | break; |
| 3108 | 3108 | default: |
| 3109 | 3109 | break; |
@@ -3117,14 +3117,14 @@ discard block |
||
| 3117 | 3117 | * @return string |
| 3118 | 3118 | * @access public |
| 3119 | 3119 | */ |
| 3120 | - function serialize($charset_encoding='') |
|
| 3120 | + function serialize($charset_encoding = '') |
|
| 3121 | 3121 | {
|
| 3122 | 3122 | // add check? slower, but helps to avoid recursion in serializing broken xmlrpcvals... |
| 3123 | 3123 | //if (is_object($o) && (get_class($o) == 'xmlrpcval' || is_subclass_of($o, 'xmlrpcval'))) |
| 3124 | 3124 | //{
|
| 3125 | 3125 | $val = reset($this->me); |
| 3126 | 3126 | $typ = key($this->me); |
| 3127 | - return '<value>' . $this->serializedata($typ, $val, $charset_encoding) . "</value>\n"; |
|
| 3127 | + return '<value>'.$this->serializedata($typ, $val, $charset_encoding)."</value>\n"; |
|
| 3128 | 3128 | //} |
| 3129 | 3129 | } |
| 3130 | 3130 | |
@@ -3136,7 +3136,7 @@ discard block |
||
| 3136 | 3136 | //{
|
| 3137 | 3137 | $val = reset($o->me); |
| 3138 | 3138 | $typ = key($o->me); |
| 3139 | - return '<value>' . $this->serializedata($typ, $val) . "</value>\n"; |
|
| 3139 | + return '<value>'.$this->serializedata($typ, $val)."</value>\n"; |
|
| 3140 | 3140 | //} |
| 3141 | 3141 | } |
| 3142 | 3142 | |
@@ -3195,23 +3195,23 @@ discard block |
||
| 3195 | 3195 | // i've created a new method here, so as to |
| 3196 | 3196 | // preserve back compatibility |
| 3197 | 3197 | |
| 3198 | - if(is_array($b)) |
|
| 3198 | + if (is_array($b)) |
|
| 3199 | 3199 | {
|
| 3200 | - foreach($b as $id => $cont) |
|
| 3200 | + foreach ($b as $id => $cont) |
|
| 3201 | 3201 | {
|
| 3202 | 3202 | $b[$id] = $cont->scalarval(); |
| 3203 | 3203 | } |
| 3204 | 3204 | } |
| 3205 | 3205 | |
| 3206 | 3206 | // add support for structures directly encoding php objects |
| 3207 | - if(is_object($b)) |
|
| 3207 | + if (is_object($b)) |
|
| 3208 | 3208 | {
|
| 3209 | 3209 | $t = get_object_vars($b); |
| 3210 | - foreach($t as $id => $cont) |
|
| 3210 | + foreach ($t as $id => $cont) |
|
| 3211 | 3211 | {
|
| 3212 | 3212 | $t[$id] = $cont->scalarval(); |
| 3213 | 3213 | } |
| 3214 | - foreach($t as $id => $cont) |
|
| 3214 | + foreach ($t as $id => $cont) |
|
| 3215 | 3215 | {
|
| 3216 | 3216 | @$b->$id = $cont; |
| 3217 | 3217 | } |
@@ -3241,9 +3241,9 @@ discard block |
||
| 3241 | 3241 | {
|
| 3242 | 3242 | reset($this->me); |
| 3243 | 3243 | $a = key($this->me); |
| 3244 | - if($a==$GLOBALS['xmlrpcI4']) |
|
| 3244 | + if ($a == $GLOBALS['xmlrpcI4']) |
|
| 3245 | 3245 | {
|
| 3246 | - $a=$GLOBALS['xmlrpcInt']; |
|
| 3246 | + $a = $GLOBALS['xmlrpcInt']; |
|
| 3247 | 3247 | } |
| 3248 | 3248 | return $a; |
| 3249 | 3249 | } |
@@ -3300,23 +3300,23 @@ discard block |
||
| 3300 | 3300 | * @param int $utc (0 or 1) |
| 3301 | 3301 | * @return string |
| 3302 | 3302 | */ |
| 3303 | - function iso8601_encode($timet, $utc=0) |
|
| 3303 | + function iso8601_encode($timet, $utc = 0) |
|
| 3304 | 3304 | {
|
| 3305 | - if(!$utc) |
|
| 3305 | + if (!$utc) |
|
| 3306 | 3306 | {
|
| 3307 | - $t=strftime("%Y%m%dT%H:%M:%S", $timet);
|
|
| 3307 | + $t = strftime("%Y%m%dT%H:%M:%S", $timet);
|
|
| 3308 | 3308 | } |
| 3309 | 3309 | else |
| 3310 | 3310 | {
|
| 3311 | - if(function_exists('gmstrftime'))
|
|
| 3311 | + if (function_exists('gmstrftime'))
|
|
| 3312 | 3312 | {
|
| 3313 | 3313 | // gmstrftime doesn't exist in some versions |
| 3314 | 3314 | // of PHP |
| 3315 | - $t=gmstrftime("%Y%m%dT%H:%M:%S", $timet);
|
|
| 3315 | + $t = gmstrftime("%Y%m%dT%H:%M:%S", $timet);
|
|
| 3316 | 3316 | } |
| 3317 | 3317 | else |
| 3318 | 3318 | {
|
| 3319 | - $t=strftime("%Y%m%dT%H:%M:%S", $timet-date('Z'));
|
|
| 3319 | + $t = strftime("%Y%m%dT%H:%M:%S", $timet-date('Z'));
|
|
| 3320 | 3320 | } |
| 3321 | 3321 | } |
| 3322 | 3322 | return $t; |
@@ -3328,18 +3328,18 @@ discard block |
||
| 3328 | 3328 | * @param int $utc either 0 or 1 |
| 3329 | 3329 | * @return int (datetime) |
| 3330 | 3330 | */ |
| 3331 | - function iso8601_decode($idate, $utc=0) |
|
| 3331 | + function iso8601_decode($idate, $utc = 0) |
|
| 3332 | 3332 | {
|
| 3333 | - $t=0; |
|
| 3334 | - if(preg_match('/([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})/', $idate, $regs))
|
|
| 3333 | + $t = 0; |
|
| 3334 | + if (preg_match('/([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})/', $idate, $regs))
|
|
| 3335 | 3335 | {
|
| 3336 | - if($utc) |
|
| 3336 | + if ($utc) |
|
| 3337 | 3337 | {
|
| 3338 | - $t=gmmktime($regs[4], $regs[5], $regs[6], $regs[2], $regs[3], $regs[1]); |
|
| 3338 | + $t = gmmktime($regs[4], $regs[5], $regs[6], $regs[2], $regs[3], $regs[1]); |
|
| 3339 | 3339 | } |
| 3340 | 3340 | else |
| 3341 | 3341 | {
|
| 3342 | - $t=mktime($regs[4], $regs[5], $regs[6], $regs[2], $regs[3], $regs[1]); |
|
| 3342 | + $t = mktime($regs[4], $regs[5], $regs[6], $regs[2], $regs[3], $regs[1]); |
|
| 3343 | 3343 | } |
| 3344 | 3344 | } |
| 3345 | 3345 | return $t; |
@@ -3366,9 +3366,9 @@ discard block |
||
| 3366 | 3366 | * @param array $options if 'decode_php_objs' is set in the options array, xmlrpc structs can be decoded into php objects; if 'dates_as_objects' is set xmlrpc datetimes are decoded as php DateTime objects (standard is |
| 3367 | 3367 | * @return mixed |
| 3368 | 3368 | */ |
| 3369 | - function php_xmlrpc_decode($xmlrpc_val, $options=array()) |
|
| 3369 | + function php_xmlrpc_decode($xmlrpc_val, $options = array()) |
|
| 3370 | 3370 | {
|
| 3371 | - switch($xmlrpc_val->kindOf()) |
|
| 3371 | + switch ($xmlrpc_val->kindOf()) |
|
| 3372 | 3372 | {
|
| 3373 | 3373 | case 'scalar': |
| 3374 | 3374 | if (in_array('extension_api', $options))
|
@@ -3415,7 +3415,7 @@ discard block |
||
| 3415 | 3415 | case 'array': |
| 3416 | 3416 | $size = $xmlrpc_val->arraysize(); |
| 3417 | 3417 | $arr = array(); |
| 3418 | - for($i = 0; $i < $size; $i++) |
|
| 3418 | + for ($i = 0; $i<$size; $i++) |
|
| 3419 | 3419 | {
|
| 3420 | 3420 | $arr[] = php_xmlrpc_decode($xmlrpc_val->arraymem($i), $options); |
| 3421 | 3421 | } |
@@ -3430,7 +3430,7 @@ discard block |
||
| 3430 | 3430 | && class_exists($xmlrpc_val->_php_class)) |
| 3431 | 3431 | {
|
| 3432 | 3432 | $obj = @new $xmlrpc_val->_php_class; |
| 3433 | - while(list($key,$value)=$xmlrpc_val->structeach()) |
|
| 3433 | + while (list($key, $value) = $xmlrpc_val->structeach()) |
|
| 3434 | 3434 | {
|
| 3435 | 3435 | $obj->$key = php_xmlrpc_decode($value, $options); |
| 3436 | 3436 | } |
@@ -3439,7 +3439,7 @@ discard block |
||
| 3439 | 3439 | else |
| 3440 | 3440 | {
|
| 3441 | 3441 | $arr = array(); |
| 3442 | - while(list($key,$value)=$xmlrpc_val->structeach()) |
|
| 3442 | + while (list($key, $value) = $xmlrpc_val->structeach()) |
|
| 3443 | 3443 | {
|
| 3444 | 3444 | $arr[$key] = php_xmlrpc_decode($value, $options); |
| 3445 | 3445 | } |
@@ -3448,7 +3448,7 @@ discard block |
||
| 3448 | 3448 | case 'msg': |
| 3449 | 3449 | $paramcount = $xmlrpc_val->getNumParams(); |
| 3450 | 3450 | $arr = array(); |
| 3451 | - for($i = 0; $i < $paramcount; $i++) |
|
| 3451 | + for ($i = 0; $i<$paramcount; $i++) |
|
| 3452 | 3452 | {
|
| 3453 | 3453 | $arr[] = php_xmlrpc_decode($xmlrpc_val->getParam($i)); |
| 3454 | 3454 | } |
@@ -3459,13 +3459,13 @@ discard block |
||
| 3459 | 3459 | // This constant left here only for historical reasons... |
| 3460 | 3460 | // it was used to decide if we have to define xmlrpc_encode on our own, but |
| 3461 | 3461 | // we do not do it anymore |
| 3462 | - if(function_exists('xmlrpc_decode'))
|
|
| 3462 | + if (function_exists('xmlrpc_decode'))
|
|
| 3463 | 3463 | {
|
| 3464 | - define('XMLRPC_EPI_ENABLED','1');
|
|
| 3464 | + define('XMLRPC_EPI_ENABLED', '1');
|
|
| 3465 | 3465 | } |
| 3466 | 3466 | else |
| 3467 | 3467 | {
|
| 3468 | - define('XMLRPC_EPI_ENABLED','0');
|
|
| 3468 | + define('XMLRPC_EPI_ENABLED', '0');
|
|
| 3469 | 3469 | } |
| 3470 | 3470 | |
| 3471 | 3471 | /** |
@@ -3485,10 +3485,10 @@ discard block |
||
| 3485 | 3485 | * @param array $options can include 'encode_php_objs', 'auto_dates', 'null_extension' or 'extension_api' |
| 3486 | 3486 | * @return xmlrpcval |
| 3487 | 3487 | */ |
| 3488 | - function php_xmlrpc_encode($php_val, $options=array()) |
|
| 3488 | + function php_xmlrpc_encode($php_val, $options = array()) |
|
| 3489 | 3489 | {
|
| 3490 | 3490 | $type = gettype($php_val); |
| 3491 | - switch($type) |
|
| 3491 | + switch ($type) |
|
| 3492 | 3492 | {
|
| 3493 | 3493 | case 'string': |
| 3494 | 3494 | if (in_array('auto_dates', $options) && preg_match('/^[0-9]{8}T[0-9]{2}:[0-9]{2}:[0-9]{2}$/', $php_val))
|
@@ -3517,16 +3517,16 @@ discard block |
||
| 3517 | 3517 | $j = 0; |
| 3518 | 3518 | $arr = array(); |
| 3519 | 3519 | $ko = false; |
| 3520 | - foreach($php_val as $key => $val) |
|
| 3520 | + foreach ($php_val as $key => $val) |
|
| 3521 | 3521 | {
|
| 3522 | 3522 | $arr[$key] = php_xmlrpc_encode($val, $options); |
| 3523 | - if(!$ko && $key !== $j) |
|
| 3523 | + if (!$ko && $key !== $j) |
|
| 3524 | 3524 | {
|
| 3525 | 3525 | $ko = true; |
| 3526 | 3526 | } |
| 3527 | 3527 | $j++; |
| 3528 | 3528 | } |
| 3529 | - if($ko) |
|
| 3529 | + if ($ko) |
|
| 3530 | 3530 | {
|
| 3531 | 3531 | $xmlrpc_val = new xmlrpcval($arr, $GLOBALS['xmlrpcStruct']); |
| 3532 | 3532 | } |
@@ -3536,18 +3536,18 @@ discard block |
||
| 3536 | 3536 | } |
| 3537 | 3537 | break; |
| 3538 | 3538 | case 'object': |
| 3539 | - if(is_a($php_val, 'xmlrpcval')) |
|
| 3539 | + if (is_a($php_val, 'xmlrpcval')) |
|
| 3540 | 3540 | {
|
| 3541 | 3541 | $xmlrpc_val = $php_val; |
| 3542 | 3542 | } |
| 3543 | - else if(is_a($php_val, 'DateTime')) |
|
| 3543 | + else if (is_a($php_val, 'DateTime')) |
|
| 3544 | 3544 | {
|
| 3545 | 3545 | $xmlrpc_val = new xmlrpcval($php_val->format('Ymd\TH:i:s'), $GLOBALS['xmlrpcStruct']);
|
| 3546 | 3546 | } |
| 3547 | 3547 | else |
| 3548 | 3548 | {
|
| 3549 | 3549 | $arr = array(); |
| 3550 | - foreach($php_val as $k => $v) |
|
| 3550 | + foreach ($php_val as $k => $v) |
|
| 3551 | 3551 | {
|
| 3552 | 3552 | $arr[$k] = php_xmlrpc_encode($v, $options); |
| 3553 | 3553 | } |
@@ -3577,7 +3577,7 @@ discard block |
||
| 3577 | 3577 | case 'resource': |
| 3578 | 3578 | if (in_array('extension_api', $options))
|
| 3579 | 3579 | {
|
| 3580 | - $xmlrpc_val = new xmlrpcval((int)$php_val, $GLOBALS['xmlrpcInt']); |
|
| 3580 | + $xmlrpc_val = new xmlrpcval((int) $php_val, $GLOBALS['xmlrpcInt']); |
|
| 3581 | 3581 | } |
| 3582 | 3582 | else |
| 3583 | 3583 | {
|
@@ -3601,7 +3601,7 @@ discard block |
||
| 3601 | 3601 | * @param array $options |
| 3602 | 3602 | * @return mixed false on error, or an instance of either xmlrpcval, xmlrpcmsg or xmlrpcresp |
| 3603 | 3603 | */ |
| 3604 | - function php_xmlrpc_decode_xml($xml_val, $options=array()) |
|
| 3604 | + function php_xmlrpc_decode_xml($xml_val, $options = array()) |
|
| 3605 | 3605 | {
|
| 3606 | 3606 | $GLOBALS['_xh'] = array(); |
| 3607 | 3607 | $GLOBALS['_xh']['ac'] = ''; |
@@ -3629,7 +3629,7 @@ discard block |
||
| 3629 | 3629 | if (extension_loaded('mbstring')) {
|
| 3630 | 3630 | $xml_val = mb_convert_encoding($xml_val, 'UTF-8', $val_encoding); |
| 3631 | 3631 | } else {
|
| 3632 | - error_log('XML-RPC: ' . __METHOD__ . ': invalid charset encoding of received request: ' . $val_encoding);
|
|
| 3632 | + error_log('XML-RPC: '.__METHOD__.': invalid charset encoding of received request: '.$val_encoding);
|
|
| 3633 | 3633 | } |
| 3634 | 3634 | } |
| 3635 | 3635 | } |
@@ -3649,7 +3649,7 @@ discard block |
||
| 3649 | 3649 | xml_set_element_handler($parser, 'xmlrpc_se_any', 'xmlrpc_ee'); |
| 3650 | 3650 | xml_set_character_data_handler($parser, 'xmlrpc_cd'); |
| 3651 | 3651 | xml_set_default_handler($parser, 'xmlrpc_dh'); |
| 3652 | - if(!xml_parse($parser, $xml_val, 1)) |
|
| 3652 | + if (!xml_parse($parser, $xml_val, 1)) |
|
| 3653 | 3653 | {
|
| 3654 | 3654 | $errstr = sprintf('XML error: %s at line %d, column %d',
|
| 3655 | 3655 | xml_error_string(xml_get_error_code($parser)), |
@@ -3659,7 +3659,7 @@ discard block |
||
| 3659 | 3659 | return false; |
| 3660 | 3660 | } |
| 3661 | 3661 | xml_parser_free($parser); |
| 3662 | - if ($GLOBALS['_xh']['isf'] > 1) // test that $GLOBALS['_xh']['value'] is an obj, too??? |
|
| 3662 | + if ($GLOBALS['_xh']['isf']>1) // test that $GLOBALS['_xh']['value'] is an obj, too??? |
|
| 3663 | 3663 | {
|
| 3664 | 3664 | error_log($GLOBALS['_xh']['isf_reason']); |
| 3665 | 3665 | return false; |
@@ -3667,7 +3667,7 @@ discard block |
||
| 3667 | 3667 | switch ($GLOBALS['_xh']['rt']) |
| 3668 | 3668 | {
|
| 3669 | 3669 | case 'methodresponse': |
| 3670 | - $v =& $GLOBALS['_xh']['value']; |
|
| 3670 | + $v = & $GLOBALS['_xh']['value']; |
|
| 3671 | 3671 | if ($GLOBALS['_xh']['isf'] == 1) |
| 3672 | 3672 | {
|
| 3673 | 3673 | $vc = $v->structmem('faultCode');
|
@@ -3681,7 +3681,7 @@ discard block |
||
| 3681 | 3681 | return $r; |
| 3682 | 3682 | case 'methodcall': |
| 3683 | 3683 | $m = new xmlrpcmsg($GLOBALS['_xh']['method']); |
| 3684 | - for($i=0; $i < count($GLOBALS['_xh']['params']); $i++) |
|
| 3684 | + for ($i = 0; $i<count($GLOBALS['_xh']['params']); $i++) |
|
| 3685 | 3685 | {
|
| 3686 | 3686 | $m->addParam($GLOBALS['_xh']['params'][$i]); |
| 3687 | 3687 | } |
@@ -3709,18 +3709,18 @@ discard block |
||
| 3709 | 3709 | |
| 3710 | 3710 | // read chunk-size, chunk-extension (if any) and crlf |
| 3711 | 3711 | // get the position of the linebreak |
| 3712 | - $chunkend = strpos($buffer,"\r\n") + 2; |
|
| 3713 | - $temp = substr($buffer,0,$chunkend); |
|
| 3714 | - $chunk_size = hexdec( trim($temp) ); |
|
| 3712 | + $chunkend = strpos($buffer, "\r\n")+2; |
|
| 3713 | + $temp = substr($buffer, 0, $chunkend); |
|
| 3714 | + $chunk_size = hexdec(trim($temp)); |
|
| 3715 | 3715 | $chunkstart = $chunkend; |
| 3716 | - while($chunk_size > 0) |
|
| 3716 | + while ($chunk_size>0) |
|
| 3717 | 3717 | {
|
| 3718 | - $chunkend = strpos($buffer, "\r\n", $chunkstart + $chunk_size); |
|
| 3718 | + $chunkend = strpos($buffer, "\r\n", $chunkstart+$chunk_size); |
|
| 3719 | 3719 | |
| 3720 | 3720 | // just in case we got a broken connection |
| 3721 | - if($chunkend == false) |
|
| 3721 | + if ($chunkend == false) |
|
| 3722 | 3722 | {
|
| 3723 | - $chunk = substr($buffer,$chunkstart); |
|
| 3723 | + $chunk = substr($buffer, $chunkstart); |
|
| 3724 | 3724 | // append chunk-data to entity-body |
| 3725 | 3725 | $new .= $chunk; |
| 3726 | 3726 | $length += strlen($chunk); |
@@ -3728,21 +3728,21 @@ discard block |
||
| 3728 | 3728 | } |
| 3729 | 3729 | |
| 3730 | 3730 | // read chunk-data and crlf |
| 3731 | - $chunk = substr($buffer,$chunkstart,$chunkend-$chunkstart); |
|
| 3731 | + $chunk = substr($buffer, $chunkstart, $chunkend-$chunkstart); |
|
| 3732 | 3732 | // append chunk-data to entity-body |
| 3733 | 3733 | $new .= $chunk; |
| 3734 | 3734 | // length := length + chunk-size |
| 3735 | 3735 | $length += strlen($chunk); |
| 3736 | 3736 | // read chunk-size and crlf |
| 3737 | - $chunkstart = $chunkend + 2; |
|
| 3737 | + $chunkstart = $chunkend+2; |
|
| 3738 | 3738 | |
| 3739 | - $chunkend = strpos($buffer,"\r\n",$chunkstart)+2; |
|
| 3740 | - if($chunkend == false) |
|
| 3739 | + $chunkend = strpos($buffer, "\r\n", $chunkstart)+2; |
|
| 3740 | + if ($chunkend == false) |
|
| 3741 | 3741 | {
|
| 3742 | 3742 | break; //just in case we got a broken connection |
| 3743 | 3743 | } |
| 3744 | - $temp = substr($buffer,$chunkstart,$chunkend-$chunkstart); |
|
| 3745 | - $chunk_size = hexdec( trim($temp) ); |
|
| 3744 | + $temp = substr($buffer, $chunkstart, $chunkend-$chunkstart); |
|
| 3745 | + $chunk_size = hexdec(trim($temp)); |
|
| 3746 | 3746 | $chunkstart = $chunkend; |
| 3747 | 3747 | } |
| 3748 | 3748 | return $new; |
@@ -3762,7 +3762,7 @@ discard block |
||
| 3762 | 3762 | * |
| 3763 | 3763 | * @todo explore usage of mb_http_input(): does it detect http headers + post data? if so, use it instead of hand-detection!!! |
| 3764 | 3764 | */ |
| 3765 | - function guess_encoding($httpheader='', $xmlchunk='', $encoding_prefs=null) |
|
| 3765 | + function guess_encoding($httpheader = '', $xmlchunk = '', $encoding_prefs = null) |
|
| 3766 | 3766 | {
|
| 3767 | 3767 | // discussion: see http://www.yale.edu/pclt/encoding/ |
| 3768 | 3768 | // 1 - test if encoding is specified in HTTP HEADERS |
@@ -3780,7 +3780,7 @@ discard block |
||
| 3780 | 3780 | |
| 3781 | 3781 | /// @todo this test will pass if ANY header has charset specification, not only Content-Type. Fix it? |
| 3782 | 3782 | $matches = array(); |
| 3783 | - if(preg_match('/;\s*charset\s*=([^;]+)/i', $httpheader, $matches))
|
|
| 3783 | + if (preg_match('/;\s*charset\s*=([^;]+)/i', $httpheader, $matches))
|
|
| 3784 | 3784 | {
|
| 3785 | 3785 | return strtoupper(trim($matches[1], " \t\"")); |
| 3786 | 3786 | } |
@@ -3792,15 +3792,15 @@ discard block |
||
| 3792 | 3792 | // in the xml declaration, and verify if they match. |
| 3793 | 3793 | /// @todo implement check as described above? |
| 3794 | 3794 | /// @todo implement check for first bytes of string even without a BOM? (It sure looks harder than for cases WITH a BOM) |
| 3795 | - if(preg_match('/^(\x00\x00\xFE\xFF|\xFF\xFE\x00\x00|\x00\x00\xFF\xFE|\xFE\xFF\x00\x00)/', $xmlchunk))
|
|
| 3795 | + if (preg_match('/^(\x00\x00\xFE\xFF|\xFF\xFE\x00\x00|\x00\x00\xFF\xFE|\xFE\xFF\x00\x00)/', $xmlchunk))
|
|
| 3796 | 3796 | {
|
| 3797 | 3797 | return 'UCS-4'; |
| 3798 | 3798 | } |
| 3799 | - elseif(preg_match('/^(\xFE\xFF|\xFF\xFE)/', $xmlchunk))
|
|
| 3799 | + elseif (preg_match('/^(\xFE\xFF|\xFF\xFE)/', $xmlchunk))
|
|
| 3800 | 3800 | {
|
| 3801 | 3801 | return 'UTF-16'; |
| 3802 | 3802 | } |
| 3803 | - elseif(preg_match('/^(\xEF\xBB\xBF)/', $xmlchunk))
|
|
| 3803 | + elseif (preg_match('/^(\xEF\xBB\xBF)/', $xmlchunk))
|
|
| 3804 | 3804 | {
|
| 3805 | 3805 | return 'UTF-8'; |
| 3806 | 3806 | } |
@@ -3809,8 +3809,8 @@ discard block |
||
| 3809 | 3809 | // Details: |
| 3810 | 3810 | // SPACE: (#x20 | #x9 | #xD | #xA)+ === [ \x9\xD\xA]+ |
| 3811 | 3811 | // EQ: SPACE?=SPACE? === [ \x9\xD\xA]*=[ \x9\xD\xA]* |
| 3812 | - if (preg_match('/^<\?xml\s+version\s*=\s*'. "((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))".
|
|
| 3813 | - '\s+encoding\s*=\s*' . "((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/", |
|
| 3812 | + if (preg_match('/^<\?xml\s+version\s*=\s*'."((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))".
|
|
| 3813 | + '\s+encoding\s*=\s*'."((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/", |
|
| 3814 | 3814 | $xmlchunk, $matches)) |
| 3815 | 3815 | {
|
| 3816 | 3816 | return strtoupper(substr($matches[2], 1, -1)); |
@@ -3818,9 +3818,9 @@ discard block |
||
| 3818 | 3818 | |
| 3819 | 3819 | // 4 - if mbstring is available, let it do the guesswork |
| 3820 | 3820 | // NB: we favour finding an encoding that is compatible with what we can process |
| 3821 | - if(extension_loaded('mbstring'))
|
|
| 3821 | + if (extension_loaded('mbstring'))
|
|
| 3822 | 3822 | {
|
| 3823 | - if($encoding_prefs) |
|
| 3823 | + if ($encoding_prefs) |
|
| 3824 | 3824 | {
|
| 3825 | 3825 | $enc = mb_detect_encoding($xmlchunk, $encoding_prefs); |
| 3826 | 3826 | } |
@@ -3830,7 +3830,7 @@ discard block |
||
| 3830 | 3830 | } |
| 3831 | 3831 | // NB: mb_detect likes to call it ascii, xml parser likes to call it US_ASCII... |
| 3832 | 3832 | // IANA also likes better US-ASCII, so go with it |
| 3833 | - if($enc == 'ASCII') |
|
| 3833 | + if ($enc == 'ASCII') |
|
| 3834 | 3834 | {
|
| 3835 | 3835 | $enc = 'US-'.$enc; |
| 3836 | 3836 | } |
@@ -3873,8 +3873,8 @@ discard block |
||
| 3873 | 3873 | // Details: |
| 3874 | 3874 | // SPACE: (#x20 | #x9 | #xD | #xA)+ === [ \x9\xD\xA]+ |
| 3875 | 3875 | // EQ: SPACE?=SPACE? === [ \x9\xD\xA]*=[ \x9\xD\xA]* |
| 3876 | - if (preg_match('/^<\?xml\s+version\s*=\s*' . "((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))" .
|
|
| 3877 | - '\s+encoding\s*=\s*' . "((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/", |
|
| 3876 | + if (preg_match('/^<\?xml\s+version\s*=\s*'."((?:\"[a-zA-Z0-9_.:-]+\")|(?:'[a-zA-Z0-9_.:-]+'))".
|
|
| 3877 | + '\s+encoding\s*=\s*'."((?:\"[A-Za-z][A-Za-z0-9._-]*\")|(?:'[A-Za-z][A-Za-z0-9._-]*'))/", |
|
| 3878 | 3878 | $xmlChunk, $matches)) |
| 3879 | 3879 | {
|
| 3880 | 3880 | return true; |
@@ -3893,7 +3893,7 @@ discard block |
||
| 3893 | 3893 | function is_valid_charset($encoding, $validlist) |
| 3894 | 3894 | {
|
| 3895 | 3895 | $charset_supersets = array( |
| 3896 | - 'US-ASCII' => array ('ISO-8859-1', 'ISO-8859-2', 'ISO-8859-3', 'ISO-8859-4',
|
|
| 3896 | + 'US-ASCII' => array('ISO-8859-1', 'ISO-8859-2', 'ISO-8859-3', 'ISO-8859-4',
|
|
| 3897 | 3897 | 'ISO-8859-5', 'ISO-8859-6', 'ISO-8859-7', 'ISO-8859-8', |
| 3898 | 3898 | 'ISO-8859-9', 'ISO-8859-10', 'ISO-8859-11', 'ISO-8859-12', |
| 3899 | 3899 | 'ISO-8859-13', 'ISO-8859-14', 'ISO-8859-15', 'UTF-8', |