One more fix for issue #55
[plcapi.git] / src / Client.php
1 <?php
2
3 namespace PhpXmlRpc;
4
5 use PhpXmlRpc\Helper\Logger;
6
7 /**
8  * Used to represent a client of an XML-RPC server.
9  */
10 class Client
11 {
12     const USE_CURL_NEVER = 0;
13     const USE_CURL_ALWAYS = 1;
14     const USE_CURL_AUTO = 2;
15
16     /// @todo: do these need to be public?
17     public $method = 'http';
18     public $server;
19     public $port = 0;
20     public $path;
21
22     public $errno;
23     public $errstr;
24     public $debug = 0;
25
26     public $username = '';
27     public $password = '';
28     public $authtype = 1;
29
30     public $cert = '';
31     public $certpass = '';
32     public $cacert = '';
33     public $cacertdir = '';
34     public $key = '';
35     public $keypass = '';
36     public $verifypeer = true;
37     public $verifyhost = 2;
38     public $sslversion = 0; // corresponds to CURL_SSLVERSION_DEFAULT
39
40     public $proxy = '';
41     public $proxyport = 0;
42     public $proxy_user = '';
43     public $proxy_pass = '';
44     public $proxy_authtype = 1;
45
46     public $cookies = array();
47     public $extracurlopts = array();
48     public $use_curl = self::USE_CURL_AUTO;
49
50     /**
51      * @var bool
52      *
53      * This determines whether the multicall() method will try to take advantage of the system.multicall xmlrpc method
54      * to dispatch to the server an array of requests in a single http roundtrip or simply execute many consecutive http
55      * calls. Defaults to FALSE, but it will be enabled automatically on the first failure of execution of
56      * system.multicall.
57      */
58     public $no_multicall = false;
59
60     /**
61      * List of http compression methods accepted by the client for responses.
62      * NB: PHP supports deflate, gzip compressions out of the box if compiled w. zlib.
63      *
64      * NNB: you can set it to any non-empty array for HTTP11 and HTTPS, since
65      * in those cases it will be up to CURL to decide the compression methods
66      * it supports. You might check for the presence of 'zlib' in the output of
67      * curl_version() to determine whether compression is supported or not
68      */
69     public $accepted_compression = array();
70
71     /**
72      * Name of compression scheme to be used for sending requests.
73      * Either null, gzip or deflate.
74      */
75
76     public $request_compression = '';
77
78     /**
79      * CURL handle: used for keep-alive connections (PHP 4.3.8 up, see:
80      * http://curl.haxx.se/docs/faq.html#7.3).
81      */
82     public $xmlrpc_curl_handle = null;
83
84     /// Whether to use persistent connections for http 1.1 and https
85     public $keepalive = false;
86
87     /// Charset encodings that can be decoded without problems by the client
88     public $accepted_charset_encodings = array();
89
90     /**
91      * The charset encoding that will be used for serializing request sent by the client.
92      * It defaults to NULL, which means using US-ASCII and encoding all characters outside of the ASCII range using
93      * their xml character entity representation (this has the benefit that line end characters will not be mangled in
94      * the transfer, a CR-LF will be preserved as well as a singe LF).
95      *  Valid values are 'US-ASCII', 'UTF-8' and 'ISO-8859-1'
96      */
97     public $request_charset_encoding = '';
98
99     /**
100      * Decides the content of Response objects returned by calls to send() and multicall().
101      * Valid values are 'xmlrpcvals', 'phpvals' or 'xml'.
102      *
103      * Determines whether the value returned inside an Response object as results of calls to the send() and multicall()
104      * methods will be a Value object, a plain php value or a raw xml string.
105      * Allowed values are 'xmlrpcvals' (the default), 'phpvals' and 'xml'.
106      * To allow the user to differentiate between a correct and a faulty response, fault responses will be returned as
107      * Response objects in any case.
108      * Note that the 'phpvals' setting will yield faster execution times, but some of the information from the original
109      * response will be lost. It will be e.g. impossible to tell whether a particular php string value was sent by the
110      * server as an xmlrpc string or base64 value.
111      */
112     public $return_type = 'xmlrpcvals';
113
114     /**
115      * Sent to servers in http headers.
116      */
117     public $user_agent;
118
119     /**
120      * @param string $path either the PATH part of the xmlrpc server URL, or complete server URL (in which case you
121      *                     should use and empty string for all other parameters)
122      *                     e.g. /xmlrpc/server.php
123      *                     e.g. http://phpxmlrpc.sourceforge.net/server.php
124      *                     e.g. https://james:bond@secret.service.com:443/xmlrpcserver?agent=007
125      * @param string $server the server name / ip address
126      * @param integer $port the port the server is listening on, when omitted defaults to 80 or 443 depending on
127      *                      protocol used
128      * @param string $method the http protocol variant: defaults to 'http'; 'https' and 'http11' can be used if CURL is
129      *                       installed. The value set here can be overridden in any call to $this->send().
130      */
131     public function __construct($path, $server = '', $port = '', $method = '')
132     {
133         // allow user to specify all params in $path
134         if ($server == '' && $port == '' && $method == '') {
135             $parts = parse_url($path);
136             $server = $parts['host'];
137             $path = isset($parts['path']) ? $parts['path'] : '';
138             if (isset($parts['query'])) {
139                 $path .= '?' . $parts['query'];
140             }
141             if (isset($parts['fragment'])) {
142                 $path .= '#' . $parts['fragment'];
143             }
144             if (isset($parts['port'])) {
145                 $port = $parts['port'];
146             }
147             if (isset($parts['scheme'])) {
148                 $method = $parts['scheme'];
149             }
150             if (isset($parts['user'])) {
151                 $this->username = $parts['user'];
152             }
153             if (isset($parts['pass'])) {
154                 $this->password = $parts['pass'];
155             }
156         }
157         if ($path == '' || $path[0] != '/') {
158             $this->path = '/' . $path;
159         } else {
160             $this->path = $path;
161         }
162         $this->server = $server;
163         if ($port != '') {
164             $this->port = $port;
165         }
166         if ($method != '') {
167             $this->method = $method;
168         }
169
170         // if ZLIB is enabled, let the client by default accept compressed responses
171         if (function_exists('gzinflate') || (
172                 function_exists('curl_init') && (($info = curl_version()) &&
173                     ((is_string($info) && strpos($info, 'zlib') !== null) || isset($info['libz_version'])))
174             )
175         ) {
176             $this->accepted_compression = array('gzip', 'deflate');
177         }
178
179         // keepalives: enabled by default
180         $this->keepalive = true;
181
182         // by default the xml parser can support these 3 charset encodings
183         $this->accepted_charset_encodings = array('UTF-8', 'ISO-8859-1', 'US-ASCII');
184
185         // Add all charsets which mbstring can handle, but remove junk not found in IANA registry at
186         // http://www.iana.org/assignments/character-sets/character-sets.xhtml
187         // NB: this is disabled to avoid making all the requests sent huge... mbstring supports more than 80 charsets!
188         /*if (function_exists('mb_list_encodings')) {
189
190             $encodings = array_diff(mb_list_encodings(), array('pass', 'auto', 'wchar', 'BASE64', 'UUENCODE', 'ASCII',
191                 'HTML-ENTITIES', 'Quoted-Printable', '7bit','8bit', 'byte2be', 'byte2le', 'byte4be', 'byte4le'));
192             $this->accepted_charset_encodings = array_unique(array_merge($this->accepted_charset_encodings, $encodings));
193         }*/
194
195         // initialize user_agent string
196         $this->user_agent = PhpXmlRpc::$xmlrpcName . ' ' . PhpXmlRpc::$xmlrpcVersion;
197     }
198
199     /**
200      * Enable/disable the echoing to screen of the xmlrpc responses received. The default is not no output anything.
201      *
202      * The debugging information at level 1 includes the raw data returned from the XML-RPC server it was querying
203      * (including bot HTTP headers and the full XML payload), and the PHP value the client attempts to create to
204      * represent the value returned by the server
205      * At level2, the complete payload of the xmlrpc request is also printed, before being sent t the server.
206      *
207      * This option can be very useful when debugging servers as it allows you to see exactly what the client sends and
208      * the server returns.
209      *
210      * @param integer $level values 0, 1 and 2 are supported (2 = echo sent msg too, before received response)
211      */
212     public function setDebug($level)
213     {
214         $this->debug = $level;
215     }
216
217     /**
218      * Sets the username and password for authorizing the client to the server.
219      *
220      * With the default (HTTP) transport, this information is used for HTTP Basic authorization.
221      * Note that username and password can also be set using the class constructor.
222      * With HTTP 1.1 and HTTPS transport, NTLM and Digest authentication protocols are also supported. To enable them use
223      * the constants CURLAUTH_DIGEST and CURLAUTH_NTLM as values for the auth type parameter.
224      *
225      * @param string $user username
226      * @param string $password password
227      * @param integer $authType auth type. See curl_setopt man page for supported auth types. Defaults to CURLAUTH_BASIC
228      *                          (basic auth). Note that auth types NTLM and Digest will only work if the Curl php
229      *                          extension is enabled.
230      */
231     public function setCredentials($user, $password, $authType = 1)
232     {
233         $this->username = $user;
234         $this->password = $password;
235         $this->authtype = $authType;
236     }
237
238     /**
239      * Set the optional certificate and passphrase used in SSL-enabled communication with a remote server.
240      *
241      * Note: to retrieve information about the client certificate on the server side, you will need to look into the
242      * environment variables which are set up by the webserver. Different webservers will typically set up different
243      * variables.
244      *
245      * @param string $cert the name of a file containing a PEM formatted certificate
246      * @param string $certPass the password required to use it
247      */
248     public function setCertificate($cert, $certPass = '')
249     {
250         $this->cert = $cert;
251         $this->certpass = $certPass;
252     }
253
254     /**
255      * Add a CA certificate to verify server with in SSL-enabled communication when SetSSLVerifypeer has been set to TRUE.
256      *
257      * See the php manual page about CURLOPT_CAINFO for more details.
258      *
259      * @param string $caCert certificate file name (or dir holding certificates)
260      * @param bool $isDir set to true to indicate cacert is a dir. defaults to false
261      */
262     public function setCaCertificate($caCert, $isDir = false)
263     {
264         if ($isDir) {
265             $this->cacertdir = $caCert;
266         } else {
267             $this->cacert = $caCert;
268         }
269     }
270
271     /**
272      * Set attributes for SSL communication: private SSL key.
273      *
274      * NB: does not work in older php/curl installs.
275      * Thanks to Daniel Convissor.
276      *
277      * @param string $key The name of a file containing a private SSL key
278      * @param string $keyPass The secret password needed to use the private SSL key
279      */
280     public function setKey($key, $keyPass)
281     {
282         $this->key = $key;
283         $this->keypass = $keyPass;
284     }
285
286     /**
287      * Set attributes for SSL communication: verify the remote host's SSL certificate, and cause the connection to fail
288      * if the cert verification fails.
289      *
290      * By default, verification is enabled.
291      * To specify custom SSL certificates to validate the server with, use the setCaCertificate method.
292      *
293      * @param bool $i enable/disable verification of peer certificate
294      */
295     public function setSSLVerifyPeer($i)
296     {
297         $this->verifypeer = $i;
298     }
299
300     /**
301      * Set attributes for SSL communication: verify the remote host's SSL certificate's common name (CN).
302      *
303      * Note that support for value 1 has been removed in cURL 7.28.1
304      *
305      * @param int $i Set to 1 to only the existence of a CN, not that it matches
306      */
307     public function setSSLVerifyHost($i)
308     {
309         $this->verifyhost = $i;
310     }
311
312     /**
313      * Set attributes for SSL communication: SSL version to use. Best left at 0 (default value ): let cURL decide
314      *
315      * @param int $i
316      */
317     public function setSSLVersion($i)
318     {
319         $this->sslversion = $i;
320     }
321
322     /**
323      * Set proxy info.
324      *
325      * NB: CURL versions before 7.11.10 cannot use a proxy to communicate with https servers.
326      *
327      * @param string $proxyHost
328      * @param string $proxyPort Defaults to 8080 for HTTP and 443 for HTTPS
329      * @param string $proxyUsername Leave blank if proxy has public access
330      * @param string $proxyPassword Leave blank if proxy has public access
331      * @param int $proxyAuthType defaults to CURLAUTH_BASIC (Basic authentication protocol); set to constant CURLAUTH_NTLM
332      *                           to use NTLM auth with proxy (has effect only when the client uses the HTTP 1.1 protocol)
333      */
334     public function setProxy($proxyHost, $proxyPort, $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1)
335     {
336         $this->proxy = $proxyHost;
337         $this->proxyport = $proxyPort;
338         $this->proxy_user = $proxyUsername;
339         $this->proxy_pass = $proxyPassword;
340         $this->proxy_authtype = $proxyAuthType;
341     }
342
343     /**
344      * Enables/disables reception of compressed xmlrpc responses.
345      *
346      * This requires the "zlib" extension to be enabled in your php install. If it is, by default xmlrpc_client
347      * instances will enable reception of compressed content.
348      * Note that enabling reception of compressed responses merely adds some standard http headers to xmlrpc requests.
349      * It is up to the xmlrpc server to return compressed responses when receiving such requests.
350      *
351      * @param string $compMethod either 'gzip', 'deflate', 'any' or ''
352      */
353     public function setAcceptedCompression($compMethod)
354     {
355         if ($compMethod == 'any') {
356             $this->accepted_compression = array('gzip', 'deflate');
357         } elseif ($compMethod == false) {
358             $this->accepted_compression = array();
359         } else {
360             $this->accepted_compression = array($compMethod);
361         }
362     }
363
364     /**
365      * Enables/disables http compression of xmlrpc request.
366      *
367      * This requires the "zlib" extension to be enabled in your php install.
368      * Take care when sending compressed requests: servers might not support them (and automatic fallback to
369      * uncompressed requests is not yet implemented).
370      *
371      * @param string $compMethod either 'gzip', 'deflate' or ''
372      */
373     public function setRequestCompression($compMethod)
374     {
375         $this->request_compression = $compMethod;
376     }
377
378     /**
379      * Adds a cookie to list of cookies that will be sent to server with every further request (useful e.g. for keeping
380      * session info outside of the xml-rpc payload).
381      *
382      * NB: By default cookies are sent using the 'original/netscape' format, which is also the same as the RFC 2965;
383      * setting any param but name and value will turn the cookie into a 'version 1' cookie (i.e. RFC 2109 cookie) that
384      * might not be fully supported by the server. Note that RFC 2109 has currently 'historic' status...
385      *
386      * @param string $name nb: will not be escaped in the request's http headers. Take care not to use CTL chars or
387      *                     separators!
388      * @param string $value
389      * @param string $path leave this empty unless the xml-rpc server only accepts RFC 2109 cookies
390      * @param string $domain leave this empty unless the xml-rpc server only accepts RFC 2109 cookies
391      * @param int $port leave this empty unless the xml-rpc server only accepts RFC 2109 cookies
392      *
393      * @todo check correctness of urlencoding cookie value (copied from php way of doing it, but php is generally sending
394      *       response not requests. We do the opposite...)
395      * @todo strip invalid chars from cookie name? As per RFC6265, we should follow RFC2616, Section 2.2
396      */
397     public function setCookie($name, $value = '', $path = '', $domain = '', $port = null)
398     {
399         $this->cookies[$name]['value'] = urlencode($value);
400         if ($path || $domain || $port) {
401             $this->cookies[$name]['path'] = $path;
402             $this->cookies[$name]['domain'] = $domain;
403             $this->cookies[$name]['port'] = $port;
404             $this->cookies[$name]['version'] = 1;
405         } else {
406             $this->cookies[$name]['version'] = 0;
407         }
408     }
409
410     /**
411      * Directly set cURL options, for extra flexibility (when in cURL mode).
412      *
413      * It allows eg. to bind client to a specific IP interface / address.
414      *
415      * @param array $options
416      */
417     public function setCurlOptions($options)
418     {
419         $this->extracurlopts = $options;
420     }
421
422     /**
423      * @param int $useCurlMode self::USE_CURL_ALWAYS, self::USE_CURL_AUTO or self::USE_CURL_NEVER
424      */
425     public function setUseCurl($useCurlMode)
426     {
427         $this->use_curl = $useCurlMode;
428     }
429
430
431     /**
432      * Set user-agent string that will be used by this client instance in http headers sent to the server.
433      *
434      * The default user agent string includes the name of this library and the version number.
435      *
436      * @param string $agentString
437      */
438     public function setUserAgent($agentString)
439     {
440         $this->user_agent = $agentString;
441     }
442
443     /**
444      * Send an xmlrpc request to the server.
445      *
446      * @param Request|Request[]|string $req The Request object, or an array of requests for using multicall, or the
447      *                                      complete xml representation of a request.
448      *                                      When sending an array of Request objects, the client will try to make use of
449      *                                      a single 'system.multicall' xml-rpc method call to forward to the server all
450      *                                      the requests in a single HTTP round trip, unless $this->no_multicall has
451      *                                      been previously set to TRUE (see the multicall method below), in which case
452      *                                      many consecutive xmlrpc requests will be sent. The method will return an
453      *                                      array of Response objects in both cases.
454      *                                      The third variant allows to build by hand (or any other means) a complete
455      *                                      xmlrpc request message, and send it to the server. $req should be a string
456      *                                      containing the complete xml representation of the request. It is e.g. useful
457      *                                      when, for maximal speed of execution, the request is serialized into a
458      *                                      string using the native php xmlrpc functions (see http://www.php.net/xmlrpc)
459      * @param integer $timeout Connection timeout, in seconds, If unspecified, a platform specific timeout will apply.
460      *                         This timeout value is passed to fsockopen(). It is also used for detecting server
461      *                         timeouts during communication (i.e. if the server does not send anything to the client
462      *                         for $timeout seconds, the connection will be closed).
463      * @param string $method valid values are 'http', 'http11' and 'https'. If left unspecified, the http protocol
464      *                       chosen during creation of the object will be used.
465      *
466      * @return Response|Response[] Note that the client will always return a Response object, even if the call fails
467      */
468     public function send($req, $timeout = 0, $method = '')
469     {
470         // if user does not specify http protocol, use native method of this client
471         // (i.e. method set during call to constructor)
472         if ($method == '') {
473             $method = $this->method;
474         }
475
476         if (is_array($req)) {
477             // $req is an array of Requests
478             $r = $this->multicall($req, $timeout, $method);
479
480             return $r;
481         } elseif (is_string($req)) {
482             $n = new Request('');
483             $n->payload = $req;
484             $req = $n;
485         }
486
487         // where req is a Request
488         $req->setDebug($this->debug);
489
490         /// @todo we could be smarter about this and force usage of curl in scenarios where it is both available and
491         ///       needed, such as digest or ntlm auth. Do not attempt to use it for https if not present
492         $useCurl = ($this->use_curl == self::USE_CURL_ALWAYS) || ($this->use_curl == self::USE_CURL_AUTO &&
493             ($method == 'https' || $method == 'http11'));
494
495         if ($useCurl) {
496             $r = $this->sendPayloadCURL(
497                 $req,
498                 $this->server,
499                 $this->port,
500                 $timeout,
501                 $this->username,
502                 $this->password,
503                 $this->authtype,
504                 $this->cert,
505                 $this->certpass,
506                 $this->cacert,
507                 $this->cacertdir,
508                 $this->proxy,
509                 $this->proxyport,
510                 $this->proxy_user,
511                 $this->proxy_pass,
512                 $this->proxy_authtype,
513                 // bc
514                 $method == 'http11' ? 'http' : $method,
515                 $this->keepalive,
516                 $this->key,
517                 $this->keypass,
518                 $this->sslversion
519             );
520         } else {
521             // plain 'http 1.0': default to using socket
522             $r = $this->sendPayloadSocket(
523                 $req,
524                 $this->server,
525                 $this->port,
526                 $timeout,
527                 $this->username,
528                 $this->password,
529                 $this->authtype,
530                 $this->cert,
531                 $this->certpass,
532                 $this->cacert,
533                 $this->cacertdir,
534                 $this->proxy,
535                 $this->proxyport,
536                 $this->proxy_user,
537                 $this->proxy_pass,
538                 $this->proxy_authtype,
539                 $method,
540                 $this->key,
541                 $this->keypass,
542                 $this->sslversion
543             );
544         }
545
546         return $r;
547     }
548
549     /**
550      * @deprecated
551      * @param Request $req
552      * @param string $server
553      * @param int $port
554      * @param int $timeout
555      * @param string $username
556      * @param string $password
557      * @param int $authType
558      * @param string $proxyHost
559      * @param int $proxyPort
560      * @param string $proxyUsername
561      * @param string $proxyPassword
562      * @param int $proxyAuthType
563      * @param string $method
564      * @return Response
565      */
566     protected function sendPayloadHTTP10($req, $server, $port, $timeout = 0, $username = '', $password = '',
567         $authType = 1, $proxyHost = '', $proxyPort = 0, $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1,
568         $method='http')
569     {
570         //trigger_error('Method ' . __METHOD__ . ' is deprecated', E_USER_DEPRECATED);
571
572         return $this->sendPayloadSocket($req, $server, $port, $timeout, $username, $password, $authType, null, null,
573             null, null, $proxyHost, $proxyPort, $proxyUsername, $proxyPassword, $proxyAuthType, $method);
574     }
575
576     /**
577      * @deprecated
578      * @param Request $req
579      * @param string $server
580      * @param int $port
581      * @param int $timeout
582      * @param string $username
583      * @param string $password
584      * @param int $authType
585      * @param string $cert
586      * @param string $certPass
587      * @param string $caCert
588      * @param string $caCertDir
589      * @param string $proxyHost
590      * @param int $proxyPort
591      * @param string $proxyUsername
592      * @param string $proxyPassword
593      * @param int $proxyAuthType
594      * @param bool $keepAlive
595      * @param string $key
596      * @param string $keyPass
597      * @param int $sslVersion
598      * @return Response
599      */
600     protected function sendPayloadHTTPS($req, $server, $port, $timeout = 0, $username = '',  $password = '',
601         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
602         $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $keepAlive = false, $key = '', $keyPass = '',
603         $sslVersion = 0)
604     {
605         //trigger_error('Method ' . __METHOD__ . ' is deprecated', E_USER_DEPRECATED);
606
607         return $this->sendPayloadCURL($req, $server, $port, $timeout, $username,
608             $password, $authType, $cert, $certPass, $caCert, $caCertDir, $proxyHost, $proxyPort,
609             $proxyUsername, $proxyPassword, $proxyAuthType, 'https', $keepAlive, $key, $keyPass, $sslVersion);
610     }
611
612     /**
613      * @param Request $req
614      * @param string $server
615      * @param int $port
616      * @param int $timeout
617      * @param string $username
618      * @param string $password
619      * @param int $authType only value supported is 1
620      * @param string $cert
621      * @param string $certPass
622      * @param string $caCert
623      * @param string $caCertDir
624      * @param string $proxyHost
625      * @param int $proxyPort
626      * @param string $proxyUsername
627      * @param string $proxyPassword
628      * @param int $proxyAuthType only value supported is 1
629      * @param string $method 'http' (synonym for 'http10'), 'http10' or 'https'
630      * @param string $key
631      * @param string $keyPass @todo not implemented yet.
632      * @param int $sslVersion @todo not implemented yet. See http://php.net/manual/en/migration56.openssl.php
633      * @return Response
634      */
635     protected function sendPayloadSocket($req, $server, $port, $timeout = 0, $username = '', $password = '',
636         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
637         $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method='http', $key = '', $keyPass = '',
638         $sslVersion = 0)
639     {
640         if ($port == 0) {
641             $port = ( $method === 'https' ) ? 443 : 80;
642         }
643
644         // Only create the payload if it was not created previously
645         if (empty($req->payload)) {
646             $req->createPayload($this->request_charset_encoding);
647         }
648
649         $payload = $req->payload;
650         // Deflate request body and set appropriate request headers
651         $encodingHdr = '';
652         if (function_exists('gzdeflate') && ($this->request_compression == 'gzip' || $this->request_compression == 'deflate')) {
653             if ($this->request_compression == 'gzip') {
654                 $a = @gzencode($payload);
655                 if ($a) {
656                     $payload = $a;
657                     $encodingHdr = "Content-Encoding: gzip\r\n";
658                 }
659             } else {
660                 $a = @gzcompress($payload);
661                 if ($a) {
662                     $payload = $a;
663                     $encodingHdr = "Content-Encoding: deflate\r\n";
664                 }
665             }
666         }
667
668         // thanks to Grant Rauscher <grant7@firstworld.net> for this
669         $credentials = '';
670         if ($username != '') {
671             $credentials = 'Authorization: Basic ' . base64_encode($username . ':' . $password) . "\r\n";
672             if ($authType != 1) {
673                 error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported with HTTP 1.0');
674             }
675         }
676
677         $acceptedEncoding = '';
678         if (is_array($this->accepted_compression) && count($this->accepted_compression)) {
679             $acceptedEncoding = 'Accept-Encoding: ' . implode(', ', $this->accepted_compression) . "\r\n";
680         }
681
682         $proxyCredentials = '';
683         if ($proxyHost) {
684             if ($proxyPort == 0) {
685                 $proxyPort = 8080;
686             }
687             $connectServer = $proxyHost;
688             $connectPort = $proxyPort;
689             $transport = 'tcp';
690             $uri = 'http://' . $server . ':' . $port . $this->path;
691             if ($proxyUsername != '') {
692                 if ($proxyAuthType != 1) {
693                     error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported with HTTP 1.0');
694                 }
695                 $proxyCredentials = 'Proxy-Authorization: Basic ' . base64_encode($proxyUsername . ':' . $proxyPassword) . "\r\n";
696             }
697         } else {
698             $connectServer = $server;
699             $connectPort = $port;
700             $transport = ( $method === 'https' ) ? 'tls' : 'tcp';
701             $uri = $this->path;
702         }
703
704         // Cookie generation, as per rfc2965 (version 1 cookies) or
705         // netscape's rules (version 0 cookies)
706         $cookieHeader = '';
707         if (count($this->cookies)) {
708             $version = '';
709             foreach ($this->cookies as $name => $cookie) {
710                 if ($cookie['version']) {
711                     $version = ' $Version="' . $cookie['version'] . '";';
712                     $cookieHeader .= ' ' . $name . '="' . $cookie['value'] . '";';
713                     if ($cookie['path']) {
714                         $cookieHeader .= ' $Path="' . $cookie['path'] . '";';
715                     }
716                     if ($cookie['domain']) {
717                         $cookieHeader .= ' $Domain="' . $cookie['domain'] . '";';
718                     }
719                     if ($cookie['port']) {
720                         $cookieHeader .= ' $Port="' . $cookie['port'] . '";';
721                     }
722                 } else {
723                     $cookieHeader .= ' ' . $name . '=' . $cookie['value'] . ";";
724                 }
725             }
726             $cookieHeader = 'Cookie:' . $version . substr($cookieHeader, 0, -1) . "\r\n";
727         }
728
729         // omit port if default
730         if (($port == 80 && in_array($method, array('http', 'http10'))) || ($port == 443 && $method == 'https')) {
731             $port =  '';
732         } else {
733             $port = ':' . $port;
734         }
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" .
747             $payload;
748
749         if ($this->debug > 1) {
750             Logger::instance()->debugMessage("---SENDING---\n$op\n---END---");
751         }
752
753         $contextOptions = array();
754         if ($method == 'https') {
755             if ($cert != '') {
756                 $contextOptions['ssl']['local_cert'] = $cert;
757                 if ($certPass != '') {
758                     $contextOptions['ssl']['passphrase'] = $certPass;
759                 }
760             }
761             if ($caCert != '') {
762                 $contextOptions['ssl']['cafile'] = $caCert;
763             }
764             if ($caCertDir != '') {
765                 $contextOptions['ssl']['capath'] = $caCertDir;
766             }
767             if ($key != '') {
768                 $contextOptions['ssl']['local_pk'] = $key;
769             }
770             $contextOptions['ssl']['verify_peer'] = $this->verifypeer;
771             $contextOptions['ssl']['verify_peer_name'] = $this->verifypeer;
772         }
773         $context = stream_context_create($contextOptions);
774
775         if ($timeout <= 0) {
776             $connectTimeout = ini_get('default_socket_timeout');
777         } else {
778             $connectTimeout = $timeout;
779         }
780
781         $this->errno = 0;
782         $this->errstr = '';
783
784         $fp = @stream_socket_client("$transport://$connectServer:$connectPort", $this->errno, $this->errstr, $connectTimeout,
785             STREAM_CLIENT_CONNECT, $context);
786         if ($fp) {
787             if ($timeout > 0) {
788                 stream_set_timeout($fp, $timeout);
789             }
790         } else {
791             if ($this->errstr == '') {
792                 $err = error_get_last();
793                 $this->errstr = $err['message'];
794             }
795             $this->errstr = 'Connect error: ' . $this->errstr;
796             $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr . ' (' . $this->errno . ')');
797
798             return $r;
799         }
800
801         if (!fputs($fp, $op, strlen($op))) {
802             fclose($fp);
803             $this->errstr = 'Write error';
804             $r = new Response(0, PhpXmlRpc::$xmlrpcerr['http_error'], $this->errstr);
805
806             return $r;
807         }
808
809         // G. Giunta 2005/10/24: close socket before parsing.
810         // should yield slightly better execution times, and make easier recursive calls (e.g. to follow http redirects)
811         $ipd = '';
812         do {
813             // shall we check for $data === FALSE?
814             // as per the manual, it signals an error
815             $ipd .= fread($fp, 32768);
816         } while (!feof($fp));
817         fclose($fp);
818
819         $r = $req->parseResponse($ipd, false, $this->return_type);
820
821         return $r;
822     }
823
824     /**
825      * Contributed by Justin Miller <justin@voxel.net>
826      * Requires curl to be built into PHP
827      * NB: CURL versions before 7.11.10 cannot use proxy to talk to https servers!
828      *
829      * @param Request $req
830      * @param string $server
831      * @param int $port
832      * @param int $timeout
833      * @param string $username
834      * @param string $password
835      * @param int $authType
836      * @param string $cert
837      * @param string $certPass
838      * @param string $caCert
839      * @param string $caCertDir
840      * @param string $proxyHost
841      * @param int $proxyPort
842      * @param string $proxyUsername
843      * @param string $proxyPassword
844      * @param int $proxyAuthType
845      * @param string $method 'http' (let curl decide), 'http10', 'http11' or 'https'
846      * @param bool $keepAlive
847      * @param string $key
848      * @param string $keyPass
849      * @param int $sslVersion
850      * @return Response
851      */
852     protected function sendPayloadCURL($req, $server, $port, $timeout = 0, $username = '', $password = '',
853         $authType = 1, $cert = '', $certPass = '', $caCert = '', $caCertDir = '', $proxyHost = '', $proxyPort = 0,
854         $proxyUsername = '', $proxyPassword = '', $proxyAuthType = 1, $method = 'https', $keepAlive = false, $key = '',
855         $keyPass = '', $sslVersion = 0)
856     {
857         if (!function_exists('curl_init')) {
858             $this->errstr = 'CURL unavailable on this install';
859             return new Response(0, PhpXmlRpc::$xmlrpcerr['no_curl'], PhpXmlRpc::$xmlrpcstr['no_curl']);
860         }
861         if ($method == 'https') {
862             if (($info = curl_version()) &&
863                 ((is_string($info) && strpos($info, 'OpenSSL') === null) || (is_array($info) && !isset($info['ssl_version'])))
864             ) {
865                 $this->errstr = 'SSL unavailable on this install';
866                 return new Response(0, PhpXmlRpc::$xmlrpcerr['no_ssl'], PhpXmlRpc::$xmlrpcstr['no_ssl']);
867             }
868         }
869
870         if ($port == 0) {
871             if (in_array($method, array('http', 'http10', 'http11'))) {
872                 $port = 80;
873             } else {
874                 $port = 443;
875             }
876         }
877
878         // Only create the payload if it was not created previously
879         if (empty($req->payload)) {
880             $req->createPayload($this->request_charset_encoding);
881         }
882
883         // Deflate request body and set appropriate request headers
884         $payload = $req->payload;
885         if (function_exists('gzdeflate') && ($this->request_compression == 'gzip' || $this->request_compression == 'deflate')) {
886             if ($this->request_compression == 'gzip') {
887                 $a = @gzencode($payload);
888                 if ($a) {
889                     $payload = $a;
890                     $encodingHdr = 'Content-Encoding: gzip';
891                 }
892             } else {
893                 $a = @gzcompress($payload);
894                 if ($a) {
895                     $payload = $a;
896                     $encodingHdr = 'Content-Encoding: deflate';
897                 }
898             }
899         } else {
900             $encodingHdr = '';
901         }
902
903         if ($this->debug > 1) {
904             Logger::instance()->debugMessage("---SENDING---\n$payload\n---END---");
905         }
906
907         if (!$keepAlive || !$this->xmlrpc_curl_handle) {
908             if ($method == 'http11' || $method == 'http10') {
909                 $protocol = 'http';
910             } else {
911                 $protocol = $method;
912             }
913             $curl = curl_init($protocol . '://' . $server . ':' . $port . $this->path);
914             if ($keepAlive) {
915                 $this->xmlrpc_curl_handle = $curl;
916             }
917         } else {
918             $curl = $this->xmlrpc_curl_handle;
919         }
920
921         // results into variable
922         curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
923
924         if ($this->debug > 1) {
925             curl_setopt($curl, CURLOPT_VERBOSE, true);
926             /// @todo allow callers to redirect curlopt_stderr to some stream which can be buffered
927         }
928         curl_setopt($curl, CURLOPT_USERAGENT, $this->user_agent);
929         // required for XMLRPC: post the data
930         curl_setopt($curl, CURLOPT_POST, 1);
931         // the data
932         curl_setopt($curl, CURLOPT_POSTFIELDS, $payload);
933
934         // return the header too
935         curl_setopt($curl, CURLOPT_HEADER, 1);
936
937         // NB: if we set an empty string, CURL will add http header indicating
938         // ALL methods it is supporting. This is possibly a better option than
939         // letting the user tell what curl can / cannot do...
940         if (is_array($this->accepted_compression) && count($this->accepted_compression)) {
941             //curl_setopt($curl, CURLOPT_ENCODING, implode(',', $this->accepted_compression));
942             // empty string means 'any supported by CURL' (shall we catch errors in case CURLOPT_SSLKEY undefined ?)
943             if (count($this->accepted_compression) == 1) {
944                 curl_setopt($curl, CURLOPT_ENCODING, $this->accepted_compression[0]);
945             } else {
946                 curl_setopt($curl, CURLOPT_ENCODING, '');
947             }
948         }
949         // extra headers
950         $headers = array('Content-Type: ' . $req->content_type, 'Accept-Charset: ' . implode(',', $this->accepted_charset_encodings));
951         // if no keepalive is wanted, let the server know it in advance
952         if (!$keepAlive) {
953             $headers[] = 'Connection: close';
954         }
955         // request compression header
956         if ($encodingHdr) {
957             $headers[] = $encodingHdr;
958         }
959
960         // Fix the HTTP/1.1 417 Expectation Failed Bug (curl by default adds a 'Expect: 100-continue' header when POST
961         // size exceeds 1025 bytes, apparently)
962         $headers[] = 'Expect:';
963
964         curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
965         // timeout is borked
966         if ($timeout) {
967             curl_setopt($curl, CURLOPT_TIMEOUT, $timeout == 1 ? 1 : $timeout - 1);
968         }
969
970         if ($method == 'http10') {
971             curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
972         } elseif ($method == 'http11') {
973             curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
974         }
975
976         if ($username && $password) {
977             curl_setopt($curl, CURLOPT_USERPWD, $username . ':' . $password);
978             if (defined('CURLOPT_HTTPAUTH')) {
979                 curl_setopt($curl, CURLOPT_HTTPAUTH, $authType);
980             } elseif ($authType != 1) {
981                 error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth is supported by the current PHP/curl install');
982             }
983         }
984
985         if ($method == 'https') {
986             // set cert file
987             if ($cert) {
988                 curl_setopt($curl, CURLOPT_SSLCERT, $cert);
989             }
990             // set cert password
991             if ($certPass) {
992                 curl_setopt($curl, CURLOPT_SSLCERTPASSWD, $certPass);
993             }
994             // whether to verify remote host's cert
995             curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, $this->verifypeer);
996             // set ca certificates file/dir
997             if ($caCert) {
998                 curl_setopt($curl, CURLOPT_CAINFO, $caCert);
999             }
1000             if ($caCertDir) {
1001                 curl_setopt($curl, CURLOPT_CAPATH, $caCertDir);
1002             }
1003             // set key file (shall we catch errors in case CURLOPT_SSLKEY undefined ?)
1004             if ($key) {
1005                 curl_setopt($curl, CURLOPT_SSLKEY, $key);
1006             }
1007             // set key password (shall we catch errors in case CURLOPT_SSLKEY undefined ?)
1008             if ($keyPass) {
1009                 curl_setopt($curl, CURLOPT_SSLKEYPASSWD, $keyPass);
1010             }
1011             // whether to verify cert's common name (CN); 0 for no, 1 to verify that it exists, and 2 to verify that it matches the hostname used
1012             curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, $this->verifyhost);
1013             // allow usage of different SSL versions
1014             curl_setopt($curl, CURLOPT_SSLVERSION, $sslVersion);
1015         }
1016
1017         // proxy info
1018         if ($proxyHost) {
1019             if ($proxyPort == 0) {
1020                 $proxyPort = 8080; // NB: even for HTTPS, local connection is on port 8080
1021             }
1022             curl_setopt($curl, CURLOPT_PROXY, $proxyHost . ':' . $proxyPort);
1023             if ($proxyUsername) {
1024                 curl_setopt($curl, CURLOPT_PROXYUSERPWD, $proxyUsername . ':' . $proxyPassword);
1025                 if (defined('CURLOPT_PROXYAUTH')) {
1026                     curl_setopt($curl, CURLOPT_PROXYAUTH, $proxyAuthType);
1027                 } elseif ($proxyAuthType != 1) {
1028                     error_log('XML-RPC: ' . __METHOD__ . ': warning. Only Basic auth to proxy is supported by the current PHP/curl install');
1029                 }
1030             }
1031         }
1032
1033         // NB: should we build cookie http headers by hand rather than let CURL do it?
1034         // the following code does not honour 'expires', 'path' and 'domain' cookie attributes
1035         // set to client obj the the user...
1036         if (count($this->cookies)) {
1037             $cookieHeader = '';
1038             foreach ($this->cookies as $name => $cookie) {
1039                 $cookieHeader .= $name . '=' . $cookie['value'] . '; ';
1040             }
1041             curl_setopt($curl, CURLOPT_COOKIE, substr($cookieHeader, 0, -2));
1042         }
1043
1044         foreach ($this->extracurlopts as $opt => $val) {
1045             curl_setopt($curl, $opt, $val);
1046         }
1047
1048         $result = curl_exec($curl);
1049
1050         if ($this->debug > 1) {
1051             $message = "---CURL INFO---\n";
1052             foreach (curl_getinfo($curl) as $name => $val) {
1053                 if (is_array($val)) {
1054                     $val = implode("\n", $val);
1055                 }
1056                 $message .= $name . ': ' . $val . "\n";
1057             }
1058             $message .= '---END---';
1059             Logger::instance()->debugMessage($message);
1060         }
1061
1062         if (!$result) {
1063             /// @todo we should use a better check here - what if we get back '' or '0'?
1064
1065             $this->errstr = 'no response';
1066             $resp = new Response(0, PhpXmlRpc::$xmlrpcerr['curl_fail'], PhpXmlRpc::$xmlrpcstr['curl_fail'] . ': ' . curl_error($curl));
1067             curl_close($curl);
1068             if ($keepAlive) {
1069                 $this->xmlrpc_curl_handle = null;
1070             }
1071         } else {
1072             if (!$keepAlive) {
1073                 curl_close($curl);
1074             }
1075             $resp = $req->parseResponse($result, true, $this->return_type);
1076             // if we got back a 302, we can not reuse the curl handle for later calls
1077             if ($resp->faultCode() == PhpXmlRpc::$xmlrpcerr['http_error'] && $keepAlive) {
1078                 curl_close($curl);
1079                 $this->xmlrpc_curl_handle = null;
1080             }
1081         }
1082
1083         return $resp;
1084     }
1085
1086     /**
1087      * Send an array of requests and return an array of responses.
1088      *
1089      * Unless $this->no_multicall has been set to true, it will try first to use one single xmlrpc call to server method
1090      * system.multicall, and revert to sending many successive calls in case of failure.
1091      * This failure is also stored in $this->no_multicall for subsequent calls.
1092      * Unfortunately, there is no server error code universally used to denote the fact that multicall is unsupported,
1093      * so there is no way to reliably distinguish between that and a temporary failure.
1094      * If you are sure that server supports multicall and do not want to fallback to using many single calls, set the
1095      * fourth parameter to FALSE.
1096      *
1097      * NB: trying to shoehorn extra functionality into existing syntax has resulted
1098      * in pretty much convoluted code...
1099      *
1100      * @param Request[] $reqs an array of Request objects
1101      * @param integer $timeout connection timeout (in seconds). See the details in the docs for the send() method
1102      * @param string $method the http protocol variant to be used. See the details in the docs for the send() method
1103      * @param boolean fallback When true, upon receiving an error during multicall, multiple single calls will be
1104      *                         attempted
1105      *
1106      * @return Response[]
1107      */
1108     public function multicall($reqs, $timeout = 0, $method = '', $fallback = true)
1109     {
1110         if ($method == '') {
1111             $method = $this->method;
1112         }
1113         if (!$this->no_multicall) {
1114             $results = $this->_try_multicall($reqs, $timeout, $method);
1115             if (is_array($results)) {
1116                 // System.multicall succeeded
1117                 return $results;
1118             } else {
1119                 // either system.multicall is unsupported by server,
1120                 // or call failed for some other reason.
1121                 if ($fallback) {
1122                     // Don't try it next time...
1123                     $this->no_multicall = true;
1124                 } else {
1125                     if (is_a($results, '\PhpXmlRpc\Response')) {
1126                         $result = $results;
1127                     } else {
1128                         $result = new Response(0, PhpXmlRpc::$xmlrpcerr['multicall_error'], PhpXmlRpc::$xmlrpcstr['multicall_error']);
1129                     }
1130                 }
1131             }
1132         } else {
1133             // override fallback, in case careless user tries to do two
1134             // opposite things at the same time
1135             $fallback = true;
1136         }
1137
1138         $results = array();
1139         if ($fallback) {
1140             // system.multicall is (probably) unsupported by server:
1141             // emulate multicall via multiple requests
1142             foreach ($reqs as $req) {
1143                 $results[] = $this->send($req, $timeout, $method);
1144             }
1145         } else {
1146             // user does NOT want to fallback on many single calls:
1147             // since we should always return an array of responses,
1148             // return an array with the same error repeated n times
1149             foreach ($reqs as $req) {
1150                 $results[] = $result;
1151             }
1152         }
1153
1154         return $results;
1155     }
1156
1157     /**
1158      * Attempt to boxcar $reqs via system.multicall.
1159      *
1160      * Returns either an array of Response, a single error Response or false (when received response does not respect
1161      * valid multicall syntax).
1162      *
1163      * @param Request[] $reqs
1164      * @param int $timeout
1165      * @param string $method
1166      * @return Response[]|bool|mixed|Response
1167      */
1168     private function _try_multicall($reqs, $timeout, $method)
1169     {
1170         // Construct multicall request
1171         $calls = array();
1172         foreach ($reqs as $req) {
1173             $call['methodName'] = new Value($req->method(), 'string');
1174             $numParams = $req->getNumParams();
1175             $params = array();
1176             for ($i = 0; $i < $numParams; $i++) {
1177                 $params[$i] = $req->getParam($i);
1178             }
1179             $call['params'] = new Value($params, 'array');
1180             $calls[] = new Value($call, 'struct');
1181         }
1182         $multiCall = new Request('system.multicall');
1183         $multiCall->addParam(new Value($calls, 'array'));
1184
1185         // Attempt RPC call
1186         $result = $this->send($multiCall, $timeout, $method);
1187
1188         if ($result->faultCode() != 0) {
1189             // call to system.multicall failed
1190             return $result;
1191         }
1192
1193         // Unpack responses.
1194         $rets = $result->value();
1195
1196         if ($this->return_type == 'xml') {
1197             return $rets;
1198         } elseif ($this->return_type == 'phpvals') {
1199             /// @todo test this code branch...
1200             $rets = $result->value();
1201             if (!is_array($rets)) {
1202                 return false;       // bad return type from system.multicall
1203             }
1204             $numRets = count($rets);
1205             if ($numRets != count($reqs)) {
1206                 return false;       // wrong number of return values.
1207             }
1208
1209             $response = array();
1210             for ($i = 0; $i < $numRets; $i++) {
1211                 $val = $rets[$i];
1212                 if (!is_array($val)) {
1213                     return false;
1214                 }
1215                 switch (count($val)) {
1216                     case 1:
1217                         if (!isset($val[0])) {
1218                             return false;       // Bad value
1219                         }
1220                         // Normal return value
1221                         $response[$i] = new Response($val[0], 0, '', 'phpvals');
1222                         break;
1223                     case 2:
1224                         /// @todo remove usage of @: it is apparently quite slow
1225                         $code = @$val['faultCode'];
1226                         if (!is_int($code)) {
1227                             return false;
1228                         }
1229                         $str = @$val['faultString'];
1230                         if (!is_string($str)) {
1231                             return false;
1232                         }
1233                         $response[$i] = new Response(0, $code, $str);
1234                         break;
1235                     default:
1236                         return false;
1237                 }
1238             }
1239
1240             return $response;
1241         } else {
1242             // return type == 'xmlrpcvals'
1243
1244             $rets = $result->value();
1245             if ($rets->kindOf() != 'array') {
1246                 return false;       // bad return type from system.multicall
1247             }
1248             $numRets = $rets->count();
1249             if ($numRets != count($reqs)) {
1250                 return false;       // wrong number of return values.
1251             }
1252
1253             $response = array();
1254             foreach($rets as $val) {
1255                 switch ($val->kindOf()) {
1256                     case 'array':
1257                         if ($val->count() != 1) {
1258                             return false;       // Bad value
1259                         }
1260                         // Normal return value
1261                         $response[] = new Response($val[0]);
1262                         break;
1263                     case 'struct':
1264                         $code = $val['faultCode'];
1265                         /** @var Value $code */
1266                         if ($code->kindOf() != 'scalar' || $code->scalartyp() != 'int') {
1267                             return false;
1268                         }
1269                         $str = $val['faultString'];
1270                         /** @var Value $str */
1271                         if ($str->kindOf() != 'scalar' || $str->scalartyp() != 'string') {
1272                             return false;
1273                         }
1274                         $response[] = new Response(0, $code->scalarval(), $str->scalarval());
1275                         break;
1276                     default:
1277                         return false;
1278                 }
1279             }
1280
1281             return $response;
1282         }
1283     }
1284 }