]> git.mxchange.org Git - friendica-addons.git/blobdiff - tumblr/library/tumblroauth.php
Merge pull request #950 from nupplaphil/bug/8182_another_notification_bug
[friendica-addons.git] / tumblr / library / tumblroauth.php
index 895269f236272119831ec86bbac218a41d2c9f7e..782c6b4bbfd2e211c810a9aaa44041f963538ddf 100644 (file)
  */
 class TumblrOAuth
 {
-       /* Contains the last HTTP status code returned. */
-       public $http_code;
-       /* Contains the last API call. */
-       public $url;
        /* Set up the API root URL. */
        public $host = "https://api.tumblr.com/v2/";
        /* Set timeout default. */
@@ -23,17 +19,34 @@ class TumblrOAuth
        public $connecttimeout = 30;
        /* Verify SSL Cert. */
        public $ssl_verifypeer = FALSE;
-       /* Respons format. */
+       /* Response format. */
        public $format = 'json';
        /* Decode returned json data. */
        public $decode_json = TRUE;
-       /* Contains the last HTTP headers returned. */
-       public $http_info;
-       /* Set the useragnet. */
+       /* Set the useragent. */
        public $useragent = 'TumblrOAuth v0.2.0-beta2';
-       /* Immediately retry the API call if the response was not successful. */
-       //public $retry = TRUE;
 
+       /* Contains the last HTTP status code returned. */
+       public $http_code;
+       /* Contains the last API call. */
+       public $url;
+       /**
+        * Contains the last HTTP headers returned.
+        * @var array
+        */
+       public $http_header;
+       /**
+        * Contains the last HTTP request info
+        * @var string
+        */
+       public $http_info;
+
+       /** @var OAuthToken */
+       private $token;
+       /** @var OAuthConsumer */
+       private $consumer;
+       /** @var OAuthSignatureMethod_HMAC_SHA1 */
+       private $sha1_method;
 
        /**
         * Set API URLS
@@ -58,56 +71,42 @@ class TumblrOAuth
                return 'https://www.tumblr.com/oauth/request_token';
        }
 
-       /**
-        * Debug helpers
-        */
-       function lastStatusCode()
-       {
-               return $this->http_status;
-       }
-
-       function lastAPICall()
-       {
-               return $this->last_api_call;
-       }
-
-       /**
-        * construct TumblrOAuth object
-        */
        function __construct($consumer_key, $consumer_secret, $oauth_token = null, $oauth_token_secret = null)
        {
                $this->sha1_method = new OAuthSignatureMethod_HMAC_SHA1();
                $this->consumer = new OAuthConsumer($consumer_key, $consumer_secret);
                if (!empty($oauth_token) && !empty($oauth_token_secret)) {
-                       $this->token = new OAuthConsumer($oauth_token, $oauth_token_secret);
+                       $this->token = new OAuthToken($oauth_token, $oauth_token_secret);
                } else {
                        $this->token = null;
                }
        }
 
-
        /**
         * Get a request_token from Tumblr
         *
-        * @returns a key/value array containing oauth_token and oauth_token_secret
+        * @param callback $oauth_callback
+        * @return array
         */
        function getRequestToken($oauth_callback = null)
        {
-               $parameters = array();
+               $parameters = [];
                if (!empty($oauth_callback)) {
                        $parameters['oauth_callback'] = $oauth_callback;
                }
 
                $request = $this->oAuthRequest($this->requestTokenURL(), 'GET', $parameters);
                $token = OAuthUtil::parse_parameters($request);
-               $this->token = new OAuthConsumer($token['oauth_token'], $token['oauth_token_secret']);
+               $this->token = new OAuthToken($token['oauth_token'], $token['oauth_token_secret']);
                return $token;
        }
 
        /**
         * Get the authorize URL
         *
-        * @returns a string
+        * @param array $token
+        * @param bool $sign_in_with_tumblr
+        * @return string
         */
        function getAuthorizeURL($token, $sign_in_with_tumblr = TRUE)
        {
@@ -126,21 +125,22 @@ class TumblrOAuth
         * Exchange request token and secret for an access token and
         * secret, to sign API calls.
         *
-        * @returns array("oauth_token" => "the-access-token",
+        * @param bool $oauth_verifier
+        * @return array ("oauth_token" => "the-access-token",
         *                "oauth_token_secret" => "the-access-secret",
         *                "user_id" => "9436992",
         *                "screen_name" => "abraham")
         */
        function getAccessToken($oauth_verifier = FALSE)
        {
-               $parameters = array();
+               $parameters = [];
                if (!empty($oauth_verifier)) {
                        $parameters['oauth_verifier'] = $oauth_verifier;
                }
 
                $request = $this->oAuthRequest($this->accessTokenURL(), 'GET', $parameters);
                $token = OAuthUtil::parse_parameters($request);
-               $this->token = new OAuthConsumer($token['oauth_token'], $token['oauth_token_secret']);
+               $this->token = new OAuthToken($token['oauth_token'], $token['oauth_token_secret']);
 
                return $token;
        }
@@ -148,7 +148,9 @@ class TumblrOAuth
        /**
         * One time exchange of username and password for access token and secret.
         *
-        * @returns array("oauth_token" => "the-access-token",
+        * @param string $username
+        * @param string $password
+        * @return array ("oauth_token" => "the-access-token",
         *                "oauth_token_secret" => "the-access-secret",
         *                "user_id" => "9436992",
         *                "screen_name" => "abraham",
@@ -156,21 +158,25 @@ class TumblrOAuth
         */
        function getXAuthToken($username, $password)
        {
-               $parameters = array();
+               $parameters = [];
                $parameters['x_auth_username'] = $username;
                $parameters['x_auth_password'] = $password;
                $parameters['x_auth_mode'] = 'client_auth';
                $request = $this->oAuthRequest($this->accessTokenURL(), 'POST', $parameters);
                $token = OAuthUtil::parse_parameters($request);
-               $this->token = new OAuthConsumer($token['oauth_token'], $token['oauth_token_secret']);
+               $this->token = new OAuthToken($token['oauth_token'], $token['oauth_token_secret']);
 
                return $token;
        }
 
        /**
         * GET wrapper for oAuthRequest.
+        *
+        * @param string $url
+        * @param array $parameters
+        * @return mixed|string
         */
-       function get($url, $parameters = array())
+       function get($url, $parameters = [])
        {
                $response = $this->oAuthRequest($url, 'GET', $parameters);
                if ($this->format === 'json' && $this->decode_json) {
@@ -182,8 +188,12 @@ class TumblrOAuth
 
        /**
         * POST wrapper for oAuthRequest.
+        *
+        * @param string $url
+        * @param array $parameters
+        * @return mixed|string
         */
-       function post($url, $parameters = array())
+       function post($url, $parameters = [])
        {
                $response = $this->oAuthRequest($url, 'POST', $parameters);
                if ($this->format === 'json' && $this->decode_json) {
@@ -195,8 +205,12 @@ class TumblrOAuth
 
        /**
         * DELETE wrapper for oAuthReqeust.
+        *
+        * @param string $url
+        * @param array $parameters
+        * @return mixed|string
         */
-       function delete($url, $parameters = array())
+       function delete($url, $parameters = [])
        {
                $response = $this->oAuthRequest($url, 'DELETE', $parameters);
                if ($this->format === 'json' && $this->decode_json) {
@@ -208,6 +222,11 @@ class TumblrOAuth
 
        /**
         * Format and sign an OAuth / API request
+        *
+        * @param string $url
+        * @param string $method
+        * @param array $parameters
+        * @return mixed|string
         */
        function oAuthRequest($url, $method, $parameters)
        {
@@ -228,11 +247,14 @@ class TumblrOAuth
        /**
         * Make an HTTP request
         *
-        * @return API results
+        * @param string $url
+        * @param string $method
+        * @param mixed  $postfields
+        * @return string API results
         */
        function http($url, $method, $postfields = null)
        {
-               $this->http_info = array();
+               $this->http_info = [];
                $ci = curl_init();
                /* Curl settings */
                curl_setopt($ci, CURLOPT_USERAGENT, $this->useragent);
@@ -270,6 +292,10 @@ class TumblrOAuth
 
        /**
         * Get the header info to store.
+        *
+        * @param resource $ch
+        * @param string $header
+        * @return int
         */
        function getHeader($ch, $header)
        {