]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/class-http.php
WordPress 4.6.1
[autoinstalls/wordpress.git] / wp-includes / class-http.php
1 <?php
2 /**
3  * HTTP API: WP_Http class
4  *
5  * @package WordPress
6  * @subpackage HTTP
7  * @since 2.7.0
8  */
9
10 if ( ! class_exists( 'Requests' ) ) {
11         require( ABSPATH . WPINC . '/class-requests.php' );
12
13         Requests::register_autoloader();
14         Requests::set_certificate_path( ABSPATH . WPINC . '/certificates/ca-bundle.crt' );
15 }
16
17 /**
18  * Core class used for managing HTTP transports and making HTTP requests.
19  *
20  * This class is used to consistently make outgoing HTTP requests easy for developers
21  * while still being compatible with the many PHP configurations under which
22  * WordPress runs.
23  *
24  * Debugging includes several actions, which pass different variables for debugging the HTTP API.
25  *
26  * @since 2.7.0
27  */
28 class WP_Http {
29
30         // Aliases for HTTP response codes.
31         const HTTP_CONTINUE                   = 100;
32         const SWITCHING_PROTOCOLS             = 101;
33         const PROCESSING                      = 102;
34
35         const OK                              = 200;
36         const CREATED                         = 201;
37         const ACCEPTED                        = 202;
38         const NON_AUTHORITATIVE_INFORMATION   = 203;
39         const NO_CONTENT                      = 204;
40         const RESET_CONTENT                   = 205;
41         const PARTIAL_CONTENT                 = 206;
42         const MULTI_STATUS                    = 207;
43         const IM_USED                         = 226;
44
45         const MULTIPLE_CHOICES                = 300;
46         const MOVED_PERMANENTLY               = 301;
47         const FOUND                           = 302;
48         const SEE_OTHER                       = 303;
49         const NOT_MODIFIED                    = 304;
50         const USE_PROXY                       = 305;
51         const RESERVED                        = 306;
52         const TEMPORARY_REDIRECT              = 307;
53         const PERMANENT_REDIRECT              = 308;
54
55         const BAD_REQUEST                     = 400;
56         const UNAUTHORIZED                    = 401;
57         const PAYMENT_REQUIRED                = 402;
58         const FORBIDDEN                       = 403;
59         const NOT_FOUND                       = 404;
60         const METHOD_NOT_ALLOWED              = 405;
61         const NOT_ACCEPTABLE                  = 406;
62         const PROXY_AUTHENTICATION_REQUIRED   = 407;
63         const REQUEST_TIMEOUT                 = 408;
64         const CONFLICT                        = 409;
65         const GONE                            = 410;
66         const LENGTH_REQUIRED                 = 411;
67         const PRECONDITION_FAILED             = 412;
68         const REQUEST_ENTITY_TOO_LARGE        = 413;
69         const REQUEST_URI_TOO_LONG            = 414;
70         const UNSUPPORTED_MEDIA_TYPE          = 415;
71         const REQUESTED_RANGE_NOT_SATISFIABLE = 416;
72         const EXPECTATION_FAILED              = 417;
73         const IM_A_TEAPOT                     = 418;
74         const MISDIRECTED_REQUEST             = 421;
75         const UNPROCESSABLE_ENTITY            = 422;
76         const LOCKED                          = 423;
77         const FAILED_DEPENDENCY               = 424;
78         const UPGRADE_REQUIRED                = 426;
79         const PRECONDITION_REQUIRED           = 428;
80         const TOO_MANY_REQUESTS               = 429;
81         const REQUEST_HEADER_FIELDS_TOO_LARGE = 431;
82         const UNAVAILABLE_FOR_LEGAL_REASONS   = 451;
83
84         const INTERNAL_SERVER_ERROR           = 500;
85         const NOT_IMPLEMENTED                 = 501;
86         const BAD_GATEWAY                     = 502;
87         const SERVICE_UNAVAILABLE             = 503;
88         const GATEWAY_TIMEOUT                 = 504;
89         const HTTP_VERSION_NOT_SUPPORTED      = 505;
90         const VARIANT_ALSO_NEGOTIATES         = 506;
91         const INSUFFICIENT_STORAGE            = 507;
92         const NOT_EXTENDED                    = 510;
93         const NETWORK_AUTHENTICATION_REQUIRED = 511;
94
95         /**
96          * Send an HTTP request to a URI.
97          *
98          * Please note: The only URI that are supported in the HTTP Transport implementation
99          * are the HTTP and HTTPS protocols.
100          *
101          * @access public
102          * @since 2.7.0
103          *
104          * @global string $wp_version
105          *
106          * @param string       $url  The request URL.
107          * @param string|array $args {
108          *     Optional. Array or string of HTTP request arguments.
109          *
110          *     @type string       $method              Request method. Accepts 'GET', 'POST', 'HEAD', or 'PUT'.
111          *                                             Some transports technically allow others, but should not be
112          *                                             assumed. Default 'GET'.
113          *     @type int          $timeout             How long the connection should stay open in seconds. Default 5.
114          *     @type int          $redirection         Number of allowed redirects. Not supported by all transports
115          *                                             Default 5.
116          *     @type string       $httpversion         Version of the HTTP protocol to use. Accepts '1.0' and '1.1'.
117          *                                             Default '1.0'.
118          *     @type string       $user-agent          User-agent value sent.
119          *                                             Default WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ).
120          *     @type bool         $reject_unsafe_urls  Whether to pass URLs through wp_http_validate_url().
121          *                                             Default false.
122          *     @type bool         $blocking            Whether the calling code requires the result of the request.
123          *                                             If set to false, the request will be sent to the remote server,
124          *                                             and processing returned to the calling code immediately, the caller
125          *                                             will know if the request succeeded or failed, but will not receive
126          *                                             any response from the remote server. Default true.
127          *     @type string|array $headers             Array or string of headers to send with the request.
128          *                                             Default empty array.
129          *     @type array        $cookies             List of cookies to send with the request. Default empty array.
130          *     @type string|array $body                Body to send with the request. Default null.
131          *     @type bool         $compress            Whether to compress the $body when sending the request.
132          *                                             Default false.
133          *     @type bool         $decompress          Whether to decompress a compressed response. If set to false and
134          *                                             compressed content is returned in the response anyway, it will
135          *                                             need to be separately decompressed. Default true.
136          *     @type bool         $sslverify           Whether to verify SSL for the request. Default true.
137          *     @type string       sslcertificates      Absolute path to an SSL certificate .crt file.
138          *                                             Default ABSPATH . WPINC . '/certificates/ca-bundle.crt'.
139          *     @type bool         $stream              Whether to stream to a file. If set to true and no filename was
140          *                                             given, it will be droped it in the WP temp dir and its name will
141          *                                             be set using the basename of the URL. Default false.
142          *     @type string       $filename            Filename of the file to write to when streaming. $stream must be
143          *                                             set to true. Default null.
144          *     @type int          $limit_response_size Size in bytes to limit the response to. Default null.
145          *
146          * }
147          * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'.
148          *                        A WP_Error instance upon error.
149          */
150         public function request( $url, $args = array() ) {
151                 global $wp_version;
152
153                 $defaults = array(
154                         'method' => 'GET',
155                         /**
156                          * Filters the timeout value for an HTTP request.
157                          *
158                          * @since 2.7.0
159                          *
160                          * @param int $timeout_value Time in seconds until a request times out.
161                          *                           Default 5.
162                          */
163                         'timeout' => apply_filters( 'http_request_timeout', 5 ),
164                         /**
165                          * Filters the number of redirects allowed during an HTTP request.
166                          *
167                          * @since 2.7.0
168                          *
169                          * @param int $redirect_count Number of redirects allowed. Default 5.
170                          */
171                         'redirection' => apply_filters( 'http_request_redirection_count', 5 ),
172                         /**
173                          * Filters the version of the HTTP protocol used in a request.
174                          *
175                          * @since 2.7.0
176                          *
177                          * @param string $version Version of HTTP used. Accepts '1.0' and '1.1'.
178                          *                        Default '1.0'.
179                          */
180                         'httpversion' => apply_filters( 'http_request_version', '1.0' ),
181                         /**
182                          * Filters the user agent value sent with an HTTP request.
183                          *
184                          * @since 2.7.0
185                          *
186                          * @param string $user_agent WordPress user agent string.
187                          */
188                         'user-agent' => apply_filters( 'http_headers_useragent', 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) ),
189                         /**
190                          * Filters whether to pass URLs through wp_http_validate_url() in an HTTP request.
191                          *
192                          * @since 3.6.0
193                          *
194                          * @param bool $pass_url Whether to pass URLs through wp_http_validate_url().
195                          *                       Default false.
196                          */
197                         'reject_unsafe_urls' => apply_filters( 'http_request_reject_unsafe_urls', false ),
198                         'blocking' => true,
199                         'headers' => array(),
200                         'cookies' => array(),
201                         'body' => null,
202                         'compress' => false,
203                         'decompress' => true,
204                         'sslverify' => true,
205                         'sslcertificates' => ABSPATH . WPINC . '/certificates/ca-bundle.crt',
206                         'stream' => false,
207                         'filename' => null,
208                         'limit_response_size' => null,
209                 );
210
211                 // Pre-parse for the HEAD checks.
212                 $args = wp_parse_args( $args );
213
214                 // By default, Head requests do not cause redirections.
215                 if ( isset($args['method']) && 'HEAD' == $args['method'] )
216                         $defaults['redirection'] = 0;
217
218                 $r = wp_parse_args( $args, $defaults );
219                 /**
220                  * Filters the arguments used in an HTTP request.
221                  *
222                  * @since 2.7.0
223                  *
224                  * @param array  $r   An array of HTTP request arguments.
225                  * @param string $url The request URL.
226                  */
227                 $r = apply_filters( 'http_request_args', $r, $url );
228
229                 // The transports decrement this, store a copy of the original value for loop purposes.
230                 if ( ! isset( $r['_redirection'] ) )
231                         $r['_redirection'] = $r['redirection'];
232
233                 /**
234                  * Filters whether to preempt an HTTP request's return value.
235                  *
236                  * Returning a non-false value from the filter will short-circuit the HTTP request and return
237                  * early with that value. A filter should return either:
238                  *
239                  *  - An array containing 'headers', 'body', 'response', 'cookies', and 'filename' elements
240                  *  - A WP_Error instance
241                  *  - boolean false (to avoid short-circuiting the response)
242                  *
243                  * Returning any other value may result in unexpected behaviour.
244                  *
245                  * @since 2.9.0
246                  *
247                  * @param false|array|WP_Error $preempt Whether to preempt an HTTP request's return value. Default false.
248                  * @param array               $r        HTTP request arguments.
249                  * @param string              $url      The request URL.
250                  */
251                 $pre = apply_filters( 'pre_http_request', false, $r, $url );
252
253                 if ( false !== $pre )
254                         return $pre;
255
256                 if ( function_exists( 'wp_kses_bad_protocol' ) ) {
257                         if ( $r['reject_unsafe_urls'] ) {
258                                 $url = wp_http_validate_url( $url );
259                         }
260                         if ( $url ) {
261                                 $url = wp_kses_bad_protocol( $url, array( 'http', 'https', 'ssl' ) );
262                         }
263                 }
264
265                 $arrURL = @parse_url( $url );
266
267                 if ( empty( $url ) || empty( $arrURL['scheme'] ) ) {
268                         return new WP_Error('http_request_failed', __('A valid URL was not provided.'));
269                 }
270
271                 if ( $this->block_request( $url ) ) {
272                         return new WP_Error( 'http_request_failed', __( 'User has blocked requests through HTTP.' ) );
273                 }
274
275                 // If we are streaming to a file but no filename was given drop it in the WP temp dir
276                 // and pick its name using the basename of the $url
277                 if ( $r['stream'] ) {
278                         if ( empty( $r['filename'] ) ) {
279                                 $r['filename'] = get_temp_dir() . basename( $url );
280                         }
281
282                         // Force some settings if we are streaming to a file and check for existence and perms of destination directory
283                         $r['blocking'] = true;
284                         if ( ! wp_is_writable( dirname( $r['filename'] ) ) ) {
285                                 return new WP_Error( 'http_request_failed', __( 'Destination directory for file streaming does not exist or is not writable.' ) );
286                         }
287                 }
288
289                 if ( is_null( $r['headers'] ) ) {
290                         $r['headers'] = array();
291                 }
292
293                 // WP allows passing in headers as a string, weirdly.
294                 if ( ! is_array( $r['headers'] ) ) {
295                         $processedHeaders = WP_Http::processHeaders( $r['headers'] );
296                         $r['headers'] = $processedHeaders['headers'];
297                 }
298
299                 // Setup arguments
300                 $headers = $r['headers'];
301                 $data = $r['body'];
302                 $type = $r['method'];
303                 $options = array(
304                         'timeout' => $r['timeout'],
305                         'useragent' => $r['user-agent'],
306                         'blocking' => $r['blocking'],
307                         'hooks' => new Requests_Hooks(),
308                 );
309
310                 // Ensure redirects follow browser behaviour.
311                 $options['hooks']->register( 'requests.before_redirect', array( get_class(), 'browser_redirect_compatibility' ) );
312
313                 if ( $r['stream'] ) {
314                         $options['filename'] = $r['filename'];
315                 }
316                 if ( empty( $r['redirection'] ) ) {
317                         $options['follow_redirects'] = false;
318                 } else {
319                         $options['redirects'] = $r['redirection'];
320                 }
321
322                 // Use byte limit, if we can
323                 if ( isset( $r['limit_response_size'] ) ) {
324                         $options['max_bytes'] = $r['limit_response_size'];
325                 }
326
327                 // If we've got cookies, use and convert them to Requests_Cookie.
328                 if ( ! empty( $r['cookies'] ) ) {
329                         $options['cookies'] = WP_Http::normalize_cookies( $r['cookies'] );
330                 }
331
332                 // SSL certificate handling
333                 if ( ! $r['sslverify'] ) {
334                         $options['verify'] = false;
335                 } else {
336                         $options['verify'] = $r['sslcertificates'];
337                 }
338
339                 // All non-GET/HEAD requests should put the arguments in the form body.
340                 if ( 'HEAD' !== $type && 'GET' !== $type ) {
341                         $options['data_format'] = 'body';
342                 }
343
344                 /**
345                  * Filters whether SSL should be verified for non-local requests.
346                  *
347                  * @since 2.8.0
348                  *
349                  * @param bool $ssl_verify Whether to verify the SSL connection. Default true.
350                  */
351                 $options['verify'] = apply_filters( 'https_ssl_verify', $options['verify'] );
352
353                 // Check for proxies.
354                 $proxy = new WP_HTTP_Proxy();
355                 if ( $proxy->is_enabled() && $proxy->send_through_proxy( $url ) ) {
356                         $options['proxy'] = new Requests_Proxy_HTTP( $proxy->host() . ':' . $proxy->port() );
357
358                         if ( $proxy->use_authentication() ) {
359                                 $options['proxy']->use_authentication = true;
360                                 $options['proxy']->user = $proxy->username();
361                                 $options['proxy']->pass = $proxy->password();
362                         }
363                 }
364
365                 // Work around a bug in Requests when the path starts with // See https://github.com/rmccue/Requests/issues/231
366                 $url = preg_replace( '!^(\w+://[^/]+)//(.*)$!i', '$1/$2', $url );
367
368                 try {
369                         $requests_response = Requests::request( $url, $headers, $data, $type, $options );
370
371                         // Convert the response into an array
372                         $http_response = new WP_HTTP_Requests_Response( $requests_response, $r['filename'] );
373                         $response = $http_response->to_array();
374
375                         // Add the original object to the array.
376                         $response['http_response'] = $http_response;
377                 }
378                 catch ( Requests_Exception $e ) {
379                         $response = new WP_Error( 'http_request_failed', $e->getMessage() );
380                 }
381
382                 /**
383                  * Fires after an HTTP API response is received and before the response is returned.
384                  *
385                  * @since 2.8.0
386                  *
387                  * @param array|WP_Error $response HTTP response or WP_Error object.
388                  * @param string         $context  Context under which the hook is fired.
389                  * @param string         $class    HTTP transport used.
390                  * @param array          $args     HTTP request arguments.
391                  * @param string         $url      The request URL.
392                  */
393                 do_action( 'http_api_debug', $response, 'response', 'Requests', $r, $url );
394                 if ( is_wp_error( $response ) ) {
395                         return $response;
396                 }
397
398                 if ( ! $r['blocking'] ) {
399                         return array(
400                                 'headers' => array(),
401                                 'body' => '',
402                                 'response' => array(
403                                         'code' => false,
404                                         'message' => false,
405                                 ),
406                                 'cookies' => array(),
407                                 'http_response' => null,
408                         );
409                 }
410
411                 /**
412                  * Filters the HTTP API response immediately before the response is returned.
413                  *
414                  * @since 2.9.0
415                  *
416                  * @param array  $response HTTP response.
417                  * @param array  $r        HTTP request arguments.
418                  * @param string $url      The request URL.
419                  */
420                 return apply_filters( 'http_response', $response, $r, $url );
421         }
422
423         /**
424          * Normalizes cookies for using in Requests.
425          *
426          * @since 4.6.0
427          * @access public
428          * @static
429          *
430          * @param array $cookies List of cookies to send with the request.
431          * @return Requests_Cookie_Jar Cookie holder object.
432          */
433         public static function normalize_cookies( $cookies ) {
434                 $cookie_jar = new Requests_Cookie_Jar();
435
436                 foreach ( $cookies as $name => $value ) {
437                         if ( $value instanceof WP_Http_Cookie ) {
438                                 $cookie_jar[ $value->name ] = new Requests_Cookie( $value->name, $value->value, $value->get_attributes() );
439                         } elseif ( is_scalar( $value ) ) {
440                                 $cookie_jar[ $name ] = new Requests_Cookie( $name, $value );
441                         }
442                 }
443
444                 return $cookie_jar;
445         }
446
447         /**
448          * Match redirect behaviour to browser handling.
449          *
450          * Changes 302 redirects from POST to GET to match browser handling. Per
451          * RFC 7231, user agents can deviate from the strict reading of the
452          * specification for compatibility purposes.
453          *
454          * @since 4.6.0
455          * @access public
456          * @static
457          *
458          * @param string            $location URL to redirect to.
459          * @param array             $headers  Headers for the redirect.
460          * @param array             $options  Redirect request options.
461          * @param Requests_Response $original Response object.
462          */
463         public static function browser_redirect_compatibility( $location, $headers, $data, &$options, $original ) {
464                 // Browser compat
465                 if ( $original->status_code === 302 ) {
466                         $options['type'] = Requests::GET;
467                 }
468         }
469
470         /**
471          * Tests which transports are capable of supporting the request.
472          *
473          * @since 3.2.0
474          * @access public
475          *
476          * @param array $args Request arguments
477          * @param string $url URL to Request
478          *
479          * @return string|false Class name for the first transport that claims to support the request. False if no transport claims to support the request.
480          */
481         public function _get_first_available_transport( $args, $url = null ) {
482                 $transports = array( 'curl', 'streams' );
483
484                 /**
485                  * Filters which HTTP transports are available and in what order.
486                  *
487                  * @since 3.7.0
488                  *
489                  * @param array  $transports Array of HTTP transports to check. Default array contains
490                  *                           'curl', and 'streams', in that order.
491                  * @param array  $args       HTTP request arguments.
492                  * @param string $url        The URL to request.
493                  */
494                 $request_order = apply_filters( 'http_api_transports', $transports, $args, $url );
495
496                 // Loop over each transport on each HTTP request looking for one which will serve this request's needs.
497                 foreach ( $request_order as $transport ) {
498                         if ( in_array( $transport, $transports ) ) {
499                                 $transport = ucfirst( $transport );
500                         }
501                         $class = 'WP_Http_' . $transport;
502
503                         // Check to see if this transport is a possibility, calls the transport statically.
504                         if ( !call_user_func( array( $class, 'test' ), $args, $url ) )
505                                 continue;
506
507                         return $class;
508                 }
509
510                 return false;
511         }
512
513         /**
514          * Dispatches a HTTP request to a supporting transport.
515          *
516          * Tests each transport in order to find a transport which matches the request arguments.
517          * Also caches the transport instance to be used later.
518          *
519          * The order for requests is cURL, and then PHP Streams.
520          *
521          * @since 3.2.0
522          *
523          * @static
524          * @access private
525          *
526          * @param string $url URL to Request
527          * @param array $args Request arguments
528          * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. A WP_Error instance upon error
529          */
530         private function _dispatch_request( $url, $args ) {
531                 static $transports = array();
532
533                 $class = $this->_get_first_available_transport( $args, $url );
534                 if ( !$class )
535                         return new WP_Error( 'http_failure', __( 'There are no HTTP transports available which can complete the requested request.' ) );
536
537                 // Transport claims to support request, instantiate it and give it a whirl.
538                 if ( empty( $transports[$class] ) )
539                         $transports[$class] = new $class;
540
541                 $response = $transports[$class]->request( $url, $args );
542
543                 /** This action is documented in wp-includes/class-http.php */
544                 do_action( 'http_api_debug', $response, 'response', $class, $args, $url );
545
546                 if ( is_wp_error( $response ) )
547                         return $response;
548
549                 /**
550                  * Filters the HTTP API response immediately before the response is returned.
551                  *
552                  * @since 2.9.0
553                  *
554                  * @param array  $response HTTP response.
555                  * @param array  $args     HTTP request arguments.
556                  * @param string $url      The request URL.
557                  */
558                 return apply_filters( 'http_response', $response, $args, $url );
559         }
560
561         /**
562          * Uses the POST HTTP method.
563          *
564          * Used for sending data that is expected to be in the body.
565          *
566          * @access public
567          * @since 2.7.0
568          *
569          * @param string       $url  The request URL.
570          * @param string|array $args Optional. Override the defaults.
571          * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. A WP_Error instance upon error
572          */
573         public function post($url, $args = array()) {
574                 $defaults = array('method' => 'POST');
575                 $r = wp_parse_args( $args, $defaults );
576                 return $this->request($url, $r);
577         }
578
579         /**
580          * Uses the GET HTTP method.
581          *
582          * Used for sending data that is expected to be in the body.
583          *
584          * @access public
585          * @since 2.7.0
586          *
587          * @param string $url The request URL.
588          * @param string|array $args Optional. Override the defaults.
589          * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. A WP_Error instance upon error
590          */
591         public function get($url, $args = array()) {
592                 $defaults = array('method' => 'GET');
593                 $r = wp_parse_args( $args, $defaults );
594                 return $this->request($url, $r);
595         }
596
597         /**
598          * Uses the HEAD HTTP method.
599          *
600          * Used for sending data that is expected to be in the body.
601          *
602          * @access public
603          * @since 2.7.0
604          *
605          * @param string $url The request URL.
606          * @param string|array $args Optional. Override the defaults.
607          * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. A WP_Error instance upon error
608          */
609         public function head($url, $args = array()) {
610                 $defaults = array('method' => 'HEAD');
611                 $r = wp_parse_args( $args, $defaults );
612                 return $this->request($url, $r);
613         }
614
615         /**
616          * Parses the responses and splits the parts into headers and body.
617          *
618          * @access public
619          * @static
620          * @since 2.7.0
621          *
622          * @param string $strResponse The full response string
623          * @return array Array with 'headers' and 'body' keys.
624          */
625         public static function processResponse($strResponse) {
626                 $res = explode("\r\n\r\n", $strResponse, 2);
627
628                 return array('headers' => $res[0], 'body' => isset($res[1]) ? $res[1] : '');
629         }
630
631         /**
632          * Transform header string into an array.
633          *
634          * If an array is given then it is assumed to be raw header data with numeric keys with the
635          * headers as the values. No headers must be passed that were already processed.
636          *
637          * @access public
638          * @static
639          * @since 2.7.0
640          *
641          * @param string|array $headers
642          * @param string $url The URL that was requested
643          * @return array Processed string headers. If duplicate headers are encountered,
644          *                                      Then a numbered array is returned as the value of that header-key.
645          */
646         public static function processHeaders( $headers, $url = '' ) {
647                 // Split headers, one per array element.
648                 if ( is_string($headers) ) {
649                         // Tolerate line terminator: CRLF = LF (RFC 2616 19.3).
650                         $headers = str_replace("\r\n", "\n", $headers);
651                         /*
652                          * Unfold folded header fields. LWS = [CRLF] 1*( SP | HT ) <US-ASCII SP, space (32)>,
653                          * <US-ASCII HT, horizontal-tab (9)> (RFC 2616 2.2).
654                          */
655                         $headers = preg_replace('/\n[ \t]/', ' ', $headers);
656                         // Create the headers array.
657                         $headers = explode("\n", $headers);
658                 }
659
660                 $response = array('code' => 0, 'message' => '');
661
662                 /*
663                  * If a redirection has taken place, The headers for each page request may have been passed.
664                  * In this case, determine the final HTTP header and parse from there.
665                  */
666                 for ( $i = count($headers)-1; $i >= 0; $i-- ) {
667                         if ( !empty($headers[$i]) && false === strpos($headers[$i], ':') ) {
668                                 $headers = array_splice($headers, $i);
669                                 break;
670                         }
671                 }
672
673                 $cookies = array();
674                 $newheaders = array();
675                 foreach ( (array) $headers as $tempheader ) {
676                         if ( empty($tempheader) )
677                                 continue;
678
679                         if ( false === strpos($tempheader, ':') ) {
680                                 $stack = explode(' ', $tempheader, 3);
681                                 $stack[] = '';
682                                 list( , $response['code'], $response['message']) = $stack;
683                                 continue;
684                         }
685
686                         list($key, $value) = explode(':', $tempheader, 2);
687
688                         $key = strtolower( $key );
689                         $value = trim( $value );
690
691                         if ( isset( $newheaders[ $key ] ) ) {
692                                 if ( ! is_array( $newheaders[ $key ] ) )
693                                         $newheaders[$key] = array( $newheaders[ $key ] );
694                                 $newheaders[ $key ][] = $value;
695                         } else {
696                                 $newheaders[ $key ] = $value;
697                         }
698                         if ( 'set-cookie' == $key )
699                                 $cookies[] = new WP_Http_Cookie( $value, $url );
700                 }
701
702                 // Cast the Response Code to an int
703                 $response['code'] = intval( $response['code'] );
704
705                 return array('response' => $response, 'headers' => $newheaders, 'cookies' => $cookies);
706         }
707
708         /**
709          * Takes the arguments for a ::request() and checks for the cookie array.
710          *
711          * If it's found, then it upgrades any basic name => value pairs to WP_Http_Cookie instances,
712          * which are each parsed into strings and added to the Cookie: header (within the arguments array).
713          * Edits the array by reference.
714          *
715          * @access public
716          * @version 2.8.0
717          * @static
718          *
719          * @param array $r Full array of args passed into ::request()
720          */
721         public static function buildCookieHeader( &$r ) {
722                 if ( ! empty($r['cookies']) ) {
723                         // Upgrade any name => value cookie pairs to WP_HTTP_Cookie instances.
724                         foreach ( $r['cookies'] as $name => $value ) {
725                                 if ( ! is_object( $value ) )
726                                         $r['cookies'][ $name ] = new WP_Http_Cookie( array( 'name' => $name, 'value' => $value ) );
727                         }
728
729                         $cookies_header = '';
730                         foreach ( (array) $r['cookies'] as $cookie ) {
731                                 $cookies_header .= $cookie->getHeaderValue() . '; ';
732                         }
733
734                         $cookies_header = substr( $cookies_header, 0, -2 );
735                         $r['headers']['cookie'] = $cookies_header;
736                 }
737         }
738
739         /**
740          * Decodes chunk transfer-encoding, based off the HTTP 1.1 specification.
741          *
742          * Based off the HTTP http_encoding_dechunk function.
743          *
744          * @link https://tools.ietf.org/html/rfc2616#section-19.4.6 Process for chunked decoding.
745          *
746          * @access public
747          * @since 2.7.0
748          * @static
749          *
750          * @param string $body Body content
751          * @return string Chunked decoded body on success or raw body on failure.
752          */
753         public static function chunkTransferDecode( $body ) {
754                 // The body is not chunked encoded or is malformed.
755                 if ( ! preg_match( '/^([0-9a-f]+)[^\r\n]*\r\n/i', trim( $body ) ) )
756                         return $body;
757
758                 $parsed_body = '';
759
760                 // We'll be altering $body, so need a backup in case of error.
761                 $body_original = $body;
762
763                 while ( true ) {
764                         $has_chunk = (bool) preg_match( '/^([0-9a-f]+)[^\r\n]*\r\n/i', $body, $match );
765                         if ( ! $has_chunk || empty( $match[1] ) )
766                                 return $body_original;
767
768                         $length = hexdec( $match[1] );
769                         $chunk_length = strlen( $match[0] );
770
771                         // Parse out the chunk of data.
772                         $parsed_body .= substr( $body, $chunk_length, $length );
773
774                         // Remove the chunk from the raw data.
775                         $body = substr( $body, $length + $chunk_length );
776
777                         // End of the document.
778                         if ( '0' === trim( $body ) )
779                                 return $parsed_body;
780                 }
781         }
782
783         /**
784          * Block requests through the proxy.
785          *
786          * Those who are behind a proxy and want to prevent access to certain hosts may do so. This will
787          * prevent plugins from working and core functionality, if you don't include api.wordpress.org.
788          *
789          * You block external URL requests by defining WP_HTTP_BLOCK_EXTERNAL as true in your wp-config.php
790          * file and this will only allow localhost and your site to make requests. The constant
791          * WP_ACCESSIBLE_HOSTS will allow additional hosts to go through for requests. The format of the
792          * WP_ACCESSIBLE_HOSTS constant is a comma separated list of hostnames to allow, wildcard domains
793          * are supported, eg *.wordpress.org will allow for all subdomains of wordpress.org to be contacted.
794          *
795          * @since 2.8.0
796          * @link https://core.trac.wordpress.org/ticket/8927 Allow preventing external requests.
797          * @link https://core.trac.wordpress.org/ticket/14636 Allow wildcard domains in WP_ACCESSIBLE_HOSTS
798          *
799          * @staticvar array|null $accessible_hosts
800          * @staticvar array      $wildcard_regex
801          *
802          * @param string $uri URI of url.
803          * @return bool True to block, false to allow.
804          */
805         public function block_request($uri) {
806                 // We don't need to block requests, because nothing is blocked.
807                 if ( ! defined( 'WP_HTTP_BLOCK_EXTERNAL' ) || ! WP_HTTP_BLOCK_EXTERNAL )
808                         return false;
809
810                 $check = parse_url($uri);
811                 if ( ! $check )
812                         return true;
813
814                 $home = parse_url( get_option('siteurl') );
815
816                 // Don't block requests back to ourselves by default.
817                 if ( 'localhost' == $check['host'] || ( isset( $home['host'] ) && $home['host'] == $check['host'] ) ) {
818                         /**
819                          * Filters whether to block local requests through the proxy.
820                          *
821                          * @since 2.8.0
822                          *
823                          * @param bool $block Whether to block local requests through proxy.
824                          *                    Default false.
825                          */
826                         return apply_filters( 'block_local_requests', false );
827                 }
828
829                 if ( !defined('WP_ACCESSIBLE_HOSTS') )
830                         return true;
831
832                 static $accessible_hosts = null;
833                 static $wildcard_regex = array();
834                 if ( null === $accessible_hosts ) {
835                         $accessible_hosts = preg_split('|,\s*|', WP_ACCESSIBLE_HOSTS);
836
837                         if ( false !== strpos(WP_ACCESSIBLE_HOSTS, '*') ) {
838                                 $wildcard_regex = array();
839                                 foreach ( $accessible_hosts as $host )
840                                         $wildcard_regex[] = str_replace( '\*', '.+', preg_quote( $host, '/' ) );
841                                 $wildcard_regex = '/^(' . implode('|', $wildcard_regex) . ')$/i';
842                         }
843                 }
844
845                 if ( !empty($wildcard_regex) )
846                         return !preg_match($wildcard_regex, $check['host']);
847                 else
848                         return !in_array( $check['host'], $accessible_hosts ); //Inverse logic, If it's in the array, then we can't access it.
849
850         }
851
852         /**
853          * Used as a wrapper for PHP's parse_url() function that handles edgecases in < PHP 5.4.7.
854          *
855          * @access protected
856          * @deprecated 4.4.0 Use wp_parse_url()
857          * @see wp_parse_url()
858          *
859          * @param string $url The URL to parse.
860          * @return bool|array False on failure; Array of URL components on success;
861          *                    See parse_url()'s return values.
862          */
863         protected static function parse_url( $url ) {
864                 _deprecated_function( __METHOD__, '4.4.0', 'wp_parse_url()' );
865                 return wp_parse_url( $url );
866         }
867
868         /**
869          * Converts a relative URL to an absolute URL relative to a given URL.
870          *
871          * If an Absolute URL is provided, no processing of that URL is done.
872          *
873          * @since 3.4.0
874          *
875          * @static
876          * @access public
877          *
878          * @param string $maybe_relative_path The URL which might be relative
879          * @param string $url                 The URL which $maybe_relative_path is relative to
880          * @return string An Absolute URL, in a failure condition where the URL cannot be parsed, the relative URL will be returned.
881          */
882         public static function make_absolute_url( $maybe_relative_path, $url ) {
883                 if ( empty( $url ) )
884                         return $maybe_relative_path;
885
886                 if ( ! $url_parts = wp_parse_url( $url ) ) {
887                         return $maybe_relative_path;
888                 }
889
890                 if ( ! $relative_url_parts = wp_parse_url( $maybe_relative_path ) ) {
891                         return $maybe_relative_path;
892                 }
893
894                 // Check for a scheme on the 'relative' url
895                 if ( ! empty( $relative_url_parts['scheme'] ) ) {
896                         return $maybe_relative_path;
897                 }
898
899                 $absolute_path = $url_parts['scheme'] . '://';
900
901                 // Schemeless URL's will make it this far, so we check for a host in the relative url and convert it to a protocol-url
902                 if ( isset( $relative_url_parts['host'] ) ) {
903                         $absolute_path .= $relative_url_parts['host'];
904                         if ( isset( $relative_url_parts['port'] ) )
905                                 $absolute_path .= ':' . $relative_url_parts['port'];
906                 } else {
907                         $absolute_path .= $url_parts['host'];
908                         if ( isset( $url_parts['port'] ) )
909                                 $absolute_path .= ':' . $url_parts['port'];
910                 }
911
912                 // Start off with the Absolute URL path.
913                 $path = ! empty( $url_parts['path'] ) ? $url_parts['path'] : '/';
914
915                 // If it's a root-relative path, then great.
916                 if ( ! empty( $relative_url_parts['path'] ) && '/' == $relative_url_parts['path'][0] ) {
917                         $path = $relative_url_parts['path'];
918
919                 // Else it's a relative path.
920                 } elseif ( ! empty( $relative_url_parts['path'] ) ) {
921                         // Strip off any file components from the absolute path.
922                         $path = substr( $path, 0, strrpos( $path, '/' ) + 1 );
923
924                         // Build the new path.
925                         $path .= $relative_url_parts['path'];
926
927                         // Strip all /path/../ out of the path.
928                         while ( strpos( $path, '../' ) > 1 ) {
929                                 $path = preg_replace( '![^/]+/\.\./!', '', $path );
930                         }
931
932                         // Strip any final leading ../ from the path.
933                         $path = preg_replace( '!^/(\.\./)+!', '', $path );
934                 }
935
936                 // Add the Query string.
937                 if ( ! empty( $relative_url_parts['query'] ) )
938                         $path .= '?' . $relative_url_parts['query'];
939
940                 return $absolute_path . '/' . ltrim( $path, '/' );
941         }
942
943         /**
944          * Handles HTTP Redirects and follows them if appropriate.
945          *
946          * @since 3.7.0
947          *
948          * @static
949          *
950          * @param string $url The URL which was requested.
951          * @param array $args The Arguments which were used to make the request.
952          * @param array $response The Response of the HTTP request.
953          * @return false|object False if no redirect is present, a WP_HTTP or WP_Error result otherwise.
954          */
955         public static function handle_redirects( $url, $args, $response ) {
956                 // If no redirects are present, or, redirects were not requested, perform no action.
957                 if ( ! isset( $response['headers']['location'] ) || 0 === $args['_redirection'] )
958                         return false;
959
960                 // Only perform redirections on redirection http codes.
961                 if ( $response['response']['code'] > 399 || $response['response']['code'] < 300 )
962                         return false;
963
964                 // Don't redirect if we've run out of redirects.
965                 if ( $args['redirection']-- <= 0 )
966                         return new WP_Error( 'http_request_failed', __('Too many redirects.') );
967
968                 $redirect_location = $response['headers']['location'];
969
970                 // If there were multiple Location headers, use the last header specified.
971                 if ( is_array( $redirect_location ) )
972                         $redirect_location = array_pop( $redirect_location );
973
974                 $redirect_location = WP_Http::make_absolute_url( $redirect_location, $url );
975
976                 // POST requests should not POST to a redirected location.
977                 if ( 'POST' == $args['method'] ) {
978                         if ( in_array( $response['response']['code'], array( 302, 303 ) ) )
979                                 $args['method'] = 'GET';
980                 }
981
982                 // Include valid cookies in the redirect process.
983                 if ( ! empty( $response['cookies'] ) ) {
984                         foreach ( $response['cookies'] as $cookie ) {
985                                 if ( $cookie->test( $redirect_location ) )
986                                         $args['cookies'][] = $cookie;
987                         }
988                 }
989
990                 return wp_remote_request( $redirect_location, $args );
991         }
992
993         /**
994          * Determines if a specified string represents an IP address or not.
995          *
996          * This function also detects the type of the IP address, returning either
997          * '4' or '6' to represent a IPv4 and IPv6 address respectively.
998          * This does not verify if the IP is a valid IP, only that it appears to be
999          * an IP address.
1000          *
1001          * @link http://home.deds.nl/~aeron/regex/ for IPv6 regex
1002          *
1003          * @since 3.7.0
1004          * @static
1005          *
1006          * @param string $maybe_ip A suspected IP address
1007          * @return integer|bool Upon success, '4' or '6' to represent a IPv4 or IPv6 address, false upon failure
1008          */
1009         public static function is_ip_address( $maybe_ip ) {
1010                 if ( preg_match( '/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/', $maybe_ip ) )
1011                         return 4;
1012
1013                 if ( false !== strpos( $maybe_ip, ':' ) && preg_match( '/^(((?=.*(::))(?!.*\3.+\3))\3?|([\dA-F]{1,4}(\3|:\b|$)|\2))(?4){5}((?4){2}|(((2[0-4]|1\d|[1-9])?\d|25[0-5])\.?\b){4})$/i', trim( $maybe_ip, ' []' ) ) )
1014                         return 6;
1015
1016                 return false;
1017         }
1018
1019 }