summaryrefslogtreecommitdiffstats
path: root/vendor/fguillot/picofeed/lib/PicoFeed/Client
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/fguillot/picofeed/lib/PicoFeed/Client')
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Client/Client.php110
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Client/Curl.php138
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Client/HttpHeaders.php3
-rw-r--r--vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php68
4 files changed, 224 insertions, 95 deletions
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Client.php b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Client.php
index 55d2c562f..84a5cf296 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Client.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Client.php
@@ -158,46 +158,21 @@ abstract class Client
protected $status_code = 0;
/**
- * HTTP response body
+ * Enables direct passthrough to requesting client
*
* @access protected
- * @var string
- */
- protected $body = '';
-
- /**
- * Body size
- *
- * @access protected
- * @var integer
- */
- protected $body_length = 0;
-
- /**
- * HTTP response headers
- *
- * @access protected
- * @var array
- */
- protected $headers = array();
-
- /**
- * Counter on the number of header received
- *
- * @access protected
- * @var integer
+ * @var bool
*/
- protected $headers_counter = 0;
+ protected $passthrough = false;
/**
* Do the HTTP request
*
* @abstract
* @access public
- * @param bool $follow_location Flag used when there is an open_basedir restriction
* @return array
*/
- abstract public function doRequest($follow_location = true);
+ abstract public function doRequest();
/**
* Get client instance: curl or stream driver
@@ -295,48 +270,6 @@ abstract class Client
}
}
- /**
- * Handle manually redirections when there is an open base dir restriction
- *
- * @access private
- * @param string $location Redirected URL
- * @return array
- */
- public function handleRedirection($location)
- {
- $nb_redirects = 0;
- $result = array();
- $this->url = Url::resolve($location, $this->url);
- $this->body = '';
- $this->body_length = 0;
- $this->headers = array();
- $this->headers_counter = 0;
-
- while (true) {
-
- $nb_redirects++;
-
- if ($nb_redirects >= $this->max_redirects) {
- throw new MaxRedirectException('Maximum number of redirections reached');
- }
-
- $result = $this->doRequest(false);
-
- if ($result['status'] == 301 || $result['status'] == 302) {
- $this->url = $result['headers']['Location'];
- $this->body = '';
- $this->body_length = 0;
- $this->headers = array();
- $this->headers_counter = 0;
- }
- else {
- break;
- }
- }
-
- return $result;
- }
-
/**
* Check if a request has been modified according to the parameters
*
@@ -538,6 +471,17 @@ abstract class Client
}
/**
+ * return true if passthrough mode is enabled
+ *
+ * @access public
+ * @return bool
+ */
+ public function isPassthroughEnabled()
+ {
+ return $this->passthrough;
+ }
+
+ /**
* Set connection timeout
*
* @access public
@@ -668,6 +612,30 @@ abstract class Client
}
/**
+ * Enable the passthrough mode
+ *
+ * @access public
+ * @return \PicoFeed\Client\Client
+ */
+ public function enablePassthroughMode()
+ {
+ $this->passthrough = true;
+ return $this;
+ }
+
+ /**
+ * Disable the passthrough mode
+ *
+ * @access public
+ * @return \PicoFeed\Client\Client
+ */
+ public function disablePassthroughMode()
+ {
+ $this->passthrough = false;
+ return $this;
+ }
+
+ /**
* Set config object
*
* @access public
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Curl.php b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Curl.php
index d45773d2d..5e5514f52 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Curl.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Curl.php
@@ -13,6 +13,38 @@ use PicoFeed\Logging\Logger;
class Curl extends Client
{
/**
+ * HTTP response body
+ *
+ * @access private
+ * @var string
+ */
+ private $body = '';
+
+ /**
+ * Body size
+ *
+ * @access private
+ * @var integer
+ */
+ private $body_length = 0;
+
+ /**
+ * HTTP response headers
+ *
+ * @access private
+ * @var array
+ */
+ private $headers = array();
+
+ /**
+ * Counter on the number of header received
+ *
+ * @access private
+ * @var integer
+ */
+ private $headers_counter = 0;
+
+ /**
* cURL callback to read the HTTP body
*
* If the function return -1, curl stop to read the HTTP response
@@ -64,6 +96,44 @@ class Curl extends Client
}
/**
+ * cURL callback to passthrough the HTTP status header to the client
+ *
+ * @access public
+ * @param resource $ch cURL handler
+ * @param string $buffer Header line
+ * @return integer Length of the buffer
+ */
+ public function passthroughHeaders($ch, $buffer)
+ {
+ list($status, $headers) = HttpHeaders::parse(array($buffer));
+
+ if ($status !== 0) {
+ header(':', true, $status);
+ }
+ elseif (isset($headers['Content-Type'])) {
+ header($buffer);
+ }
+
+ return $this->readHeaders($ch, $buffer);
+ }
+
+ /**
+ * cURL callback to passthrough the HTTP body to the client
+ *
+ * If the function return -1, curl stop to read the HTTP response
+ *
+ * @access public
+ * @param resource $ch cURL handler
+ * @param string $buffer Chunk of data
+ * @return integer Length of the buffer
+ */
+ public function passthroughBody($ch, $buffer)
+ {
+ echo $buffer;
+ return strlen($buffer);
+ }
+
+ /**
* Prepare HTTP headers
*
* @access private
@@ -131,6 +201,29 @@ class Curl extends Client
}
/**
+ * Set write/header functions
+ *
+ * @access private
+ * @return resource $ch
+ */
+ private function prepareDownloadMode($ch)
+ {
+ $write_function = 'readBody';
+ $header_function = 'readHeaders';
+
+ if ($this->isPassthroughEnabled()) {
+ $write_function = 'passthroughBody';
+ $header_function = 'passthroughHeaders';
+
+ }
+
+ curl_setopt($ch, CURLOPT_WRITEFUNCTION, array($this, $write_function));
+ curl_setopt($ch, CURLOPT_HEADERFUNCTION, array($this, $header_function));
+
+ return $ch;
+ }
+
+ /**
* Prepare curl context
*
* @access private
@@ -147,12 +240,11 @@ class Curl extends Client
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, ini_get('open_basedir') === '');
curl_setopt($ch, CURLOPT_MAXREDIRS, $this->max_redirects);
curl_setopt($ch, CURLOPT_ENCODING, '');
- curl_setopt($ch, CURLOPT_WRITEFUNCTION, array($this, 'readBody'));
- curl_setopt($ch, CURLOPT_HEADERFUNCTION, array($this, 'readHeaders'));
curl_setopt($ch, CURLOPT_COOKIEJAR, 'php://memory');
curl_setopt($ch, CURLOPT_COOKIEFILE, 'php://memory');
curl_setopt($ch, CURLOPT_SSLVERSION, 1); // Enforce TLS v1
+ $ch = $this->prepareDownloadMode($ch);
$ch = $this->prepareProxyContext($ch);
$ch = $this->prepareAuthContext($ch);
@@ -229,6 +321,48 @@ class Curl extends Client
}
/**
+ * Handle manually redirections when there is an open base dir restriction
+ *
+ * @access private
+ * @param string $location Redirected URL
+ * @return array
+ */
+ private function handleRedirection($location)
+ {
+ $nb_redirects = 0;
+ $result = array();
+ $this->url = Url::resolve($location, $this->url);
+ $this->body = '';
+ $this->body_length = 0;
+ $this->headers = array();
+ $this->headers_counter = 0;
+
+ while (true) {
+
+ $nb_redirects++;
+
+ if ($nb_redirects >= $this->max_redirects) {
+ throw new MaxRedirectException('Maximum number of redirections reached');
+ }
+
+ $result = $this->doRequest(false);
+
+ if ($result['status'] == 301 || $result['status'] == 302) {
+ $this->url = Url::resolve($result['headers']['Location'], $this->url);
+ $this->body = '';
+ $this->body_length = 0;
+ $this->headers = array();
+ $this->headers_counter = 0;
+ }
+ else {
+ break;
+ }
+ }
+
+ return $result;
+ }
+
+ /**
* Handle cURL errors (throw individual exceptions)
*
* We don't use constants because they are not necessary always available
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Client/HttpHeaders.php b/vendor/fguillot/picofeed/lib/PicoFeed/Client/HttpHeaders.php
index cde8f757c..ccced5f8e 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Client/HttpHeaders.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Client/HttpHeaders.php
@@ -53,12 +53,13 @@ class HttpHeaders implements ArrayAccess
*/
public static function parse(array $lines)
{
- $status = 200;
+ $status = 0;
$headers = array();
foreach ($lines as $line) {
if (strpos($line, 'HTTP') === 0) {
+ $headers = array();
$status = (int) substr($line, 9, 3);
}
else if (strpos($line, ':') !== false) {
diff --git a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
index b80e731d6..1e539b106 100644
--- a/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
+++ b/vendor/fguillot/picofeed/lib/PicoFeed/Client/Stream.php
@@ -25,7 +25,9 @@ class Stream extends Client
'User-Agent: '.$this->user_agent,
);
- if (function_exists('gzdecode')) {
+ // disable compression in passthrough mode. It could result in double
+ // compressed content which isn't decodeable by browsers
+ if (function_exists('gzdecode') && ! $this->isPassthroughEnabled()) {
$headers[] = 'Accept-Encoding: gzip';
}
@@ -49,6 +51,23 @@ class Stream extends Client
}
/**
+ * Construct the final URL from location headers
+ *
+ * @access private
+ * @param array $headers List of HTTP response header
+ */
+ private function setEffectiveUrl($headers)
+ {
+ foreach($headers as $header) {
+ if (stripos($header, 'Location') === 0) {
+ list($name, $value) = explode(': ', $header);
+
+ $this->url = Url::resolve($value, $this->url);
+ }
+ }
+ }
+
+ /**
* Prepare stream context
*
* @access private
@@ -61,7 +80,7 @@ class Stream extends Client
'method' => 'GET',
'protocol_version' => 1.1,
'timeout' => $this->timeout,
- 'follow_location' => 0,
+ 'max_redirects' => $this->max_redirects,
)
);
@@ -89,11 +108,12 @@ class Stream extends Client
* Do the HTTP request
*
* @access public
- * @param bool $follow_location Flag used when there is an open_basedir restriction
- * @return array HTTP response ['body' => ..., 'status' => ..., 'headers' => ...]
+ * @return array HTTP response ['body' => ..., 'status' => ..., 'headers' => ...]
*/
- public function doRequest($follow_location = false)
+ public function doRequest()
{
+ $body = '';
+
// Create context
$context = stream_context_create($this->prepareContext());
@@ -103,30 +123,36 @@ class Stream extends Client
throw new InvalidUrlException('Unable to establish a connection');
}
- // Get the entire body until the max size
- $body = stream_get_contents($stream, $this->max_body_size + 1);
-
- // If the body size is too large abort everything
- if (strlen($body) > $this->max_body_size) {
- throw new MaxSizeException('Content size too large');
- }
-
// Get HTTP headers response
$metadata = stream_get_meta_data($stream);
+ list($status, $headers) = HttpHeaders::parse($metadata['wrapper_data']);
+
+ if ($this->isPassthroughEnabled()) {
+ header(':', true, $status);
+
+ if (isset($headers['Content-Type'])) {
+ header('Content-Type: '.$headers['Content-Type']);
+ }
- if ($metadata['timed_out']) {
- throw new TimeoutException('Operation timeout');
+ fpassthru($stream);
}
+ else {
+ // Get the entire body until the max size
+ $body = stream_get_contents($stream, $this->max_body_size + 1);
- list($status, $headers) = HttpHeaders::parse($metadata['wrapper_data']);
+ // If the body size is too large abort everything
+ if (strlen($body) > $this->max_body_size) {
+ throw new MaxSizeException('Content size too large');
+ }
+
+ if ($metadata['timed_out']) {
+ throw new TimeoutException('Operation timeout');
+ }
+ }
fclose($stream);
- // Do redirect manual to get only the headers of the last request and
- // the final url
- if ($status == 301 || $status == 302) {
- return $this->handleRedirection($headers['Location']);
- }
+ $this->setEffectiveUrl($metadata['wrapper_data']);
return array(
'status' => $status,