@@ -136,10 +136,10 @@ discard block |
||
136 | 136 | $server = $parts['host']; |
137 | 137 | $path = isset($parts['path']) ? $parts['path'] : ''; |
138 | 138 | if (isset($parts['query'])) { |
139 | - $path .= '?' . $parts['query']; |
|
139 | + $path .= '?'.$parts['query']; |
|
140 | 140 | } |
141 | 141 | if (isset($parts['fragment'])) { |
142 | - $path .= '#' . $parts['fragment']; |
|
142 | + $path .= '#'.$parts['fragment']; |
|
143 | 143 | } |
144 | 144 | if (isset($parts['port'])) { |
145 | 145 | $port = $parts['port']; |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | } |
156 | 156 | } |
157 | 157 | if ($path == '' || $path[0] != '/') { |
158 | - $this->path = '/' . $path; |
|
158 | + $this->path = '/'.$path; |
|
159 | 159 | } else { |
160 | 160 | $this->path = $path; |
161 | 161 | } |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | }*/ |
194 | 194 | |
195 | 195 | // initialize user_agent string |
196 | - $this->user_agent = PhpXmlRpc::$xmlrpcName . ' ' . PhpXmlRpc::$xmlrpcVersion; |
|
196 | + $this->user_agent = PhpXmlRpc::$xmlrpcName.' '.PhpXmlRpc::$xmlrpcVersion; |
|
197 | 197 | } |
198 | 198 | |
199 | 199 | /** |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | */ |
566 | 566 | protected function sendPayloadHTTP10($req, $server, $port, $timeout = 0, $username = '', $password = '', |
567 | 567 | $authType = 1, $proxyHost = '', $proxyPort = 0, $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, |
568 | - $method='http') |
|
568 | + $method = 'http') |
|
569 | 569 | { |
570 | 570 | //trigger_error('Method ' . __METHOD__ . ' is deprecated', E_USER_DEPRECATED); |
571 | 571 | |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | * @param int $sslVersion |
598 | 598 | * @return Response |
599 | 599 | */ |
600 | - protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '', $password = '', |
|
600 | + protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '', $password = '', |
|
601 | 601 | $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0, |
602 | 602 | $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $keepAlive = false, $key = '', $keyPass = '', |
603 | 603 | $sslVersion = 0) |
@@ -634,11 +634,11 @@ discard block |
||
634 | 634 | */ |
635 | 635 | protected function sendPayloadSocket($req, $server, $port, $timeout = 0, $username = '', $password = '', |
636 | 636 | $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0, |
637 | - $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method='http', $key = '', $keyPass = '', |
|
637 | + $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method = 'http', $key = '', $keyPass = '', |
|
638 | 638 | $sslVersion = 0) |
639 | 639 | { |
640 | 640 | if ($port == 0) { |
641 | - $port = ( $method === 'https' ) ? 443 : 80; |
|
641 | + $port = ($method === 'https') ? 443 : 80; |
|
642 | 642 | } |
643 | 643 | |
644 | 644 | // Only create the payload if it was not created previously |
@@ -668,15 +668,15 @@ discard block |
||
668 | 668 | // thanks to Grant Rauscher <[email protected]> for this |
669 | 669 | $credentials = ''; |
670 | 670 | if ($username != '') { |
671 | - $credentials = 'Authorization: Basic ' . base64_encode($username . ':' . $password) . "\r\n"; |
|
671 | + $credentials = 'Authorization: Basic '.base64_encode($username.':'.$password)."\r\n"; |
|
672 | 672 | if ($authType != 1) { |
673 | - error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported with HTTP 1.0'); |
|
673 | + error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported with HTTP 1.0'); |
|
674 | 674 | } |
675 | 675 | } |
676 | 676 | |
677 | 677 | $acceptedEncoding = ''; |
678 | 678 | if (is_array($this->accepted_compression) && count($this->accepted_compression)) { |
679 | - $acceptedEncoding = 'Accept-Encoding: ' . implode(', ', $this->accepted_compression) . "\r\n"; |
|
679 | + $acceptedEncoding = 'Accept-Encoding: '.implode(', ', $this->accepted_compression)."\r\n"; |
|
680 | 680 | } |
681 | 681 | |
682 | 682 | $proxyCredentials = ''; |
@@ -687,17 +687,17 @@ discard block |
||
687 | 687 | $connectServer = $proxyHost; |
688 | 688 | $connectPort = $proxyPort; |
689 | 689 | $transport = 'tcp'; |
690 | - $uri = 'http://' . $server . ':' . $port . $this->path; |
|
690 | + $uri = 'http://'.$server.':'.$port.$this->path; |
|
691 | 691 | if ($proxyUsername != '') { |
692 | 692 | if ($proxyAuthType != 1) { |
693 | - error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported with HTTP 1.0'); |
|
693 | + error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported with HTTP 1.0'); |
|
694 | 694 | } |
695 | - $proxyCredentials = 'Proxy-Authorization: Basic ' . base64_encode($proxyUsername . ':' . $proxyPassword) . "\r\n"; |
|
695 | + $proxyCredentials = 'Proxy-Authorization: Basic '.base64_encode($proxyUsername.':'.$proxyPassword)."\r\n"; |
|
696 | 696 | } |
697 | 697 | } else { |
698 | 698 | $connectServer = $server; |
699 | 699 | $connectPort = $port; |
700 | - $transport = ( $method === 'https' ) ? 'tls' : 'tcp'; |
|
700 | + $transport = ($method === 'https') ? 'tls' : 'tcp'; |
|
701 | 701 | $uri = $this->path; |
702 | 702 | } |
703 | 703 | |
@@ -708,45 +708,45 @@ discard block |
||
708 | 708 | $version = ''; |
709 | 709 | foreach ($this->cookies as $name => $cookie) { |
710 | 710 | if ($cookie['version']) { |
711 | - $version = ' $Version="' . $cookie['version'] . '";'; |
|
712 | - $cookieHeader .= ' ' . $name . '="' . $cookie['value'] . '";'; |
|
711 | + $version = ' $Version="'.$cookie['version'].'";'; |
|
712 | + $cookieHeader .= ' '.$name.'="'.$cookie['value'].'";'; |
|
713 | 713 | if ($cookie['path']) { |
714 | - $cookieHeader .= ' $Path="' . $cookie['path'] . '";'; |
|
714 | + $cookieHeader .= ' $Path="'.$cookie['path'].'";'; |
|
715 | 715 | } |
716 | 716 | if ($cookie['domain']) { |
717 | - $cookieHeader .= ' $Domain="' . $cookie['domain'] . '";'; |
|
717 | + $cookieHeader .= ' $Domain="'.$cookie['domain'].'";'; |
|
718 | 718 | } |
719 | 719 | if ($cookie['port']) { |
720 | - $cookieHeader .= ' $Port="' . $cookie['port'] . '";'; |
|
720 | + $cookieHeader .= ' $Port="'.$cookie['port'].'";'; |
|
721 | 721 | } |
722 | 722 | } else { |
723 | - $cookieHeader .= ' ' . $name . '=' . $cookie['value'] . ";"; |
|
723 | + $cookieHeader .= ' '.$name.'='.$cookie['value'].";"; |
|
724 | 724 | } |
725 | 725 | } |
726 | - $cookieHeader = 'Cookie:' . $version . substr($cookieHeader, 0, -1) . "\r\n"; |
|
726 | + $cookieHeader = 'Cookie:'.$version.substr($cookieHeader, 0, -1)."\r\n"; |
|
727 | 727 | } |
728 | 728 | |
729 | 729 | // omit port if default |
730 | 730 | if (($port == 80 && in_array($method, array('http', 'http10'))) || ($port == 443 && $method == 'https')) { |
731 | - $port = ''; |
|
731 | + $port = ''; |
|
732 | 732 | } else { |
733 | - $port = ':' . $port; |
|
733 | + $port = ':'.$port; |
|
734 | 734 | } |
735 | 735 | |
736 | - $op = 'POST ' . $uri . " HTTP/1.0\r\n" . |
|
737 | - 'User-Agent: ' . $this->user_agent . "\r\n" . |
|
738 | - 'Host: ' . $server . $port . "\r\n" . |
|
739 | - $credentials . |
|
740 | - $proxyCredentials . |
|
741 | - $acceptedEncoding . |
|
742 | - $encodingHdr . |
|
743 | - 'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings) . "\r\n" . |
|
744 | - $cookieHeader . |
|
745 | - 'Content-Type: ' . $req->content_type . "\r\nContent-Length: " . |
|
746 | - strlen($payload) . "\r\n\r\n" . |
|
736 | + $op = 'POST '.$uri." HTTP/1.0\r\n". |
|
737 | + 'User-Agent: '.$this->user_agent."\r\n". |
|
738 | + 'Host: '.$server.$port."\r\n". |
|
739 | + $credentials. |
|
740 | + $proxyCredentials. |
|
741 | + $acceptedEncoding. |
|
742 | + $encodingHdr. |
|
743 | + 'Accept-Charset: '.implode(',', $this->accepted_charset_encodings)."\r\n". |
|
744 | + $cookieHeader. |
|
745 | + 'Content-Type: '.$req->content_type."\r\nContent-Length: ". |
|
746 | + strlen($payload)."\r\n\r\n". |
|
747 | 747 | $payload; |
748 | 748 | |
749 | - if ($this->debug > 1) { |
|
749 | + if ($this->debug>1) { |
|
750 | 750 | Logger::instance()->debugMessage("---SENDING---\n$op\n---END---"); |
751 | 751 | } |
752 | 752 | |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | } |
773 | 773 | $context = stream_context_create($contextOptions); |
774 | 774 | |
775 | - if ($timeout <= 0) { |
|
775 | + if ($timeout<=0) { |
|
776 | 776 | $connectTimeout = ini_get('default_socket_timeout'); |
777 | 777 | } else { |
778 | 778 | $connectTimeout = $timeout; |
@@ -784,7 +784,7 @@ discard block |
||
784 | 784 | $fp = @stream_socket_client("$transport://$connectServer:$connectPort", $this->errno, $this->errstr, $connectTimeout, |
785 | 785 | STREAM_CLIENT_CONNECT, $context); |
786 | 786 | if ($fp) { |
787 | - if ($timeout > 0) { |
|
787 | + if ($timeout>0) { |
|
788 | 788 | stream_set_timeout($fp, $timeout); |
789 | 789 | } |
790 | 790 | } else { |
@@ -792,8 +792,8 @@ discard block |
||
792 | 792 | $err = error_get_last(); |
793 | 793 | $this->errstr = $err['message']; |
794 | 794 | } |
795 | - $this->errstr = 'Connect error: ' . $this->errstr; |
|
796 | - $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr . ' (' . $this->errno . ')'); |
|
795 | + $this->errstr = 'Connect error: '.$this->errstr; |
|
796 | + $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr.' ('.$this->errno.')'); |
|
797 | 797 | |
798 | 798 | return $r; |
799 | 799 | } |
@@ -900,7 +900,7 @@ discard block |
||
900 | 900 | $encodingHdr = ''; |
901 | 901 | } |
902 | 902 | |
903 | - if ($this->debug > 1) { |
|
903 | + if ($this->debug>1) { |
|
904 | 904 | Logger::instance()->debugMessage("---SENDING---\n$payload\n---END---"); |
905 | 905 | } |
906 | 906 | |
@@ -910,7 +910,7 @@ discard block |
||
910 | 910 | } else { |
911 | 911 | $protocol = $method; |
912 | 912 | } |
913 | - $curl = curl_init($protocol . '://' . $server . ':' . $port . $this->path); |
|
913 | + $curl = curl_init($protocol.'://'.$server.':'.$port.$this->path); |
|
914 | 914 | if ($keepAlive) { |
915 | 915 | $this->xmlrpc_curl_handle = $curl; |
916 | 916 | } |
@@ -921,7 +921,7 @@ discard block |
||
921 | 921 | // results into variable |
922 | 922 | curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); |
923 | 923 | |
924 | - if ($this->debug > 1) { |
|
924 | + if ($this->debug>1) { |
|
925 | 925 | curl_setopt($curl, CURLOPT_VERBOSE, true); |
926 | 926 | /// @todo allow callers to redirect curlopt_stderr to some stream which can be buffered |
927 | 927 | } |
@@ -947,7 +947,7 @@ discard block |
||
947 | 947 | } |
948 | 948 | } |
949 | 949 | // extra headers |
950 | - $headers = array('Content-Type: ' . $req->content_type, 'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings)); |
|
950 | + $headers = array('Content-Type: '.$req->content_type, 'Accept-Charset: '.implode(',', $this->accepted_charset_encodings)); |
|
951 | 951 | // if no keepalive is wanted, let the server know it in advance |
952 | 952 | if (!$keepAlive) { |
953 | 953 | $headers[] = 'Connection: close'; |
@@ -964,7 +964,7 @@ discard block |
||
964 | 964 | curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); |
965 | 965 | // timeout is borked |
966 | 966 | if ($timeout) { |
967 | - curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout - 1); |
|
967 | + curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout-1); |
|
968 | 968 | } |
969 | 969 | |
970 | 970 | if ($method == 'http10') { |
@@ -974,11 +974,11 @@ discard block |
||
974 | 974 | } |
975 | 975 | |
976 | 976 | if ($username && $password) { |
977 | - curl_setopt($curl, CURLOPT_USERPWD, $username . ':' . $password); |
|
977 | + curl_setopt($curl, CURLOPT_USERPWD, $username.':'.$password); |
|
978 | 978 | if (defined('CURLOPT_HTTPAUTH')) { |
979 | 979 | curl_setopt($curl, CURLOPT_HTTPAUTH, $authType); |
980 | 980 | } elseif ($authType != 1) { |
981 | - error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported by the current PHP/curl install'); |
|
981 | + error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth is supported by the current PHP/curl install'); |
|
982 | 982 | } |
983 | 983 | } |
984 | 984 | |
@@ -1019,13 +1019,13 @@ discard block |
||
1019 | 1019 | if ($proxyPort == 0) { |
1020 | 1020 | $proxyPort = 8080; // NB: even for HTTPS, local connection is on port 8080 |
1021 | 1021 | } |
1022 | - curl_setopt($curl, CURLOPT_PROXY, $proxyHost . ':' . $proxyPort); |
|
1022 | + curl_setopt($curl, CURLOPT_PROXY, $proxyHost.':'.$proxyPort); |
|
1023 | 1023 | if ($proxyUsername) { |
1024 | - curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername . ':' . $proxyPassword); |
|
1024 | + curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername.':'.$proxyPassword); |
|
1025 | 1025 | if (defined('CURLOPT_PROXYAUTH')) { |
1026 | 1026 | curl_setopt($curl, CURLOPT_PROXYAUTH, $proxyAuthType); |
1027 | 1027 | } elseif ($proxyAuthType != 1) { |
1028 | - error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported by the current PHP/curl install'); |
|
1028 | + error_log('XML-RPC: '.__METHOD__.': warning. Only Basic auth to proxy is supported by the current PHP/curl install'); |
|
1029 | 1029 | } |
1030 | 1030 | } |
1031 | 1031 | } |
@@ -1036,7 +1036,7 @@ discard block |
||
1036 | 1036 | if (count($this->cookies)) { |
1037 | 1037 | $cookieHeader = ''; |
1038 | 1038 | foreach ($this->cookies as $name => $cookie) { |
1039 | - $cookieHeader .= $name . '=' . $cookie['value'] . '; '; |
|
1039 | + $cookieHeader .= $name.'='.$cookie['value'].'; '; |
|
1040 | 1040 | } |
1041 | 1041 | curl_setopt($curl, CURLOPT_COOKIE, substr($cookieHeader, 0, -2)); |
1042 | 1042 | } |
@@ -1047,13 +1047,13 @@ discard block |
||
1047 | 1047 | |
1048 | 1048 | $result = curl_exec($curl); |
1049 | 1049 | |
1050 | - if ($this->debug > 1) { |
|
1050 | + if ($this->debug>1) { |
|
1051 | 1051 | $message = "---CURL INFO---\n"; |
1052 | 1052 | foreach (curl_getinfo($curl) as $name => $val) { |
1053 | 1053 | if (is_array($val)) { |
1054 | 1054 | $val = implode("\n", $val); |
1055 | 1055 | } |
1056 | - $message .= $name . ': ' . $val . "\n"; |
|
1056 | + $message .= $name.': '.$val."\n"; |
|
1057 | 1057 | } |
1058 | 1058 | $message .= '---END---'; |
1059 | 1059 | Logger::instance()->debugMessage($message); |
@@ -1063,7 +1063,7 @@ discard block |
||
1063 | 1063 | /// @todo we should use a better check here - what if we get back '' or '0'? |
1064 | 1064 | |
1065 | 1065 | $this->errstr = 'no response'; |
1066 | - $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'] . ': ' . curl_error($curl)); |
|
1066 | + $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'].': '.curl_error($curl)); |
|
1067 | 1067 | curl_close($curl); |
1068 | 1068 | if ($keepAlive) { |
1069 | 1069 | $this->xmlrpc_curl_handle = null; |
@@ -1173,7 +1173,7 @@ discard block |
||
1173 | 1173 | $call['methodName'] = new Value($req->method(), 'string'); |
1174 | 1174 | $numParams = $req->getNumParams(); |
1175 | 1175 | $params = array(); |
1176 | - for ($i = 0; $i < $numParams; $i++) { |
|
1176 | + for ($i = 0; $i<$numParams; $i++) { |
|
1177 | 1177 | $params[$i] = $req->getParam($i); |
1178 | 1178 | } |
1179 | 1179 | $call['params'] = new Value($params, 'array'); |
@@ -1199,15 +1199,15 @@ discard block |
||
1199 | 1199 | /// @todo test this code branch... |
1200 | 1200 | $rets = $result->value(); |
1201 | 1201 | if (!is_array($rets)) { |
1202 | - return false; // bad return type from system.multicall |
|
1202 | + return false; // bad return type from system.multicall |
|
1203 | 1203 | } |
1204 | 1204 | $numRets = count($rets); |
1205 | 1205 | if ($numRets != count($reqs)) { |
1206 | - return false; // wrong number of return values. |
|
1206 | + return false; // wrong number of return values. |
|
1207 | 1207 | } |
1208 | 1208 | |
1209 | 1209 | $response = array(); |
1210 | - for ($i = 0; $i < $numRets; $i++) { |
|
1210 | + for ($i = 0; $i<$numRets; $i++) { |
|
1211 | 1211 | $val = $rets[$i]; |
1212 | 1212 | if (!is_array($val)) { |
1213 | 1213 | return false; |
@@ -1215,7 +1215,7 @@ discard block |
||
1215 | 1215 | switch (count($val)) { |
1216 | 1216 | case 1: |
1217 | 1217 | if (!isset($val[0])) { |
1218 | - return false; // Bad value |
|
1218 | + return false; // Bad value |
|
1219 | 1219 | } |
1220 | 1220 | // Normal return value |
1221 | 1221 | $response[$i] = new Response($val[0], 0, '', 'phpvals'); |
@@ -1243,19 +1243,19 @@ discard block |
||
1243 | 1243 | |
1244 | 1244 | $rets = $result->value(); |
1245 | 1245 | if ($rets->kindOf() != 'array') { |
1246 | - return false; // bad return type from system.multicall |
|
1246 | + return false; // bad return type from system.multicall |
|
1247 | 1247 | } |
1248 | 1248 | $numRets = $rets->count(); |
1249 | 1249 | if ($numRets != count($reqs)) { |
1250 | - return false; // wrong number of return values. |
|
1250 | + return false; // wrong number of return values. |
|
1251 | 1251 | } |
1252 | 1252 | |
1253 | 1253 | $response = array(); |
1254 | - foreach($rets as $val) { |
|
1254 | + foreach ($rets as $val) { |
|
1255 | 1255 | switch ($val->kindOf()) { |
1256 | 1256 | case 'array': |
1257 | 1257 | if ($val->count() != 1) { |
1258 | - return false; // Bad value |
|
1258 | + return false; // Bad value |
|
1259 | 1259 | } |
1260 | 1260 | // Normal return value |
1261 | 1261 | $response[] = new Response($val[0]); |