lib/Ajde/Social/Provider/Facebook/Facebook.lib.php

Summary

Maintainability
A
1 hr
Test Coverage

setPersistentData accesses the super-global variable $_SESSION.
Open

    protected function setPersistentData($key, $value)
    {
        if (!in_array($key, self::$kSupportedKeys)) {
            self::errorLog('Unsupported key passed to setPersistentData.');

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

clearPersistentData accesses the super-global variable $_SESSION.
Open

    protected function clearPersistentData($key)
    {
        if (!in_array($key, self::$kSupportedKeys)) {
            self::errorLog('Unsupported key passed to clearPersistentData.');

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

getPersistentData accesses the super-global variable $_SESSION.
Open

    protected function getPersistentData($key, $default = false)
    {
        if (!in_array($key, self::$kSupportedKeys)) {
            self::errorLog('Unsupported key passed to getPersistentData.');

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

deleteSharedSessionCookie accesses the super-global variable $_COOKIE.
Open

    protected function deleteSharedSessionCookie()
    {
        $cookie_name = $this->getSharedSessionCookieName();
        unset($_COOKIE[$cookie_name]);
        $base_domain = $this->getBaseDomain();

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

initSharedSession accesses the super-global variable $_COOKIE.
Open

    protected function initSharedSession()
    {
        $cookie_name = $this->getSharedSessionCookieName();
        if (isset($_COOKIE[$cookie_name])) {
            $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

initSharedSession accesses the super-global variable $_COOKIE.
Open

    protected function initSharedSession()
    {
        $cookie_name = $this->getSharedSessionCookieName();
        if (isset($_COOKIE[$cookie_name])) {
            $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

getPersistentData accesses the super-global variable $_SESSION.
Open

    protected function getPersistentData($key, $default = false)
    {
        if (!in_array($key, self::$kSupportedKeys)) {
            self::errorLog('Unsupported key passed to getPersistentData.');

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

clearPersistentData accesses the super-global variable $_SESSION.
Open

    protected function clearPersistentData($key)
    {
        if (!in_array($key, self::$kSupportedKeys)) {
            self::errorLog('Unsupported key passed to clearPersistentData.');

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

initSharedSession accesses the super-global variable $_COOKIE.
Open

    protected function initSharedSession()
    {
        $cookie_name = $this->getSharedSessionCookieName();
        if (isset($_COOKIE[$cookie_name])) {
            $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

Method initSharedSession has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    protected function initSharedSession()
    {
        $cookie_name = $this->getSharedSessionCookieName();
        if (isset($_COOKIE[$cookie_name])) {
            $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);
Severity: Minor
Found in lib/Ajde/Social/Provider/Facebook/Facebook.lib.php - About 1 hr to fix

    Function initSharedSession has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);
    Severity: Minor
    Found in lib/Ajde/Social/Provider/Facebook/Facebook.lib.php - About 25 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

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

        protected function getPersistentData($key, $default = false)

    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

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

            } else {
                // @codeCoverageIgnoreStart
                self::errorLog(
                    'Shared session ID cookie could not be set! You must ensure you '.
                    'create the Facebook instance before headers have been sent. This '.

    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

    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->state = 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

    The variable $base_domain is not named in camelCase.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

    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 $session_var_name is not named in camelCase.
    Open

        protected function getPersistentData($key, $default = false)
        {
            if (!in_array($key, self::$kSupportedKeys)) {
                self::errorLog('Unsupported key passed to getPersistentData.');
    
    

    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 $session_var_name is not named in camelCase.
    Open

        protected function clearPersistentData($key)
        {
            if (!in_array($key, self::$kSupportedKeys)) {
                self::errorLog('Unsupported key passed to clearPersistentData.');
    
    

    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 $cookie_name is not named in camelCase.
    Open

        protected function deleteSharedSessionCookie()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            unset($_COOKIE[$cookie_name]);
            $base_domain = $this->getBaseDomain();

    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 $cookie_name is not named in camelCase.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

    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 $cookie_value is not named in camelCase.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

    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 $session_var_name is not named in camelCase.
    Open

        protected function getPersistentData($key, $default = false)
        {
            if (!in_array($key, self::$kSupportedKeys)) {
                self::errorLog('Unsupported key passed to getPersistentData.');
    
    

    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 $cookie_value is not named in camelCase.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

    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 $session_var_name is not named in camelCase.
    Open

        protected function getPersistentData($key, $default = false)
        {
            if (!in_array($key, self::$kSupportedKeys)) {
                self::errorLog('Unsupported key passed to getPersistentData.');
    
    

    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 $base_domain is not named in camelCase.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

    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 $cookie_name is not named in camelCase.
    Open

        protected function deleteSharedSessionCookie()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            unset($_COOKIE[$cookie_name]);
            $base_domain = $this->getBaseDomain();

    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 $session_var_name is not named in camelCase.
    Open

        protected function setPersistentData($key, $value)
        {
            if (!in_array($key, self::$kSupportedKeys)) {
                self::errorLog('Unsupported key passed to setPersistentData.');
    
    

    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 $session_var_name is not named in camelCase.
    Open

        protected function clearPersistentData($key)
        {
            if (!in_array($key, self::$kSupportedKeys)) {
                self::errorLog('Unsupported key passed to clearPersistentData.');
    
    

    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 $base_domain is not named in camelCase.
    Open

        protected function deleteSharedSessionCookie()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            unset($_COOKIE[$cookie_name]);
            $base_domain = $this->getBaseDomain();

    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 $cookie_value is not named in camelCase.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

    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 $cookie_name is not named in camelCase.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

    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 $cookie_name is not named in camelCase.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

    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 $cookie_name is not named in camelCase.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

    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 $base_domain is not named in camelCase.
    Open

        protected function deleteSharedSessionCookie()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            unset($_COOKIE[$cookie_name]);
            $base_domain = $this->getBaseDomain();

    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 $session_var_name is not named in camelCase.
    Open

        protected function clearPersistentData($key)
        {
            if (!in_array($key, self::$kSupportedKeys)) {
                self::errorLog('Unsupported key passed to clearPersistentData.');
    
    

    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 $cookie_name is not named in camelCase.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

    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 $base_domain is not named in camelCase.
    Open

        protected function initSharedSession()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            if (isset($_COOKIE[$cookie_name])) {
                $data = $this->parseSignedRequest($_COOKIE[$cookie_name]);

    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 $session_var_name is not named in camelCase.
    Open

        protected function setPersistentData($key, $value)
        {
            if (!in_array($key, self::$kSupportedKeys)) {
                self::errorLog('Unsupported key passed to setPersistentData.');
    
    

    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 $cookie_name is not named in camelCase.
    Open

        protected function deleteSharedSessionCookie()
        {
            $cookie_name = $this->getSharedSessionCookieName();
            unset($_COOKIE[$cookie_name]);
            $base_domain = $this->getBaseDomain();

    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