YetiForceCompany/YetiForceCRM

View on GitHub
modules/Settings/SharingAccess/actions/SaveAjax.php

Summary

Maintainability
A
35 mins
Test Coverage
F
0%

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

    public function process(App\Request $request)
    {
        $modulePermissions = $request->getArray('permissions', 'Integer');
        $modulePermissions[4] = $modulePermissions[6];

Severity: Minor
Found in modules/Settings/SharingAccess/actions/SaveAjax.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 '35', column '19').
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 'Settings_SharingAccess_Module_Model' in method 'process'.
Open

            $moduleModel = Settings_SharingAccess_Module_Model::getInstance($tabId);

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

        Settings_SharingAccess_Module_Model::recalculateSharingRules();

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

        Settings_Vtiger_Tracker_Model::addDetail($prevValues, $postValues);

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

                    \App\Privilege::setUpdater(\App\Module::getModuleName($tabId));

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

                    \App\Privilege::setUpdater(\App\Module::getModuleName($tabId));

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

            $permissionOld = (int) $moduleModel->get('permission');

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_SharingAccess_SaveAjax_Action extends Settings_Vtiger_Save_Action

The class Settings_SharingAccess_SaveAjax_Action is not named in CamelCase.
Open

class Settings_SharingAccess_SaveAjax_Action extends Settings_Vtiger_Save_Action
{
    public function process(App\Request $request)
    {
        $modulePermissions = $request->getArray('permissions', 'Integer');

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

                $prevValues[$tabId] = $permissionOld;

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

                    \App\Privilege::setUpdater(\App\Module::getModuleName($tabId));

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

        $postValues = [];

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

            $permissionOld = (int) $moduleModel->get('permission');

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

    public function process(App\Request $request)

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

            $permission = (int) $permission;

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 (3 === $permissionOld || 3 == (int) $moduleModel->get('permission')) {

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

            $moduleModel->save();

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

        $modulePermissions[4] = $modulePermissions[6];

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

            if ($permissionOld !== $permission) {

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

        Settings_Vtiger_Tracker_Model::addDetail($prevValues, $postValues);

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

            $moduleModel = Settings_SharingAccess_Module_Model::getInstance($tabId);

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

            $moduleModel->set('permission', $permission);

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

        Settings_SharingAccess_Module_Model::recalculateSharingRules();

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

        $modulePermissions = $request->getArray('permissions', 'Integer');

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

                $postValues[$tabId] = (int) $moduleModel->get('permission');

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->setEmitType(Vtiger_Response::$EMIT_JSON);

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

        $prevValues = [];

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

        foreach ($modulePermissions as $tabId => $permission) {

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

                }

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

class Settings_SharingAccess_SaveAjax_Action extends Settings_Vtiger_Save_Action

There are no issues that match your filters.

Category
Status