YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/MailIntegration/actions/Activate.php

Summary

Maintainability
A
1 hr
Test Coverage
F
0%

Function activate has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public function activate(App\Request $request)
    {
        if ('outlook' === $request->getByType('source')) {
            $security = new \App\ConfigFile('security');
            $security->set('allowedScriptDomains', array_values(array_unique(array_merge((\Config\Security::$allowedScriptDomains), [
Severity: Minor
Found in modules/Settings/MailIntegration/actions/Activate.php - About 35 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

Function deactivate has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    public function deactivate(App\Request $request)
    {
        if ('outlook' === $request->getByType('source')) {
            $security = new \App\ConfigFile('security');
            $security->set('allowedScriptDomains', array_values(array_diff((\Config\Security::$allowedScriptDomains), [
Severity: Minor
Found in modules/Settings/MailIntegration/actions/Activate.php - About 35 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

Missing class import via use statement (line '43', column '24').
Open

            $batchMethod = (new \App\BatchMethod(['method' => '\vtlib\Module::toggleModuleAccess', 'params' => [$moduleName, false]]));

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 '33', column '20').
Open

            $security = new \App\ConfigFile('security');

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 '67', column '20').
Open

            $security = new \App\ConfigFile('security');

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 '77', column '24').
Open

            $batchMethod = (new \App\BatchMethod(['method' => '\vtlib\Module::toggleModuleAccess', 'params' => [$moduleName, true]]));

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 '21').
Open

                $response = new Vtiger_Response();

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 '50', column '21').
Open

                $response = new Vtiger_Response();

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 '\App\Json' in method 'deactivate'.
Open

                $batchMethod->set('params', \App\Json::encode([$moduleName, false]))->save();

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 deactivate uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

            } else {
                header('Location: index.php?parent=Settings&module=MailIntegration&view=Index');
            }

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\Json' in method 'activate'.
Open

                $batchMethod->set('params', \App\Json::encode([$moduleName, true]))->save();

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\Module' in method 'deactivate'.
Open

            if (\App\Module::isModuleActive($moduleName) || $batchMethod->isExists()) {

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 activate uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

            } else {
                header('Location: index.php?parent=Settings&module=MailIntegration&view=Index');
            }

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\Module' in method 'activate'.
Open

            if (!\App\Module::isModuleActive($moduleName) || $batchMethod->isExists()) {

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 "params" 4 times.
Open

            $batchMethod = (new \App\BatchMethod(['method' => '\vtlib\Module::toggleModuleAccess', 'params' => [$moduleName, false]]));

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.

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

class Settings_MailIntegration_Activate_Action extends Settings_Vtiger_Basic_Action

The class Settings_MailIntegration_Activate_Action is not named in CamelCase.
Open

class Settings_MailIntegration_Activate_Action extends Settings_Vtiger_Basic_Action
{
    /** {@inheritdoc} */
    public function __construct()
    {

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

    {

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

     *

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

            $batchMethod = (new \App\BatchMethod(['method' => '\vtlib\Module::toggleModuleAccess', 'params' => [$moduleName, false]]));

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

    {

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

        $this->exposeMethod('activate');

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

     * Activate service.

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

     * @param App\Request $request

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

    /**

Line exceeds 120 characters; contains 133 characters
Open

            $security->set('allowedScriptDomains', array_values(array_unique(array_merge((\Config\Security::$allowedScriptDomains), [

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

            $security->set('cookieSameSite', 'None');

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

     */

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

        parent::__construct();

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

     */

Line exceeds 120 characters; contains 134 characters
Open

            $batchMethod = (new \App\BatchMethod(['method' => '\vtlib\Module::toggleModuleAccess', 'params' => [$moduleName, true]]));

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

                $response->setResult(true);

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

    public function activate(App\Request $request)

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

        if ('outlook' === $request->getByType('source')) {

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

            $security->set('allowedScriptDomains', array_values(array_unique(array_merge((\Config\Security::$allowedScriptDomains), [

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

            $moduleName = 'MailIntegration';

Line exceeds 120 characters; contains 135 characters
Open

            $batchMethod = (new \App\BatchMethod(['method' => '\vtlib\Module::toggleModuleAccess', 'params' => [$moduleName, false]]));

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

            $security->set('cookieSameSite', 'Strict');

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

            $moduleName = 'MailIntegration';

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

                'https://appsforoffice.microsoft.com', 'https://ajax.aspnetcdn.com'

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

    }

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

            ])));

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

                $batchMethod->deleteDuplicate();

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

            $security = new \App\ConfigFile('security');

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

    public function __construct()

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

    }

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

            $security->set('csrfFrameBreakerWindow', 'parent');

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

                $response->emit();

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

            }

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

     * @param App\Request $request

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

            }

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

                $response->emit();

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

            }

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

        }

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

        $this->exposeMethod('deactivate');

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

            $security->create();

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

            if (!\App\Module::isModuleActive($moduleName) || $batchMethod->isExists()) {

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

     * Deactivate service.

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

        if ('outlook' === $request->getByType('source')) {

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

                header('Location: index.php?parent=Settings&module=MailIntegration&view=Index');

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 ($request->isAjax()) {

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

            $security->set('cookieForceHttpOnly', false);

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

                $batchMethod->deleteDuplicate();

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

                $response->setResult(true);

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

            $security->set('csrfFrameBreakerWindow', 'top');

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

            }

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

                $response = new Vtiger_Response();

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

    /**

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

            $security = new \App\ConfigFile('security');

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

            $security->set('cookieForceHttpOnly', true);

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

    public function deactivate(App\Request $request)

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

                $batchMethod->set('params', \App\Json::encode([$moduleName, true]))->save();

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

    {

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

    }

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

                header('Location: index.php?parent=Settings&module=MailIntegration&view=Index');

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

            $security->set('allowedScriptDomains', array_values(array_diff((\Config\Security::$allowedScriptDomains), [

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

            $security->create();

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

            if (\App\Module::isModuleActive($moduleName) || $batchMethod->isExists()) {

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

                $batchMethod->set('params', \App\Json::encode([$moduleName, false]))->save();

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 ($request->isAjax()) {

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

                $response = new Vtiger_Response();

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

                'https://appsforoffice.microsoft.com', 'https://ajax.aspnetcdn.com'

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

            $batchMethod = (new \App\BatchMethod(['method' => '\vtlib\Module::toggleModuleAccess', 'params' => [$moduleName, true]]));

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

     *

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

class Settings_MailIntegration_Activate_Action extends Settings_Vtiger_Basic_Action

There are no issues that match your filters.

Category
Status