YetiForceCompany/YetiForceCRM

View on GitHub
modules/ServiceContracts/actions/PolicySaveAjax.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Missing class import via use statement (line '49', 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

Missing class import via use statement (line '25', column '14').
Open

            throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);

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 '19', column '14').
Open

            throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);

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

        $targetModule = \App\Module::getModuleId($request->getByType('targetModule', 'Alnum'));

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

            if ($rowConditions = \App\Json::decode($request->getArray('conditions', 'Text')[$rowIndex])) {

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

            } else {
                $data['conditions'] = '';
            }

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

                $data['tabid'] = \App\Module::getModuleId($request->getByType('targetModule', 'Alnum'));

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 'Users_Privileges_Model' in method 'checkPermission'.
Open

        $userPrivilegesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();

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

                $result = ['id' => \App\Utils\ServiceContracts::saveSlaPolicy($data)];

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\Condition' in method 'saveCustomRecords'.
Open

                $data['conditions'] = \App\Json::encode(\App\Condition::getConditionsFromRequest($rowConditions));

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\Utils\ServiceContracts' in method 'saveCustomRecords'.
Open

        \App\Utils\ServiceContracts::deleteSlaPolicy($crmId, $targetModule);

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 assigning values to variables in if clauses and the like (line '70', column '8').
Open

    public function saveCustomRecords(App\Request $request)
    {
        $crmId = $request->getInteger('record');
        $targetModule = \App\Module::getModuleId($request->getByType('targetModule', 'Alnum'));
        $result = [];

IfStatementAssignment

Since: 2.7.0

Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

Example

class Foo
{
    public function bar($flag)
    {
        if ($foo = 'bar') { // possible typo
            // ...
        }
        if ($baz = 0) { // always false
            // ...
        }
    }
}

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

Avoid using static access to class '\App\Json' in method 'saveCustomRecords'.
Open

                $data['conditions'] = \App\Json::encode(\App\Condition::getConditionsFromRequest($rowConditions));

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\Utils\ServiceContracts' in method 'saveCustomRecords'.
Open

            $data['id'] = \App\Utils\ServiceContracts::saveSlaPolicy($data, false);

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 'Vtiger_Record_Model' in method 'checkPermission'.
Open

        $record = Vtiger_Record_Model::getInstanceById($request->getInteger('record'), $request->getModule());

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 "policy_type" 3 times.
Open

        $data = ['policy_type' => 0];

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 "timePeriod" 3 times.
Open

            $data['reaction_time'] = $request->getArray('reaction_time', 'timePeriod')[$rowIndex];

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

        if ($request->isEmpty('record')) {

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 "conditions" 3 times.
Open

            if ($rowConditions = \App\Json::decode($request->getArray('conditions', 'Text')[$rowIndex])) {

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.

Avoid unused local variables such as '$rowId'.
Open

        foreach ($request->getArray('rowid', 'Integer') as $rowIndex => $rowId) {

UnusedLocalVariable

Since: 0.2

Detects when a local variable is declared and/or assigned, but not used.

Example

class Foo {
    public function doSomething()
    {
        $i = 5; // Unused
    }
}

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

Cannot assign void return value
Open

            $data['id'] = \App\Utils\ServiceContracts::saveSlaPolicy($data, false);

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

class ServiceContracts_PolicySaveAjax_Action extends \App\Controller\Action

The class ServiceContracts_PolicySaveAjax_Action is not named in CamelCase.
Open

class ServiceContracts_PolicySaveAjax_Action extends \App\Controller\Action
{
    /** {@inheritdoc} */
    public function checkPermission(App\Request $request)
    {

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

        $userPrivilegesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();

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

            case 1: // template

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

                $data['sla_policy_id'] = $request->getInteger('policyId');

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

        }

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

                $data['tabid'] = \App\Module::getModuleId($request->getByType('targetModule', 'Alnum'));

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

            $data = [];

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

                $data['conditions'] = '';

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

            $data['idle_time'] = $request->getArray('idle_time', 'timePeriod')[$rowIndex];

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

    public function checkPermission(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

                $data['crmid'] = $request->getInteger('record');

Line exceeds 120 characters; contains 237 characters
Open

        if (!$record->isViewable() || !$userPrivilegesModel->hasModuleActionPermission($record->getModuleName(), 'ServiceContractsSla') || !$userPrivilegesModel->hasModulePermission($request->getByType('target', \App\Purifier::ALNUM))) {

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

        $result = [];

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

        foreach ($request->getArray('rowid', 'Integer') as $rowIndex => $rowId) {

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

            if ($rowConditions = \App\Json::decode($request->getArray('conditions', 'Text')[$rowIndex])) {

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

        if (!$record->isViewable() || !$userPrivilegesModel->hasModuleActionPermission($record->getModuleName(), 'ServiceContractsSla') || !$userPrivilegesModel->hasModulePermission($request->getByType('target', \App\Purifier::ALNUM))) {

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

                $result = ['id' => \App\Utils\ServiceContracts::saveSlaPolicy($data)];

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

                break;

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

    public function saveCustomRecords(App\Request $request)

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

        \App\Utils\ServiceContracts::deleteSlaPolicy($crmId, $targetModule);

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

            $data['crmid'] = $crmId;

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

            $data['tabid'] = $targetModule;

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

            throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);

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

        }

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

                // no break

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

        $data = ['policy_type' => 0];

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

            case 2: // custom

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

    {

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

            case 0:

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

            $data['policy_type'] = 2;

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

            $result[] = $data;

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

        return $result;

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

            } else {

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

            $data['resolve_time'] = $request->getArray('resolve_time', 'timePeriod')[$rowIndex];

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

        $record = Vtiger_Record_Model::getInstanceById($request->getInteger('record'), $request->getModule());

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

        switch ($request->getInteger('policyType')) {

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

     * Save custom records.

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

        $crmId = $request->getInteger('record');

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

            $data['business_hours'] = implode(',', $request->getArray('business_hours', 'Integer')[$rowIndex]);

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

    {

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

                $data['policy_type'] = 1;

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

            default:

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

        $response->setResult($result);

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

            $data['reaction_time'] = $request->getArray('reaction_time', 'timePeriod')[$rowIndex];

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

            $data['id'] = \App\Utils\ServiceContracts::saveSlaPolicy($data, false);

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

                $data['conditions'] = \App\Json::encode(\App\Condition::getConditionsFromRequest($rowConditions));

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->isEmpty('record')) {

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

            throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);

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

     *

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

     * @return array

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

        $targetModule = \App\Module::getModuleId($request->getByType('targetModule', 'Alnum'));

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

        $result = [];

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

                $result = $this->saveCustomRecords($request);

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

                break;

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

        }

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

    }

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

class ServiceContracts_PolicySaveAjax_Action extends \App\Controller\Action

There are no issues that match your filters.

Category
Status