截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Requests.php 30KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001
  1. <?php
  2. /**
  3. * Requests for PHP
  4. *
  5. * Inspired by Requests for Python.
  6. *
  7. * Based on concepts from SimplePie_File, RequestCore and WP_Http.
  8. *
  9. * @package Requests
  10. */
  11. /**
  12. * Requests for PHP
  13. *
  14. * Inspired by Requests for Python.
  15. *
  16. * Based on concepts from SimplePie_File, RequestCore and WP_Http.
  17. *
  18. * @package Requests
  19. */
  20. class Requests {
  21. /**
  22. * POST method
  23. *
  24. * @var string
  25. */
  26. const POST = 'POST';
  27. /**
  28. * PUT method
  29. *
  30. * @var string
  31. */
  32. const PUT = 'PUT';
  33. /**
  34. * GET method
  35. *
  36. * @var string
  37. */
  38. const GET = 'GET';
  39. /**
  40. * HEAD method
  41. *
  42. * @var string
  43. */
  44. const HEAD = 'HEAD';
  45. /**
  46. * DELETE method
  47. *
  48. * @var string
  49. */
  50. const DELETE = 'DELETE';
  51. /**
  52. * OPTIONS method
  53. *
  54. * @var string
  55. */
  56. const OPTIONS = 'OPTIONS';
  57. /**
  58. * TRACE method
  59. *
  60. * @var string
  61. */
  62. const TRACE = 'TRACE';
  63. /**
  64. * PATCH method
  65. *
  66. * @link https://tools.ietf.org/html/rfc5789
  67. * @var string
  68. */
  69. const PATCH = 'PATCH';
  70. /**
  71. * Default size of buffer size to read streams
  72. *
  73. * @var integer
  74. */
  75. const BUFFER_SIZE = 1160;
  76. /**
  77. * Current version of Requests
  78. *
  79. * @var string
  80. */
  81. const VERSION = '1.8.1';
  82. /**
  83. * Registered transport classes
  84. *
  85. * @var array
  86. */
  87. protected static $transports = array();
  88. /**
  89. * Selected transport name
  90. *
  91. * Use {@see get_transport()} instead
  92. *
  93. * @var array
  94. */
  95. public static $transport = array();
  96. /**
  97. * Default certificate path.
  98. *
  99. * @see Requests::get_certificate_path()
  100. * @see Requests::set_certificate_path()
  101. *
  102. * @var string
  103. */
  104. protected static $certificate_path;
  105. /**
  106. * This is a static class, do not instantiate it
  107. *
  108. * @codeCoverageIgnore
  109. */
  110. private function __construct() {}
  111. /**
  112. * Autoloader for Requests
  113. *
  114. * Register this with {@see register_autoloader()} if you'd like to avoid
  115. * having to create your own.
  116. *
  117. * (You can also use `spl_autoload_register` directly if you'd prefer.)
  118. *
  119. * @codeCoverageIgnore
  120. *
  121. * @param string $class Class name to load
  122. */
  123. public static function autoloader($class) {
  124. // Check that the class starts with "Requests"
  125. if (strpos($class, 'Requests') !== 0) {
  126. return;
  127. }
  128. $file = str_replace('_', '/', $class);
  129. if (file_exists(dirname(__FILE__) . '/' . $file . '.php')) {
  130. require_once dirname(__FILE__) . '/' . $file . '.php';
  131. }
  132. }
  133. /**
  134. * Register the built-in autoloader
  135. *
  136. * @codeCoverageIgnore
  137. */
  138. public static function register_autoloader() {
  139. spl_autoload_register(array('Requests', 'autoloader'));
  140. }
  141. /**
  142. * Register a transport
  143. *
  144. * @param string $transport Transport class to add, must support the Requests_Transport interface
  145. */
  146. public static function add_transport($transport) {
  147. if (empty(self::$transports)) {
  148. self::$transports = array(
  149. 'Requests_Transport_cURL',
  150. 'Requests_Transport_fsockopen',
  151. );
  152. }
  153. self::$transports = array_merge(self::$transports, array($transport));
  154. }
  155. /**
  156. * Get a working transport
  157. *
  158. * @throws Requests_Exception If no valid transport is found (`notransport`)
  159. * @return Requests_Transport
  160. */
  161. protected static function get_transport($capabilities = array()) {
  162. // Caching code, don't bother testing coverage
  163. // @codeCoverageIgnoreStart
  164. // array of capabilities as a string to be used as an array key
  165. ksort($capabilities);
  166. $cap_string = serialize($capabilities);
  167. // Don't search for a transport if it's already been done for these $capabilities
  168. if (isset(self::$transport[$cap_string]) && self::$transport[$cap_string] !== null) {
  169. $class = self::$transport[$cap_string];
  170. return new $class();
  171. }
  172. // @codeCoverageIgnoreEnd
  173. if (empty(self::$transports)) {
  174. self::$transports = array(
  175. 'Requests_Transport_cURL',
  176. 'Requests_Transport_fsockopen',
  177. );
  178. }
  179. // Find us a working transport
  180. foreach (self::$transports as $class) {
  181. if (!class_exists($class)) {
  182. continue;
  183. }
  184. $result = call_user_func(array($class, 'test'), $capabilities);
  185. if ($result) {
  186. self::$transport[$cap_string] = $class;
  187. break;
  188. }
  189. }
  190. if (self::$transport[$cap_string] === null) {
  191. throw new Requests_Exception('No working transports found', 'notransport', self::$transports);
  192. }
  193. $class = self::$transport[$cap_string];
  194. return new $class();
  195. }
  196. /**#@+
  197. * @see request()
  198. * @param string $url
  199. * @param array $headers
  200. * @param array $options
  201. * @return Requests_Response
  202. */
  203. /**
  204. * Send a GET request
  205. */
  206. public static function get($url, $headers = array(), $options = array()) {
  207. return self::request($url, $headers, null, self::GET, $options);
  208. }
  209. /**
  210. * Send a HEAD request
  211. */
  212. public static function head($url, $headers = array(), $options = array()) {
  213. return self::request($url, $headers, null, self::HEAD, $options);
  214. }
  215. /**
  216. * Send a DELETE request
  217. */
  218. public static function delete($url, $headers = array(), $options = array()) {
  219. return self::request($url, $headers, null, self::DELETE, $options);
  220. }
  221. /**
  222. * Send a TRACE request
  223. */
  224. public static function trace($url, $headers = array(), $options = array()) {
  225. return self::request($url, $headers, null, self::TRACE, $options);
  226. }
  227. /**#@-*/
  228. /**#@+
  229. * @see request()
  230. * @param string $url
  231. * @param array $headers
  232. * @param array $data
  233. * @param array $options
  234. * @return Requests_Response
  235. */
  236. /**
  237. * Send a POST request
  238. */
  239. public static function post($url, $headers = array(), $data = array(), $options = array()) {
  240. return self::request($url, $headers, $data, self::POST, $options);
  241. }
  242. /**
  243. * Send a PUT request
  244. */
  245. public static function put($url, $headers = array(), $data = array(), $options = array()) {
  246. return self::request($url, $headers, $data, self::PUT, $options);
  247. }
  248. /**
  249. * Send an OPTIONS request
  250. */
  251. public static function options($url, $headers = array(), $data = array(), $options = array()) {
  252. return self::request($url, $headers, $data, self::OPTIONS, $options);
  253. }
  254. /**
  255. * Send a PATCH request
  256. *
  257. * Note: Unlike {@see post} and {@see put}, `$headers` is required, as the
  258. * specification recommends that should send an ETag
  259. *
  260. * @link https://tools.ietf.org/html/rfc5789
  261. */
  262. public static function patch($url, $headers, $data = array(), $options = array()) {
  263. return self::request($url, $headers, $data, self::PATCH, $options);
  264. }
  265. /**#@-*/
  266. /**
  267. * Main interface for HTTP requests
  268. *
  269. * This method initiates a request and sends it via a transport before
  270. * parsing.
  271. *
  272. * The `$options` parameter takes an associative array with the following
  273. * options:
  274. *
  275. * - `timeout`: How long should we wait for a response?
  276. * Note: for cURL, a minimum of 1 second applies, as DNS resolution
  277. * operates at second-resolution only.
  278. * (float, seconds with a millisecond precision, default: 10, example: 0.01)
  279. * - `connect_timeout`: How long should we wait while trying to connect?
  280. * (float, seconds with a millisecond precision, default: 10, example: 0.01)
  281. * - `useragent`: Useragent to send to the server
  282. * (string, default: php-requests/$version)
  283. * - `follow_redirects`: Should we follow 3xx redirects?
  284. * (boolean, default: true)
  285. * - `redirects`: How many times should we redirect before erroring?
  286. * (integer, default: 10)
  287. * - `blocking`: Should we block processing on this request?
  288. * (boolean, default: true)
  289. * - `filename`: File to stream the body to instead.
  290. * (string|boolean, default: false)
  291. * - `auth`: Authentication handler or array of user/password details to use
  292. * for Basic authentication
  293. * (Requests_Auth|array|boolean, default: false)
  294. * - `proxy`: Proxy details to use for proxy by-passing and authentication
  295. * (Requests_Proxy|array|string|boolean, default: false)
  296. * - `max_bytes`: Limit for the response body size.
  297. * (integer|boolean, default: false)
  298. * - `idn`: Enable IDN parsing
  299. * (boolean, default: true)
  300. * - `transport`: Custom transport. Either a class name, or a
  301. * transport object. Defaults to the first working transport from
  302. * {@see getTransport()}
  303. * (string|Requests_Transport, default: {@see getTransport()})
  304. * - `hooks`: Hooks handler.
  305. * (Requests_Hooker, default: new Requests_Hooks())
  306. * - `verify`: Should we verify SSL certificates? Allows passing in a custom
  307. * certificate file as a string. (Using true uses the system-wide root
  308. * certificate store instead, but this may have different behaviour
  309. * across transports.)
  310. * (string|boolean, default: library/Requests/Transport/cacert.pem)
  311. * - `verifyname`: Should we verify the common name in the SSL certificate?
  312. * (boolean, default: true)
  313. * - `data_format`: How should we send the `$data` parameter?
  314. * (string, one of 'query' or 'body', default: 'query' for
  315. * HEAD/GET/DELETE, 'body' for POST/PUT/OPTIONS/PATCH)
  316. *
  317. * @throws Requests_Exception On invalid URLs (`nonhttp`)
  318. *
  319. * @param string $url URL to request
  320. * @param array $headers Extra headers to send with the request
  321. * @param array|null $data Data to send either as a query string for GET/HEAD requests, or in the body for POST requests
  322. * @param string $type HTTP request type (use Requests constants)
  323. * @param array $options Options for the request (see description for more information)
  324. * @return Requests_Response
  325. */
  326. public static function request($url, $headers = array(), $data = array(), $type = self::GET, $options = array()) {
  327. if (empty($options['type'])) {
  328. $options['type'] = $type;
  329. }
  330. $options = array_merge(self::get_default_options(), $options);
  331. self::set_defaults($url, $headers, $data, $type, $options);
  332. $options['hooks']->dispatch('requests.before_request', array(&$url, &$headers, &$data, &$type, &$options));
  333. if (!empty($options['transport'])) {
  334. $transport = $options['transport'];
  335. if (is_string($options['transport'])) {
  336. $transport = new $transport();
  337. }
  338. }
  339. else {
  340. $need_ssl = (stripos($url, 'https://') === 0);
  341. $capabilities = array('ssl' => $need_ssl);
  342. $transport = self::get_transport($capabilities);
  343. }
  344. $response = $transport->request($url, $headers, $data, $options);
  345. $options['hooks']->dispatch('requests.before_parse', array(&$response, $url, $headers, $data, $type, $options));
  346. return self::parse_response($response, $url, $headers, $data, $options);
  347. }
  348. /**
  349. * Send multiple HTTP requests simultaneously
  350. *
  351. * The `$requests` parameter takes an associative or indexed array of
  352. * request fields. The key of each request can be used to match up the
  353. * request with the returned data, or with the request passed into your
  354. * `multiple.request.complete` callback.
  355. *
  356. * The request fields value is an associative array with the following keys:
  357. *
  358. * - `url`: Request URL Same as the `$url` parameter to
  359. * {@see Requests::request}
  360. * (string, required)
  361. * - `headers`: Associative array of header fields. Same as the `$headers`
  362. * parameter to {@see Requests::request}
  363. * (array, default: `array()`)
  364. * - `data`: Associative array of data fields or a string. Same as the
  365. * `$data` parameter to {@see Requests::request}
  366. * (array|string, default: `array()`)
  367. * - `type`: HTTP request type (use Requests constants). Same as the `$type`
  368. * parameter to {@see Requests::request}
  369. * (string, default: `Requests::GET`)
  370. * - `cookies`: Associative array of cookie name to value, or cookie jar.
  371. * (array|Requests_Cookie_Jar)
  372. *
  373. * If the `$options` parameter is specified, individual requests will
  374. * inherit options from it. This can be used to use a single hooking system,
  375. * or set all the types to `Requests::POST`, for example.
  376. *
  377. * In addition, the `$options` parameter takes the following global options:
  378. *
  379. * - `complete`: A callback for when a request is complete. Takes two
  380. * parameters, a Requests_Response/Requests_Exception reference, and the
  381. * ID from the request array (Note: this can also be overridden on a
  382. * per-request basis, although that's a little silly)
  383. * (callback)
  384. *
  385. * @param array $requests Requests data (see description for more information)
  386. * @param array $options Global and default options (see {@see Requests::request})
  387. * @return array Responses (either Requests_Response or a Requests_Exception object)
  388. */
  389. public static function request_multiple($requests, $options = array()) {
  390. $options = array_merge(self::get_default_options(true), $options);
  391. if (!empty($options['hooks'])) {
  392. $options['hooks']->register('transport.internal.parse_response', array('Requests', 'parse_multiple'));
  393. if (!empty($options['complete'])) {
  394. $options['hooks']->register('multiple.request.complete', $options['complete']);
  395. }
  396. }
  397. foreach ($requests as $id => &$request) {
  398. if (!isset($request['headers'])) {
  399. $request['headers'] = array();
  400. }
  401. if (!isset($request['data'])) {
  402. $request['data'] = array();
  403. }
  404. if (!isset($request['type'])) {
  405. $request['type'] = self::GET;
  406. }
  407. if (!isset($request['options'])) {
  408. $request['options'] = $options;
  409. $request['options']['type'] = $request['type'];
  410. }
  411. else {
  412. if (empty($request['options']['type'])) {
  413. $request['options']['type'] = $request['type'];
  414. }
  415. $request['options'] = array_merge($options, $request['options']);
  416. }
  417. self::set_defaults($request['url'], $request['headers'], $request['data'], $request['type'], $request['options']);
  418. // Ensure we only hook in once
  419. if ($request['options']['hooks'] !== $options['hooks']) {
  420. $request['options']['hooks']->register('transport.internal.parse_response', array('Requests', 'parse_multiple'));
  421. if (!empty($request['options']['complete'])) {
  422. $request['options']['hooks']->register('multiple.request.complete', $request['options']['complete']);
  423. }
  424. }
  425. }
  426. unset($request);
  427. if (!empty($options['transport'])) {
  428. $transport = $options['transport'];
  429. if (is_string($options['transport'])) {
  430. $transport = new $transport();
  431. }
  432. }
  433. else {
  434. $transport = self::get_transport();
  435. }
  436. $responses = $transport->request_multiple($requests, $options);
  437. foreach ($responses as $id => &$response) {
  438. // If our hook got messed with somehow, ensure we end up with the
  439. // correct response
  440. if (is_string($response)) {
  441. $request = $requests[$id];
  442. self::parse_multiple($response, $request);
  443. $request['options']['hooks']->dispatch('multiple.request.complete', array(&$response, $id));
  444. }
  445. }
  446. return $responses;
  447. }
  448. /**
  449. * Get the default options
  450. *
  451. * @see Requests::request() for values returned by this method
  452. * @param boolean $multirequest Is this a multirequest?
  453. * @return array Default option values
  454. */
  455. protected static function get_default_options($multirequest = false) {
  456. $defaults = array(
  457. 'timeout' => 10,
  458. 'connect_timeout' => 10,
  459. 'useragent' => 'php-requests/' . self::VERSION,
  460. 'protocol_version' => 1.1,
  461. 'redirected' => 0,
  462. 'redirects' => 10,
  463. 'follow_redirects' => true,
  464. 'blocking' => true,
  465. 'type' => self::GET,
  466. 'filename' => false,
  467. 'auth' => false,
  468. 'proxy' => false,
  469. 'cookies' => false,
  470. 'max_bytes' => false,
  471. 'idn' => true,
  472. 'hooks' => null,
  473. 'transport' => null,
  474. 'verify' => self::get_certificate_path(),
  475. 'verifyname' => true,
  476. );
  477. if ($multirequest !== false) {
  478. $defaults['complete'] = null;
  479. }
  480. return $defaults;
  481. }
  482. /**
  483. * Get default certificate path.
  484. *
  485. * @return string Default certificate path.
  486. */
  487. public static function get_certificate_path() {
  488. if (!empty(self::$certificate_path)) {
  489. return self::$certificate_path;
  490. }
  491. return dirname(__FILE__) . '/Requests/Transport/cacert.pem';
  492. }
  493. /**
  494. * Set default certificate path.
  495. *
  496. * @param string $path Certificate path, pointing to a PEM file.
  497. */
  498. public static function set_certificate_path($path) {
  499. self::$certificate_path = $path;
  500. }
  501. /**
  502. * Set the default values
  503. *
  504. * @param string $url URL to request
  505. * @param array $headers Extra headers to send with the request
  506. * @param array|null $data Data to send either as a query string for GET/HEAD requests, or in the body for POST requests
  507. * @param string $type HTTP request type
  508. * @param array $options Options for the request
  509. * @return array $options
  510. */
  511. protected static function set_defaults(&$url, &$headers, &$data, &$type, &$options) {
  512. if (!preg_match('/^http(s)?:\/\//i', $url, $matches)) {
  513. throw new Requests_Exception('Only HTTP(S) requests are handled.', 'nonhttp', $url);
  514. }
  515. if (empty($options['hooks'])) {
  516. $options['hooks'] = new Requests_Hooks();
  517. }
  518. if (is_array($options['auth'])) {
  519. $options['auth'] = new Requests_Auth_Basic($options['auth']);
  520. }
  521. if ($options['auth'] !== false) {
  522. $options['auth']->register($options['hooks']);
  523. }
  524. if (is_string($options['proxy']) || is_array($options['proxy'])) {
  525. $options['proxy'] = new Requests_Proxy_HTTP($options['proxy']);
  526. }
  527. if ($options['proxy'] !== false) {
  528. $options['proxy']->register($options['hooks']);
  529. }
  530. if (is_array($options['cookies'])) {
  531. $options['cookies'] = new Requests_Cookie_Jar($options['cookies']);
  532. }
  533. elseif (empty($options['cookies'])) {
  534. $options['cookies'] = new Requests_Cookie_Jar();
  535. }
  536. if ($options['cookies'] !== false) {
  537. $options['cookies']->register($options['hooks']);
  538. }
  539. if ($options['idn'] !== false) {
  540. $iri = new Requests_IRI($url);
  541. $iri->host = Requests_IDNAEncoder::encode($iri->ihost);
  542. $url = $iri->uri;
  543. }
  544. // Massage the type to ensure we support it.
  545. $type = strtoupper($type);
  546. if (!isset($options['data_format'])) {
  547. if (in_array($type, array(self::HEAD, self::GET, self::DELETE), true)) {
  548. $options['data_format'] = 'query';
  549. }
  550. else {
  551. $options['data_format'] = 'body';
  552. }
  553. }
  554. }
  555. /**
  556. * HTTP response parser
  557. *
  558. * @throws Requests_Exception On missing head/body separator (`requests.no_crlf_separator`)
  559. * @throws Requests_Exception On missing head/body separator (`noversion`)
  560. * @throws Requests_Exception On missing head/body separator (`toomanyredirects`)
  561. *
  562. * @param string $headers Full response text including headers and body
  563. * @param string $url Original request URL
  564. * @param array $req_headers Original $headers array passed to {@link request()}, in case we need to follow redirects
  565. * @param array $req_data Original $data array passed to {@link request()}, in case we need to follow redirects
  566. * @param array $options Original $options array passed to {@link request()}, in case we need to follow redirects
  567. * @return Requests_Response
  568. */
  569. protected static function parse_response($headers, $url, $req_headers, $req_data, $options) {
  570. $return = new Requests_Response();
  571. if (!$options['blocking']) {
  572. return $return;
  573. }
  574. $return->raw = $headers;
  575. $return->url = (string) $url;
  576. $return->body = '';
  577. if (!$options['filename']) {
  578. $pos = strpos($headers, "\r\n\r\n");
  579. if ($pos === false) {
  580. // Crap!
  581. throw new Requests_Exception('Missing header/body separator', 'requests.no_crlf_separator');
  582. }
  583. $headers = substr($return->raw, 0, $pos);
  584. // Headers will always be separated from the body by two new lines - `\n\r\n\r`.
  585. $body = substr($return->raw, $pos + 4);
  586. if (!empty($body)) {
  587. $return->body = $body;
  588. }
  589. }
  590. // Pretend CRLF = LF for compatibility (RFC 2616, section 19.3)
  591. $headers = str_replace("\r\n", "\n", $headers);
  592. // Unfold headers (replace [CRLF] 1*( SP | HT ) with SP) as per RFC 2616 (section 2.2)
  593. $headers = preg_replace('/\n[ \t]/', ' ', $headers);
  594. $headers = explode("\n", $headers);
  595. preg_match('#^HTTP/(1\.\d)[ \t]+(\d+)#i', array_shift($headers), $matches);
  596. if (empty($matches)) {
  597. throw new Requests_Exception('Response could not be parsed', 'noversion', $headers);
  598. }
  599. $return->protocol_version = (float) $matches[1];
  600. $return->status_code = (int) $matches[2];
  601. if ($return->status_code >= 200 && $return->status_code < 300) {
  602. $return->success = true;
  603. }
  604. foreach ($headers as $header) {
  605. list($key, $value) = explode(':', $header, 2);
  606. $value = trim($value);
  607. preg_replace('#(\s+)#i', ' ', $value);
  608. $return->headers[$key] = $value;
  609. }
  610. if (isset($return->headers['transfer-encoding'])) {
  611. $return->body = self::decode_chunked($return->body);
  612. unset($return->headers['transfer-encoding']);
  613. }
  614. if (isset($return->headers['content-encoding'])) {
  615. $return->body = self::decompress($return->body);
  616. }
  617. //fsockopen and cURL compatibility
  618. if (isset($return->headers['connection'])) {
  619. unset($return->headers['connection']);
  620. }
  621. $options['hooks']->dispatch('requests.before_redirect_check', array(&$return, $req_headers, $req_data, $options));
  622. if ($return->is_redirect() && $options['follow_redirects'] === true) {
  623. if (isset($return->headers['location']) && $options['redirected'] < $options['redirects']) {
  624. if ($return->status_code === 303) {
  625. $options['type'] = self::GET;
  626. }
  627. $options['redirected']++;
  628. $location = $return->headers['location'];
  629. if (strpos($location, 'http://') !== 0 && strpos($location, 'https://') !== 0) {
  630. // relative redirect, for compatibility make it absolute
  631. $location = Requests_IRI::absolutize($url, $location);
  632. $location = $location->uri;
  633. }
  634. $hook_args = array(
  635. &$location,
  636. &$req_headers,
  637. &$req_data,
  638. &$options,
  639. $return,
  640. );
  641. $options['hooks']->dispatch('requests.before_redirect', $hook_args);
  642. $redirected = self::request($location, $req_headers, $req_data, $options['type'], $options);
  643. $redirected->history[] = $return;
  644. return $redirected;
  645. }
  646. elseif ($options['redirected'] >= $options['redirects']) {
  647. throw new Requests_Exception('Too many redirects', 'toomanyredirects', $return);
  648. }
  649. }
  650. $return->redirects = $options['redirected'];
  651. $options['hooks']->dispatch('requests.after_request', array(&$return, $req_headers, $req_data, $options));
  652. return $return;
  653. }
  654. /**
  655. * Callback for `transport.internal.parse_response`
  656. *
  657. * Internal use only. Converts a raw HTTP response to a Requests_Response
  658. * while still executing a multiple request.
  659. *
  660. * @param string $response Full response text including headers and body (will be overwritten with Response instance)
  661. * @param array $request Request data as passed into {@see Requests::request_multiple()}
  662. * @return null `$response` is either set to a Requests_Response instance, or a Requests_Exception object
  663. */
  664. public static function parse_multiple(&$response, $request) {
  665. try {
  666. $url = $request['url'];
  667. $headers = $request['headers'];
  668. $data = $request['data'];
  669. $options = $request['options'];
  670. $response = self::parse_response($response, $url, $headers, $data, $options);
  671. }
  672. catch (Requests_Exception $e) {
  673. $response = $e;
  674. }
  675. }
  676. /**
  677. * Decoded a chunked body as per RFC 2616
  678. *
  679. * @see https://tools.ietf.org/html/rfc2616#section-3.6.1
  680. * @param string $data Chunked body
  681. * @return string Decoded body
  682. */
  683. protected static function decode_chunked($data) {
  684. if (!preg_match('/^([0-9a-f]+)(?:;(?:[\w-]*)(?:=(?:(?:[\w-]*)*|"(?:[^\r\n])*"))?)*\r\n/i', trim($data))) {
  685. return $data;
  686. }
  687. $decoded = '';
  688. $encoded = $data;
  689. while (true) {
  690. $is_chunked = (bool) preg_match('/^([0-9a-f]+)(?:;(?:[\w-]*)(?:=(?:(?:[\w-]*)*|"(?:[^\r\n])*"))?)*\r\n/i', $encoded, $matches);
  691. if (!$is_chunked) {
  692. // Looks like it's not chunked after all
  693. return $data;
  694. }
  695. $length = hexdec(trim($matches[1]));
  696. if ($length === 0) {
  697. // Ignore trailer headers
  698. return $decoded;
  699. }
  700. $chunk_length = strlen($matches[0]);
  701. $decoded .= substr($encoded, $chunk_length, $length);
  702. $encoded = substr($encoded, $chunk_length + $length + 2);
  703. if (trim($encoded) === '0' || empty($encoded)) {
  704. return $decoded;
  705. }
  706. }
  707. // We'll never actually get down here
  708. // @codeCoverageIgnoreStart
  709. }
  710. // @codeCoverageIgnoreEnd
  711. /**
  712. * Convert a key => value array to a 'key: value' array for headers
  713. *
  714. * @param array $array Dictionary of header values
  715. * @return array List of headers
  716. */
  717. public static function flatten($array) {
  718. $return = array();
  719. foreach ($array as $key => $value) {
  720. $return[] = sprintf('%s: %s', $key, $value);
  721. }
  722. return $return;
  723. }
  724. /**
  725. * Convert a key => value array to a 'key: value' array for headers
  726. *
  727. * @codeCoverageIgnore
  728. * @deprecated Misspelling of {@see Requests::flatten}
  729. * @param array $array Dictionary of header values
  730. * @return array List of headers
  731. */
  732. public static function flattern($array) {
  733. return self::flatten($array);
  734. }
  735. /**
  736. * Decompress an encoded body
  737. *
  738. * Implements gzip, compress and deflate. Guesses which it is by attempting
  739. * to decode.
  740. *
  741. * @param string $data Compressed data in one of the above formats
  742. * @return string Decompressed string
  743. */
  744. public static function decompress($data) {
  745. if (substr($data, 0, 2) !== "\x1f\x8b" && substr($data, 0, 2) !== "\x78\x9c") {
  746. // Not actually compressed. Probably cURL ruining this for us.
  747. return $data;
  748. }
  749. if (function_exists('gzdecode')) {
  750. // phpcs:ignore PHPCompatibility.FunctionUse.NewFunctions.gzdecodeFound -- Wrapped in function_exists() for PHP 5.2.
  751. $decoded = @gzdecode($data);
  752. if ($decoded !== false) {
  753. return $decoded;
  754. }
  755. }
  756. if (function_exists('gzinflate')) {
  757. $decoded = @gzinflate($data);
  758. if ($decoded !== false) {
  759. return $decoded;
  760. }
  761. }
  762. $decoded = self::compatible_gzinflate($data);
  763. if ($decoded !== false) {
  764. return $decoded;
  765. }
  766. if (function_exists('gzuncompress')) {
  767. $decoded = @gzuncompress($data);
  768. if ($decoded !== false) {
  769. return $decoded;
  770. }
  771. }
  772. return $data;
  773. }
  774. /**
  775. * Decompression of deflated string while staying compatible with the majority of servers.
  776. *
  777. * Certain Servers will return deflated data with headers which PHP's gzinflate()
  778. * function cannot handle out of the box. The following function has been created from
  779. * various snippets on the gzinflate() PHP documentation.
  780. *
  781. * Warning: Magic numbers within. Due to the potential different formats that the compressed
  782. * data may be returned in, some "magic offsets" are needed to ensure proper decompression
  783. * takes place. For a simple progmatic way to determine the magic offset in use, see:
  784. * https://core.trac.wordpress.org/ticket/18273
  785. *
  786. * @since 2.8.1
  787. * @link https://core.trac.wordpress.org/ticket/18273
  788. * @link https://secure.php.net/manual/en/function.gzinflate.php#70875
  789. * @link https://secure.php.net/manual/en/function.gzinflate.php#77336
  790. *
  791. * @param string $gz_data String to decompress.
  792. * @return string|bool False on failure.
  793. */
  794. public static function compatible_gzinflate($gz_data) {
  795. // Compressed data might contain a full zlib header, if so strip it for
  796. // gzinflate()
  797. if (substr($gz_data, 0, 3) === "\x1f\x8b\x08") {
  798. $i = 10;
  799. $flg = ord(substr($gz_data, 3, 1));
  800. if ($flg > 0) {
  801. if ($flg & 4) {
  802. list($xlen) = unpack('v', substr($gz_data, $i, 2));
  803. $i += 2 + $xlen;
  804. }
  805. if ($flg & 8) {
  806. $i = strpos($gz_data, "\0", $i) + 1;
  807. }
  808. if ($flg & 16) {
  809. $i = strpos($gz_data, "\0", $i) + 1;
  810. }
  811. if ($flg & 2) {
  812. $i += 2;
  813. }
  814. }
  815. $decompressed = self::compatible_gzinflate(substr($gz_data, $i));
  816. if ($decompressed !== false) {
  817. return $decompressed;
  818. }
  819. }
  820. // If the data is Huffman Encoded, we must first strip the leading 2
  821. // byte Huffman marker for gzinflate()
  822. // The response is Huffman coded by many compressors such as
  823. // java.util.zip.Deflater, Ruby’s Zlib::Deflate, and .NET's
  824. // System.IO.Compression.DeflateStream.
  825. //
  826. // See https://decompres.blogspot.com/ for a quick explanation of this
  827. // data type
  828. $huffman_encoded = false;
  829. // low nibble of first byte should be 0x08
  830. list(, $first_nibble) = unpack('h', $gz_data);
  831. // First 2 bytes should be divisible by 0x1F
  832. list(, $first_two_bytes) = unpack('n', $gz_data);
  833. if ($first_nibble === 0x08 && ($first_two_bytes % 0x1F) === 0) {
  834. $huffman_encoded = true;
  835. }
  836. if ($huffman_encoded) {
  837. $decompressed = @gzinflate(substr($gz_data, 2));
  838. if ($decompressed !== false) {
  839. return $decompressed;
  840. }
  841. }
  842. if (substr($gz_data, 0, 4) === "\x50\x4b\x03\x04") {
  843. // ZIP file format header
  844. // Offset 6: 2 bytes, General-purpose field
  845. // Offset 26: 2 bytes, filename length
  846. // Offset 28: 2 bytes, optional field length
  847. // Offset 30: Filename field, followed by optional field, followed
  848. // immediately by data
  849. list(, $general_purpose_flag) = unpack('v', substr($gz_data, 6, 2));
  850. // If the file has been compressed on the fly, 0x08 bit is set of
  851. // the general purpose field. We can use this to differentiate
  852. // between a compressed document, and a ZIP file
  853. $zip_compressed_on_the_fly = ((0x08 & $general_purpose_flag) === 0x08);
  854. if (!$zip_compressed_on_the_fly) {
  855. // Don't attempt to decode a compressed zip file
  856. return $gz_data;
  857. }
  858. // Determine the first byte of data, based on the above ZIP header
  859. // offsets:
  860. $first_file_start = array_sum(unpack('v2', substr($gz_data, 26, 4)));
  861. $decompressed = @gzinflate(substr($gz_data, 30 + $first_file_start));
  862. if ($decompressed !== false) {
  863. return $decompressed;
  864. }
  865. return false;
  866. }
  867. // Finally fall back to straight gzinflate
  868. $decompressed = @gzinflate($gz_data);
  869. if ($decompressed !== false) {
  870. return $decompressed;
  871. }
  872. // Fallback for all above failing, not expected, but included for
  873. // debugging and preventing regressions and to track stats
  874. $decompressed = @gzinflate(substr($gz_data, 2));
  875. if ($decompressed !== false) {
  876. return $decompressed;
  877. }
  878. return false;
  879. }
  880. public static function match_domain($host, $reference) {
  881. // Check for a direct match
  882. if ($host === $reference) {
  883. return true;
  884. }
  885. // Calculate the valid wildcard match if the host is not an IP address
  886. // Also validates that the host has 3 parts or more, as per Firefox's
  887. // ruleset.
  888. $parts = explode('.', $host);
  889. if (ip2long($host) === false && count($parts) >= 3) {
  890. $parts[0] = '*';
  891. $wildcard = implode('.', $parts);
  892. if ($wildcard === $reference) {
  893. return true;
  894. }
  895. }
  896. return false;
  897. }
  898. }