YetiForceCompany/YetiForceCRM

View on GitHub
modules/Vtiger/crons/SessionCleaner.php

Summary

Maintainability
A
45 mins
Test Coverage
F
57%

Function process has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    public function process()
    {
        $dbCommand = \App\Db::getInstance('webservice')->createCommand();
        foreach (\Api\Core\Containers::$listTables as $row) {
            if (!isset($row['session'])) {
Severity: Minor
Found in modules/Vtiger/crons/SessionCleaner.php - About 45 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 process uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            \App\Log::warning('Session cleaning has been omitted because the server headers have already been sent');
        }

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 '\App\Log' in method 'process'.
Open

            \App\Log::warning('Session cleaning has been omitted because the server headers have already been sent');

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 'App\Session\File' in method 'process'.
Open

            foreach (App\Session\File::clean() as $userId => $userName) {

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 'OSSMail_Logout_Model' in method 'process'.
Open

                OSSMail_Logout_Model::logutUserById($userId);

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

Define a constant instead of duplicating this literal "session" 3 times.
Open

            if (!isset($row['session'])) {

Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

Noncompliant Code Example

With the default threshold of 3:

function run() {
  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
  execute('action1');
  release('action1');
}

Compliant Solution

ACTION_1 = 'action1';

function run() {
  prepare(ACTION_1);
  execute(ACTION_1);
  release(ACTION_1);
}

Exceptions

To prevent generating some false-positives, literals having less than 5 characters are excluded.

Define a constant instead of duplicating this literal "Y-m-d H:i:s" 3 times.
Open

            $dbCommand->delete($row['session'], ['<', 'created', date('Y-m-d H:i:s', strtotime('now') - \Config\Security::$apiLifetimeSessionCreate * 60)])->execute();

Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences.

On the other hand, constants can be referenced from many places, but only need to be updated in a single place.

Noncompliant Code Example

With the default threshold of 3:

function run() {
  prepare('action1');                              // Non-Compliant - 'action1' is duplicated 3 times
  execute('action1');
  release('action1');
}

Compliant Solution

ACTION_1 = 'action1';

function run() {
  prepare(ACTION_1);
  execute(ACTION_1);
  release(ACTION_1);
}

Exceptions

To prevent generating some false-positives, literals having less than 5 characters are excluded.

Call to method warning from undeclared class \App\Log
Open

            \App\Log::warning('Session cleaning has been omitted because the server headers have already been sent');
Severity: Critical
Found in modules/Vtiger/crons/SessionCleaner.php by phan

Call to undeclared method \App\Db::createCommand
Open

        $dbCommand = \App\Db::getInstance('webservice')->createCommand();
Severity: Critical
Found in modules/Vtiger/crons/SessionCleaner.php by phan

Call to undeclared method \App\Db::createCommand
Open

            $dbCommand = \App\Db::getInstance()->createCommand();
Severity: Critical
Found in modules/Vtiger/crons/SessionCleaner.php by phan

Each class must be in a namespace of at least one level (a top-level vendor name)
Open

class Vtiger_SessionCleaner_Cron extends \App\CronHandler

The class Vtiger_SessionCleaner_Cron is not named in CamelCase.
Open

class Vtiger_SessionCleaner_Cron extends \App\CronHandler
{
    /** {@inheritdoc} */
    public function process()
    {

CamelCaseClassName

Since: 0.2

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

Example

class class_name {
}

Source

Spaces must be used to indent lines; tabs are not allowed
Open

            $dbCommand->delete($row['session'], ['<', 'changed', date('Y-m-d H:i:s', strtotime('now') - \Config\Security::$apiLifetimeSessionUpdate * 60)])->execute();

Spaces must be used to indent lines; tabs are not allowed
Open

            $dbCommand = \App\Db::getInstance()->createCommand();

Spaces must be used to indent lines; tabs are not allowed
Open

                $dbCommand->insert('vtiger_loginhistory', [

Spaces must be used to indent lines; tabs are not allowed
Open

            }

Spaces must be used to indent lines; tabs are not allowed
Open

    public function process()

Spaces must be used to indent lines; tabs are not allowed
Open

                    'logout_time' => date('Y-m-d H:i:s'),

Spaces must be used to indent lines; tabs are not allowed
Open

            foreach (App\Session\File::clean() as $userId => $userName) {

Spaces must be used to indent lines; tabs are not allowed
Open

        $dbCommand = \App\Db::getInstance('webservice')->createCommand();

Spaces must be used to indent lines; tabs are not allowed
Open

        }

Spaces must be used to indent lines; tabs are not allowed
Open

        foreach (\Api\Core\Containers::$listTables as $row) {

Spaces must be used to indent lines; tabs are not allowed
Open

            $dbCommand->delete($row['session'], ['<', 'created', date('Y-m-d H:i:s', strtotime('now') - \Config\Security::$apiLifetimeSessionCreate * 60)])->execute();

Spaces must be used to indent lines; tabs are not allowed
Open

                ])->execute();

Spaces must be used to indent lines; tabs are not allowed
Open

    /** {@inheritdoc} */

Spaces must be used to indent lines; tabs are not allowed
Open

    }

Spaces must be used to indent lines; tabs are not allowed
Open

                continue;

Spaces must be used to indent lines; tabs are not allowed
Open

            \App\Log::warning('Session cleaning has been omitted because the server headers have already been sent');

Spaces must be used to indent lines; tabs are not allowed
Open

        }

Spaces must be used to indent lines; tabs are not allowed
Open

        if (!headers_sent()) {

Line exceeds 120 characters; contains 167 characters
Open

            $dbCommand->delete($row['session'], ['<', 'created', date('Y-m-d H:i:s', strtotime('now') - \Config\Security::$apiLifetimeSessionCreate * 60)])->execute();

Line exceeds 120 characters; contains 167 characters
Open

            $dbCommand->delete($row['session'], ['<', 'changed', date('Y-m-d H:i:s', strtotime('now') - \Config\Security::$apiLifetimeSessionUpdate * 60)])->execute();

Spaces must be used to indent lines; tabs are not allowed
Open

                OSSMail_Logout_Model::logutUserById($userId);

Spaces must be used to indent lines; tabs are not allowed
Open

    {

Spaces must be used to indent lines; tabs are not allowed
Open

            if (!isset($row['session'])) {

Spaces must be used to indent lines; tabs are not allowed
Open

                    'user_name' => $userName,

Spaces must be used to indent lines; tabs are not allowed
Open

        } else {

Spaces must be used to indent lines; tabs are not allowed
Open

            }

Spaces must be used to indent lines; tabs are not allowed
Open

                    'userid' => $userId,

Spaces must be used to indent lines; tabs are not allowed
Open

                    'status' => 'Automatic signed off'

Class name "Vtiger_SessionCleaner_Cron" is not in camel caps format
Open

class Vtiger_SessionCleaner_Cron extends \App\CronHandler

There are no issues that match your filters.

Category
Status