mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 13:39:22 +03:00
Update PHP Facebook SDK
This commit is contained in:
parent
77fb74bc4a
commit
075e184f7d
84 changed files with 9906 additions and 7761 deletions
|
|
@ -23,301 +23,188 @@
|
|||
*/
|
||||
namespace Facebook\HttpClients;
|
||||
|
||||
use Facebook\FacebookSDKException;
|
||||
use Facebook\Http\GraphRawResponse;
|
||||
use Facebook\Exceptions\FacebookSDKException;
|
||||
|
||||
/**
|
||||
* Class FacebookCurlHttpClient
|
||||
*
|
||||
* @package Facebook
|
||||
*/
|
||||
class FacebookCurlHttpClient implements FacebookHttpable
|
||||
class FacebookCurlHttpClient implements FacebookHttpClientInterface
|
||||
{
|
||||
/**
|
||||
* @var string The client error message
|
||||
*/
|
||||
protected $curlErrorMessage = '';
|
||||
|
||||
/**
|
||||
* @var array The headers to be sent with the request
|
||||
*/
|
||||
protected $requestHeaders = array();
|
||||
/**
|
||||
* @var int The curl client error code
|
||||
*/
|
||||
protected $curlErrorCode = 0;
|
||||
|
||||
/**
|
||||
* @var array The headers received from the response
|
||||
*/
|
||||
protected $responseHeaders = array();
|
||||
/**
|
||||
* @var string|boolean The raw response from the server
|
||||
*/
|
||||
protected $rawResponse;
|
||||
|
||||
/**
|
||||
* @var int The HTTP status code returned from the server
|
||||
*/
|
||||
protected $responseHttpStatusCode = 0;
|
||||
/**
|
||||
* @var FacebookCurl Procedural curl as object
|
||||
*/
|
||||
protected $facebookCurl;
|
||||
|
||||
/**
|
||||
* @var string The client error message
|
||||
*/
|
||||
protected $curlErrorMessage = '';
|
||||
/**
|
||||
* @const Curl Version which is unaffected by the proxy header length error.
|
||||
*/
|
||||
const CURL_PROXY_QUIRK_VER = 0x071E00;
|
||||
|
||||
/**
|
||||
* @var int The curl client error code
|
||||
*/
|
||||
protected $curlErrorCode = 0;
|
||||
/**
|
||||
* @const "Connection Established" header text
|
||||
*/
|
||||
const CONNECTION_ESTABLISHED = "HTTP/1.0 200 Connection established\r\n\r\n";
|
||||
|
||||
/**
|
||||
* @var string|boolean The raw response from the server
|
||||
*/
|
||||
protected $rawResponse;
|
||||
|
||||
/**
|
||||
* @var FacebookCurl Procedural curl as object
|
||||
*/
|
||||
protected static $facebookCurl;
|
||||
|
||||
/**
|
||||
* @const Curl Version which is unaffected by the proxy header length error.
|
||||
*/
|
||||
const CURL_PROXY_QUIRK_VER = 0x071E00;
|
||||
|
||||
/**
|
||||
* @const "Connection Established" header text
|
||||
*/
|
||||
const CONNECTION_ESTABLISHED = "HTTP/1.0 200 Connection established\r\n\r\n";
|
||||
|
||||
/**
|
||||
* @param FacebookCurl|null Procedural curl as object
|
||||
*/
|
||||
public function __construct(FacebookCurl $facebookCurl = null)
|
||||
{
|
||||
self::$facebookCurl = $facebookCurl ?: new FacebookCurl();
|
||||
}
|
||||
|
||||
/**
|
||||
* The headers we want to send with the request
|
||||
*
|
||||
* @param string $key
|
||||
* @param string $value
|
||||
*/
|
||||
public function addRequestHeader($key, $value)
|
||||
{
|
||||
$this->requestHeaders[$key] = $value;
|
||||
}
|
||||
|
||||
/**
|
||||
* The headers returned in the response
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getResponseHeaders()
|
||||
{
|
||||
return $this->responseHeaders;
|
||||
}
|
||||
|
||||
/**
|
||||
* The HTTP status response code
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getResponseHttpStatusCode()
|
||||
{
|
||||
return $this->responseHttpStatusCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sends a request to the server
|
||||
*
|
||||
* @param string $url The endpoint to send the request to
|
||||
* @param string $method The request method
|
||||
* @param array $parameters The key value pairs to be sent in the body
|
||||
*
|
||||
* @return string Raw response from the server
|
||||
*
|
||||
* @throws \Facebook\FacebookSDKException
|
||||
*/
|
||||
public function send($url, $method = 'GET', $parameters = array())
|
||||
{
|
||||
$this->openConnection($url, $method, $parameters);
|
||||
$this->tryToSendRequest();
|
||||
|
||||
// Need to verify the peer
|
||||
if ($this->curlErrorCode == 60 || $this->curlErrorCode == 77) {
|
||||
$this->addBundledCert();
|
||||
$this->tryToSendRequest();
|
||||
/**
|
||||
* @param FacebookCurl|null Procedural curl as object
|
||||
*/
|
||||
public function __construct(FacebookCurl $facebookCurl = null)
|
||||
{
|
||||
$this->facebookCurl = $facebookCurl ?: new FacebookCurl();
|
||||
}
|
||||
|
||||
if ($this->curlErrorCode) {
|
||||
throw new FacebookSDKException($this->curlErrorMessage, $this->curlErrorCode);
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function send($url, $method, $body, array $headers, $timeOut)
|
||||
{
|
||||
$this->openConnection($url, $method, $body, $headers, $timeOut);
|
||||
$this->sendRequest();
|
||||
|
||||
if ($curlErrorCode = $this->facebookCurl->errno()) {
|
||||
throw new FacebookSDKException($this->facebookCurl->error(), $curlErrorCode);
|
||||
}
|
||||
|
||||
// Separate the raw headers from the raw body
|
||||
list($rawHeaders, $rawBody) = $this->extractResponseHeadersAndBody();
|
||||
|
||||
$this->closeConnection();
|
||||
|
||||
return new GraphRawResponse($rawHeaders, $rawBody);
|
||||
}
|
||||
|
||||
// Separate the raw headers from the raw body
|
||||
list($rawHeaders, $rawBody) = $this->extractResponseHeadersAndBody();
|
||||
/**
|
||||
* Opens a new curl connection.
|
||||
*
|
||||
* @param string $url The endpoint to send the request to.
|
||||
* @param string $method The request method.
|
||||
* @param string $body The body of the request.
|
||||
* @param array $headers The request headers.
|
||||
* @param int $timeOut The timeout in seconds for the request.
|
||||
*/
|
||||
public function openConnection($url, $method, $body, array $headers, $timeOut)
|
||||
{
|
||||
$options = [
|
||||
CURLOPT_CUSTOMREQUEST => $method,
|
||||
CURLOPT_HTTPHEADER => $this->compileRequestHeaders($headers),
|
||||
CURLOPT_URL => $url,
|
||||
CURLOPT_CONNECTTIMEOUT => 10,
|
||||
CURLOPT_TIMEOUT => $timeOut,
|
||||
CURLOPT_RETURNTRANSFER => true, // Follow 301 redirects
|
||||
CURLOPT_HEADER => true, // Enable header processing
|
||||
CURLOPT_SSL_VERIFYHOST => 2,
|
||||
CURLOPT_SSL_VERIFYPEER => true,
|
||||
CURLOPT_CAINFO => __DIR__ . '/certs/DigiCertHighAssuranceEVRootCA.pem',
|
||||
];
|
||||
|
||||
$this->responseHeaders = self::headersToArray($rawHeaders);
|
||||
if ($method !== "GET") {
|
||||
$options[CURLOPT_POSTFIELDS] = $body;
|
||||
}
|
||||
|
||||
$this->closeConnection();
|
||||
|
||||
return $rawBody;
|
||||
}
|
||||
|
||||
/**
|
||||
* Opens a new curl connection
|
||||
*
|
||||
* @param string $url The endpoint to send the request to
|
||||
* @param string $method The request method
|
||||
* @param array $parameters The key value pairs to be sent in the body
|
||||
*/
|
||||
public function openConnection($url, $method = 'GET', $parameters = array())
|
||||
{
|
||||
$options = array(
|
||||
CURLOPT_URL => $url,
|
||||
CURLOPT_CONNECTTIMEOUT => 10,
|
||||
CURLOPT_TIMEOUT => 60,
|
||||
CURLOPT_RETURNTRANSFER => true, // Follow 301 redirects
|
||||
CURLOPT_HEADER => true, // Enable header processing
|
||||
);
|
||||
|
||||
if ($method !== "GET") {
|
||||
$options[CURLOPT_POSTFIELDS] = $parameters;
|
||||
}
|
||||
if ($method === 'DELETE' || $method === 'PUT') {
|
||||
$options[CURLOPT_CUSTOMREQUEST] = $method;
|
||||
$this->facebookCurl->init();
|
||||
$this->facebookCurl->setoptArray($options);
|
||||
}
|
||||
|
||||
if (!empty($this->requestHeaders)) {
|
||||
$options[CURLOPT_HTTPHEADER] = $this->compileRequestHeaders();
|
||||
/**
|
||||
* Closes an existing curl connection
|
||||
*/
|
||||
public function closeConnection()
|
||||
{
|
||||
$this->facebookCurl->close();
|
||||
}
|
||||
|
||||
self::$facebookCurl->init();
|
||||
self::$facebookCurl->setopt_array($options);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a bundled cert to the connection
|
||||
*/
|
||||
public function addBundledCert()
|
||||
{
|
||||
self::$facebookCurl->setopt(CURLOPT_CAINFO,
|
||||
dirname(__FILE__) . DIRECTORY_SEPARATOR . 'fb_ca_chain_bundle.crt');
|
||||
}
|
||||
|
||||
/**
|
||||
* Closes an existing curl connection
|
||||
*/
|
||||
public function closeConnection()
|
||||
{
|
||||
self::$facebookCurl->close();
|
||||
}
|
||||
|
||||
/**
|
||||
* Try to send the request
|
||||
*/
|
||||
public function tryToSendRequest()
|
||||
{
|
||||
$this->sendRequest();
|
||||
$this->curlErrorMessage = self::$facebookCurl->error();
|
||||
$this->curlErrorCode = self::$facebookCurl->errno();
|
||||
$this->responseHttpStatusCode = self::$facebookCurl->getinfo(CURLINFO_HTTP_CODE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Send the request and get the raw response from curl
|
||||
*/
|
||||
public function sendRequest()
|
||||
{
|
||||
$this->rawResponse = self::$facebookCurl->exec();
|
||||
}
|
||||
|
||||
/**
|
||||
* Compiles the request headers into a curl-friendly format
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function compileRequestHeaders()
|
||||
{
|
||||
$return = array();
|
||||
|
||||
foreach ($this->requestHeaders as $key => $value) {
|
||||
$return[] = $key . ': ' . $value;
|
||||
/**
|
||||
* Send the request and get the raw response from curl
|
||||
*/
|
||||
public function sendRequest()
|
||||
{
|
||||
$this->rawResponse = $this->facebookCurl->exec();
|
||||
}
|
||||
|
||||
return $return;
|
||||
}
|
||||
/**
|
||||
* Compiles the request headers into a curl-friendly format.
|
||||
*
|
||||
* @param array $headers The request headers.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function compileRequestHeaders(array $headers)
|
||||
{
|
||||
$return = [];
|
||||
|
||||
/**
|
||||
* Extracts the headers and the body into a two-part array
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function extractResponseHeadersAndBody()
|
||||
{
|
||||
$headerSize = self::getHeaderSize();
|
||||
foreach ($headers as $key => $value) {
|
||||
$return[] = $key . ': ' . $value;
|
||||
}
|
||||
|
||||
$rawHeaders = mb_substr($this->rawResponse, 0, $headerSize);
|
||||
$rawBody = mb_substr($this->rawResponse, $headerSize);
|
||||
|
||||
return array(trim($rawHeaders), trim($rawBody));
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts raw header responses into an array
|
||||
*
|
||||
* @param string $rawHeaders
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function headersToArray($rawHeaders)
|
||||
{
|
||||
$headers = array();
|
||||
|
||||
// Normalize line breaks
|
||||
$rawHeaders = str_replace("\r\n", "\n", $rawHeaders);
|
||||
|
||||
// There will be multiple headers if a 301 was followed
|
||||
// or a proxy was followed, etc
|
||||
$headerCollection = explode("\n\n", trim($rawHeaders));
|
||||
// We just want the last response (at the end)
|
||||
$rawHeader = array_pop($headerCollection);
|
||||
|
||||
$headerComponents = explode("\n", $rawHeader);
|
||||
foreach ($headerComponents as $line) {
|
||||
if (strpos($line, ': ') === false) {
|
||||
$headers['http_code'] = $line;
|
||||
} else {
|
||||
list ($key, $value) = explode(': ', $line);
|
||||
$headers[$key] = $value;
|
||||
}
|
||||
return $return;
|
||||
}
|
||||
|
||||
return $headers;
|
||||
}
|
||||
/**
|
||||
* Extracts the headers and the body into a two-part array
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function extractResponseHeadersAndBody()
|
||||
{
|
||||
$headerSize = $this->getHeaderSize();
|
||||
|
||||
/**
|
||||
* Return proper header size
|
||||
*
|
||||
* @return integer
|
||||
*/
|
||||
private function getHeaderSize()
|
||||
{
|
||||
$headerSize = self::$facebookCurl->getinfo(CURLINFO_HEADER_SIZE);
|
||||
// This corrects a Curl bug where header size does not account
|
||||
// for additional Proxy headers.
|
||||
if ( self::needsCurlProxyFix() ) {
|
||||
// Additional way to calculate the request body size.
|
||||
if (preg_match('/Content-Length: (\d+)/', $this->rawResponse, $m)) {
|
||||
$headerSize = mb_strlen($this->rawResponse) - $m[1];
|
||||
} elseif (stripos($this->rawResponse, self::CONNECTION_ESTABLISHED) !== false) {
|
||||
$headerSize += mb_strlen(self::CONNECTION_ESTABLISHED);
|
||||
}
|
||||
$rawHeaders = mb_substr($this->rawResponse, 0, $headerSize);
|
||||
$rawBody = mb_substr($this->rawResponse, $headerSize);
|
||||
|
||||
return [trim($rawHeaders), trim($rawBody)];
|
||||
}
|
||||
|
||||
return $headerSize;
|
||||
}
|
||||
/**
|
||||
* Return proper header size
|
||||
*
|
||||
* @return integer
|
||||
*/
|
||||
private function getHeaderSize()
|
||||
{
|
||||
$headerSize = $this->facebookCurl->getinfo(CURLINFO_HEADER_SIZE);
|
||||
// This corrects a Curl bug where header size does not account
|
||||
// for additional Proxy headers.
|
||||
if ($this->needsCurlProxyFix()) {
|
||||
// Additional way to calculate the request body size.
|
||||
if (preg_match('/Content-Length: (\d+)/', $this->rawResponse, $m)) {
|
||||
$headerSize = mb_strlen($this->rawResponse) - $m[1];
|
||||
} elseif (stripos($this->rawResponse, self::CONNECTION_ESTABLISHED) !== false) {
|
||||
$headerSize += mb_strlen(self::CONNECTION_ESTABLISHED);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Detect versions of Curl which report incorrect header lengths when
|
||||
* using Proxies.
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
private static function needsCurlProxyFix()
|
||||
{
|
||||
$ver = self::$facebookCurl->version();
|
||||
$version = $ver['version_number'];
|
||||
return $headerSize;
|
||||
}
|
||||
|
||||
return $version < self::CURL_PROXY_QUIRK_VER;
|
||||
}
|
||||
/**
|
||||
* Detect versions of Curl which report incorrect header lengths when
|
||||
* using Proxies.
|
||||
*
|
||||
* @return boolean
|
||||
*/
|
||||
private function needsCurlProxyFix()
|
||||
{
|
||||
$ver = $this->facebookCurl->version();
|
||||
$version = $ver['version_number'];
|
||||
|
||||
return $version < self::CURL_PROXY_QUIRK_VER;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue