lib/Ajde/Social/Provider/Twitter/twitteroauth.php

Summary

Maintainability
A
2 hrs
Test Coverage

The class twitteroauth has 11 public methods. Consider refactoring twitteroauth to keep number of public methods under 10.
Open

class twitteroauth
{
    /* Contains the last HTTP status code returned. */
    public $http_code;
    /* Contains the last API call. */

TooManyPublicMethods

Since: 0.1

A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

By default it ignores methods starting with 'get' or 'set'.

Example

Source https://phpmd.org/rules/codesize.html#toomanypublicmethods

Method http has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function http($url, $method, $postfields = null)
    {
        $this->http_info = [];
        $ci = curl_init();
        /* Curl settings */
Severity: Minor
Found in lib/Ajde/Social/Provider/Twitter/twitteroauth.php - About 1 hr to fix

    Missing class import via use statement (line '81', column '34').
    Open

            $this->sha1_method = new OAuthSignatureMethod_HMAC_SHA1();

    MissingImport

    Since: 2.7.0

    Importing all external classes in a file through use statements makes them clearly visible.

    Example

    function make() {
        return new \stdClass();
    }

    Source http://phpmd.org/rules/cleancode.html#MissingImport

    Missing class import via use statement (line '138', column '28').
    Open

            $this->token = new OAuthConsumer($token['oauth_token'], $token['oauth_token_secret']);

    MissingImport

    Since: 2.7.0

    Importing all external classes in a file through use statements makes them clearly visible.

    Example

    function make() {
        return new \stdClass();
    }

    Source http://phpmd.org/rules/cleancode.html#MissingImport

    Missing class import via use statement (line '82', column '31').
    Open

            $this->consumer = new OAuthConsumer($consumer_key, $consumer_secret);

    MissingImport

    Since: 2.7.0

    Importing all external classes in a file through use statements makes them clearly visible.

    Example

    function make() {
        return new \stdClass();
    }

    Source http://phpmd.org/rules/cleancode.html#MissingImport

    The method getAuthorizeURL has a boolean flag argument $sign_in_with_twitter, which is a certain sign of a Single Responsibility Principle violation.
    Open

        public function getAuthorizeURL($token, $sign_in_with_twitter = true)

    BooleanArgumentFlag

    Since: 1.4.0

    A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

    Example

    class Foo {
        public function bar($flag = true) {
        }
    }

    Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

    Missing class import via use statement (line '101', column '28').
    Open

            $this->token = new OAuthConsumer($token['oauth_token'], $token['oauth_token_secret']);

    MissingImport

    Since: 2.7.0

    Importing all external classes in a file through use statements makes them clearly visible.

    Example

    function make() {
        return new \stdClass();
    }

    Source http://phpmd.org/rules/cleancode.html#MissingImport

    Missing class import via use statement (line '84', column '32').
    Open

                $this->token = new OAuthConsumer($oauth_token, $oauth_token_secret);

    MissingImport

    Since: 2.7.0

    Importing all external classes in a file through use statements makes them clearly visible.

    Example

    function make() {
        return new \stdClass();
    }

    Source http://phpmd.org/rules/cleancode.html#MissingImport

    Missing class import via use statement (line '160', column '28').
    Open

            $this->token = new OAuthConsumer($token['oauth_token'], $token['oauth_token_secret']);

    MissingImport

    Since: 2.7.0

    Importing all external classes in a file through use statements makes them clearly visible.

    Example

    function make() {
        return new \stdClass();
    }

    Source http://phpmd.org/rules/cleancode.html#MissingImport

    Avoid using static access to class 'OAuthUtil' in method 'getXAuthToken'.
    Open

            $token = OAuthUtil::parse_parameters($request);

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

    Source https://phpmd.org/rules/cleancode.html#staticaccess

    The method getAuthorizeURL uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

            } else {
                return $this->authenticateURL()."?oauth_token={$token}";
            }

    ElseExpression

    Since: 1.4.0

    An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

    Example

    class Foo
    {
        public function bar($flag)
        {
            if ($flag) {
                // one branch
            } else {
                // another branch
            }
        }
    }

    Source https://phpmd.org/rules/cleancode.html#elseexpression

    Avoid using static access to class 'OAuthRequest' in method 'oAuthRequest'.
    Open

            $request = OAuthRequest::from_consumer_and_token($this->consumer, $this->token, $method, $url, $parameters);

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

    Source https://phpmd.org/rules/cleancode.html#staticaccess

    Avoid using static access to class 'OAuthUtil' in method 'getRequestToken'.
    Open

            $token = OAuthUtil::parse_parameters($request);

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

    Source https://phpmd.org/rules/cleancode.html#staticaccess

    The method __construct uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
    Open

            } else {
                $this->token = null;
            }

    ElseExpression

    Since: 1.4.0

    An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

    Example

    class Foo
    {
        public function bar($flag)
        {
            if ($flag) {
                // one branch
            } else {
                // another branch
            }
        }
    }

    Source https://phpmd.org/rules/cleancode.html#elseexpression

    Avoid using static access to class 'OAuthUtil' in method 'getAccessToken'.
    Open

            $token = OAuthUtil::parse_parameters($request);

    StaticAccess

    Since: 1.4.0

    Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

    Example

    class Foo
    {
        public function bar()
        {
            Bar::baz();
        }
    }

    Source https://phpmd.org/rules/cleancode.html#staticaccess

    Avoid unused parameters such as '$ch'.
    Open

        public function getHeader($ch, $header)

    UnusedFormalParameter

    Since: 0.2

    Avoid passing parameters to methods or constructors and then not using those parameters.

    Example

    class Foo
    {
        private function bar($howdy)
        {
            // $howdy is not used
        }
    }

    Source https://phpmd.org/rules/unusedcode.html#unusedformalparameter

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

        public function getRequestToken($oauth_callback)
        {
            $parameters = [];
            $parameters['oauth_callback'] = $oauth_callback;
            $request = $this->oAuthRequest($this->requestTokenURL(), 'GET', $parameters);
    Severity: Minor
    Found in lib/Ajde/Social/Provider/Twitter/twitteroauth.php and 1 other location - About 40 mins to fix
    lib/Ajde/Social/Provider/Twitter/twitteroauth.php on lines 132..141

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 93.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    Similar blocks of code found in 2 locations. Consider refactoring.
    Open

        public function getAccessToken($oauth_verifier)
        {
            $parameters = [];
            $parameters['oauth_verifier'] = $oauth_verifier;
            $request = $this->oAuthRequest($this->accessTokenURL(), 'GET', $parameters);
    Severity: Minor
    Found in lib/Ajde/Social/Provider/Twitter/twitteroauth.php and 1 other location - About 40 mins to fix
    lib/Ajde/Social/Provider/Twitter/twitteroauth.php on lines 95..104

    Duplicated Code

    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

    Tuning

    This issue has a mass of 93.

    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

    Refactorings

    Further Reading

    The property $ssl_verifypeer is not named in camelCase.
    Open

    class twitteroauth
    {
        /* Contains the last HTTP status code returned. */
        public $http_code;
        /* Contains the last API call. */

    CamelCasePropertyName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name attributes.

    Example

    class ClassName {
        protected $property_name;
    }

    Source

    Avoid variables with short names like $ci. Configured minimum length is 3.
    Open

            $ci = curl_init();

    ShortVariable

    Since: 0.2

    Detects when a field, local, or parameter has a very short name.

    Example

    class Something {
        private $q = 15; // VIOLATION - Field
        public static function main( array $as ) { // VIOLATION - Formal
            $r = 20 + $this->q; // VIOLATION - Local
            for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                $r += $this->q;
            }
        }
    }

    Source https://phpmd.org/rules/naming.html#shortvariable

    The parameter $oauth_token is not named in camelCase.
    Open

        public 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)) {

    CamelCaseParameterName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name parameters.

    Example

    class ClassName {
        public function doSomething($user_name) {
        }
    }

    Source

    The property $http_info is not named in camelCase.
    Open

    class twitteroauth
    {
        /* Contains the last HTTP status code returned. */
        public $http_code;
        /* Contains the last API call. */

    CamelCasePropertyName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name attributes.

    Example

    class ClassName {
        protected $property_name;
    }

    Source

    The parameter $oauth_callback is not named in camelCase.
    Open

        public function getRequestToken($oauth_callback)
        {
            $parameters = [];
            $parameters['oauth_callback'] = $oauth_callback;
            $request = $this->oAuthRequest($this->requestTokenURL(), 'GET', $parameters);

    CamelCaseParameterName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name parameters.

    Example

    class ClassName {
        public function doSomething($user_name) {
        }
    }

    Source

    Avoid variables with short names like $i. Configured minimum length is 3.
    Open

            $i = strpos($header, ':');

    ShortVariable

    Since: 0.2

    Detects when a field, local, or parameter has a very short name.

    Example

    class Something {
        private $q = 15; // VIOLATION - Field
        public static function main( array $as ) { // VIOLATION - Formal
            $r = 20 + $this->q; // VIOLATION - Local
            for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                $r += $this->q;
            }
        }
    }

    Source https://phpmd.org/rules/naming.html#shortvariable

    Avoid variables with short names like $ch. Configured minimum length is 3.
    Open

        public function getHeader($ch, $header)

    ShortVariable

    Since: 0.2

    Detects when a field, local, or parameter has a very short name.

    Example

    class Something {
        private $q = 15; // VIOLATION - Field
        public static function main( array $as ) { // VIOLATION - Formal
            $r = 20 + $this->q; // VIOLATION - Local
            for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                $r += $this->q;
            }
        }
    }

    Source https://phpmd.org/rules/naming.html#shortvariable

    The parameter $consumer_key is not named in camelCase.
    Open

        public 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)) {

    CamelCaseParameterName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name parameters.

    Example

    class ClassName {
        public function doSomething($user_name) {
        }
    }

    Source

    The parameter $oauth_verifier is not named in camelCase.
    Open

        public function getAccessToken($oauth_verifier)
        {
            $parameters = [];
            $parameters['oauth_verifier'] = $oauth_verifier;
            $request = $this->oAuthRequest($this->accessTokenURL(), 'GET', $parameters);

    CamelCaseParameterName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name parameters.

    Example

    class ClassName {
        public function doSomething($user_name) {
        }
    }

    Source

    The property $http_code is not named in camelCase.
    Open

    class twitteroauth
    {
        /* Contains the last HTTP status code returned. */
        public $http_code;
        /* Contains the last API call. */

    CamelCasePropertyName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name attributes.

    Example

    class ClassName {
        protected $property_name;
    }

    Source

    The class twitteroauth is not named in CamelCase.
    Open

    class twitteroauth
    {
        /* Contains the last HTTP status code returned. */
        public $http_code;
        /* Contains the last API call. */

    CamelCaseClassName

    Since: 0.2

    It is considered best practice to use the CamelCase notation to name classes.

    Example

    class class_name {
    }

    Source

    The parameter $oauth_token_secret is not named in camelCase.
    Open

        public 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)) {

    CamelCaseParameterName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name parameters.

    Example

    class ClassName {
        public function doSomething($user_name) {
        }
    }

    Source

    The property $decode_json is not named in camelCase.
    Open

    class twitteroauth
    {
        /* Contains the last HTTP status code returned. */
        public $http_code;
        /* Contains the last API call. */

    CamelCasePropertyName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name attributes.

    Example

    class ClassName {
        protected $property_name;
    }

    Source

    The parameter $consumer_secret is not named in camelCase.
    Open

        public 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)) {

    CamelCaseParameterName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name parameters.

    Example

    class ClassName {
        public function doSomething($user_name) {
        }
    }

    Source

    The parameter $sign_in_with_twitter is not named in camelCase.
    Open

        public function getAuthorizeURL($token, $sign_in_with_twitter = true)
        {
            if (is_array($token)) {
                $token = $token['oauth_token'];
            }

    CamelCaseParameterName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name parameters.

    Example

    class ClassName {
        public function doSomething($user_name) {
        }
    }

    Source

    The variable $oauth_verifier is not named in camelCase.
    Open

        public function getAccessToken($oauth_verifier)
        {
            $parameters = [];
            $parameters['oauth_verifier'] = $oauth_verifier;
            $request = $this->oAuthRequest($this->accessTokenURL(), 'GET', $parameters);

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $oauth_token_secret is not named in camelCase.
    Open

        public 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)) {

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $sign_in_with_twitter is not named in camelCase.
    Open

        public function getAuthorizeURL($token, $sign_in_with_twitter = true)
        {
            if (is_array($token)) {
                $token = $token['oauth_token'];
            }

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $consumer_key is not named in camelCase.
    Open

        public 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)) {

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $oauth_token is not named in camelCase.
    Open

        public 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)) {

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $oauth_token is not named in camelCase.
    Open

        public 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)) {

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $oauth_callback is not named in camelCase.
    Open

        public function getRequestToken($oauth_callback)
        {
            $parameters = [];
            $parameters['oauth_callback'] = $oauth_callback;
            $request = $this->oAuthRequest($this->requestTokenURL(), 'GET', $parameters);

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $oauth_token_secret is not named in camelCase.
    Open

        public 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)) {

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    The variable $consumer_secret is not named in camelCase.
    Open

        public 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)) {

    CamelCaseVariableName

    Since: 0.2

    It is considered best practice to use the camelCase notation to name variables.

    Example

    class ClassName {
        public function doSomething() {
            $data_module = new DataModule();
        }
    }

    Source

    There are no issues that match your filters.

    Category
    Status