From f51c9ed2abe5c68211bb3736be5f70b1fe2c9ec0 Mon Sep 17 00:00:00 2001 From: M.Gergo Date: Fri, 8 Mar 2019 21:20:34 +0100 Subject: további rendrakás --- .../Exceptions/FacebookAuthenticationException.php | 33 ---- .../Exceptions/FacebookAuthorizationException.php | 33 ---- .../Exceptions/FacebookClientException.php | 33 ---- .../facebook/Exceptions/FacebookOtherException.php | 33 ---- .../Exceptions/FacebookResponseException.php | 216 --------------------- .../FacebookResumableUploadException.php | 33 ---- .../facebook/Exceptions/FacebookSDKException.php | 33 ---- .../Exceptions/FacebookServerException.php | 33 ---- .../Exceptions/FacebookThrottleException.php | 33 ---- 9 files changed, 480 deletions(-) delete mode 100644 mayor-orig/www/include/share/facebook/Exceptions/FacebookAuthenticationException.php delete mode 100644 mayor-orig/www/include/share/facebook/Exceptions/FacebookAuthorizationException.php delete mode 100644 mayor-orig/www/include/share/facebook/Exceptions/FacebookClientException.php delete mode 100644 mayor-orig/www/include/share/facebook/Exceptions/FacebookOtherException.php delete mode 100644 mayor-orig/www/include/share/facebook/Exceptions/FacebookResponseException.php delete mode 100644 mayor-orig/www/include/share/facebook/Exceptions/FacebookResumableUploadException.php delete mode 100644 mayor-orig/www/include/share/facebook/Exceptions/FacebookSDKException.php delete mode 100644 mayor-orig/www/include/share/facebook/Exceptions/FacebookServerException.php delete mode 100644 mayor-orig/www/include/share/facebook/Exceptions/FacebookThrottleException.php (limited to 'mayor-orig/www/include/share/facebook/Exceptions') diff --git a/mayor-orig/www/include/share/facebook/Exceptions/FacebookAuthenticationException.php b/mayor-orig/www/include/share/facebook/Exceptions/FacebookAuthenticationException.php deleted file mode 100644 index c5e45fa3..00000000 --- a/mayor-orig/www/include/share/facebook/Exceptions/FacebookAuthenticationException.php +++ /dev/null @@ -1,33 +0,0 @@ -response = $response; - $this->responseData = $response->getDecodedBody(); - - $errorMessage = $this->get('message', 'Unknown error from Graph.'); - $errorCode = $this->get('code', -1); - - parent::__construct($errorMessage, $errorCode, $previousException); - } - - /** - * A factory for creating the appropriate exception based on the response from Graph. - * - * @param FacebookResponse $response The response that threw the exception. - * - * @return FacebookResponseException - */ - public static function create(FacebookResponse $response) - { - $data = $response->getDecodedBody(); - - if (!isset($data['error']['code']) && isset($data['code'])) { - $data = ['error' => $data]; - } - - $code = isset($data['error']['code']) ? $data['error']['code'] : null; - $message = isset($data['error']['message']) ? $data['error']['message'] : 'Unknown error from Graph.'; - - if (isset($data['error']['error_subcode'])) { - switch ($data['error']['error_subcode']) { - // Other authentication issues - case 458: - case 459: - case 460: - case 463: - case 464: - case 467: - return new static($response, new FacebookAuthenticationException($message, $code)); - // Video upload resumable error - case 1363030: - case 1363019: - case 1363037: - case 1363033: - case 1363021: - case 1363041: - return new static($response, new FacebookResumableUploadException($message, $code)); - } - } - - switch ($code) { - // Login status or token expired, revoked, or invalid - case 100: - case 102: - case 190: - return new static($response, new FacebookAuthenticationException($message, $code)); - - // Server issue, possible downtime - case 1: - case 2: - return new static($response, new FacebookServerException($message, $code)); - - // API Throttling - case 4: - case 17: - case 32: - case 341: - case 613: - return new static($response, new FacebookThrottleException($message, $code)); - - // Duplicate Post - case 506: - return new static($response, new FacebookClientException($message, $code)); - } - - // Missing Permissions - if ($code == 10 || ($code >= 200 && $code <= 299)) { - return new static($response, new FacebookAuthorizationException($message, $code)); - } - - // OAuth authentication error - if (isset($data['error']['type']) && $data['error']['type'] === 'OAuthException') { - return new static($response, new FacebookAuthenticationException($message, $code)); - } - - // All others - return new static($response, new FacebookOtherException($message, $code)); - } - - /** - * Checks isset and returns that or a default value. - * - * @param string $key - * @param mixed $default - * - * @return mixed - */ - private function get($key, $default = null) - { - if (isset($this->responseData['error'][$key])) { - return $this->responseData['error'][$key]; - } - - return $default; - } - - /** - * Returns the HTTP status code - * - * @return int - */ - public function getHttpStatusCode() - { - return $this->response->getHttpStatusCode(); - } - - /** - * Returns the sub-error code - * - * @return int - */ - public function getSubErrorCode() - { - return $this->get('error_subcode', -1); - } - - /** - * Returns the error type - * - * @return string - */ - public function getErrorType() - { - return $this->get('type', ''); - } - - /** - * Returns the raw response used to create the exception. - * - * @return string - */ - public function getRawResponse() - { - return $this->response->getBody(); - } - - /** - * Returns the decoded response used to create the exception. - * - * @return array - */ - public function getResponseData() - { - return $this->responseData; - } - - /** - * Returns the response entity used to create the exception. - * - * @return FacebookResponse - */ - public function getResponse() - { - return $this->response; - } -} diff --git a/mayor-orig/www/include/share/facebook/Exceptions/FacebookResumableUploadException.php b/mayor-orig/www/include/share/facebook/Exceptions/FacebookResumableUploadException.php deleted file mode 100644 index 6f470662..00000000 --- a/mayor-orig/www/include/share/facebook/Exceptions/FacebookResumableUploadException.php +++ /dev/null @@ -1,33 +0,0 @@ -