YetiForceCompany/YetiForceCRM

View on GitHub
modules/Vtiger/actions/Pagination.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

Missing class import via use statement (line '55', column '19').
Open

        $response = new Vtiger_Response();
Severity: Minor
Found in modules/Vtiger/actions/Pagination.php by phpmd

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

            throw new \App\Exceptions\NoPermitted('LBL_PERMISSION_DENIED', 406);
Severity: Minor
Found in modules/Vtiger/actions/Pagination.php by phpmd

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

            $listViewModel->set('advancedConditions', \App\Condition::validAdvancedConditions($advancedConditions));
Severity: Minor
Found in modules/Vtiger/actions/Pagination.php by phpmd

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

        $currentUserPrivilegesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();
Severity: Minor
Found in modules/Vtiger/actions/Pagination.php by phpmd

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

        $searchParams = App\Condition::validSearchParams($moduleName, $request->getArray('search_params'));
Severity: Minor
Found in modules/Vtiger/actions/Pagination.php by phpmd

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_ListView_Model' in method 'getTotalCount'.
Open

        $listViewModel = Vtiger_ListView_Model::getInstance($moduleName, $viewName);
Severity: Minor
Found in modules/Vtiger/actions/Pagination.php by phpmd

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

    public function getTotalCount(App\Request $request)
    {
        $moduleName = $request->getModule();
        $viewName = $request->getByType('viewname', 2);
        $listViewModel = Vtiger_ListView_Model::getInstance($moduleName, $viewName);
Severity: Minor
Found in modules/Vtiger/actions/Pagination.php by phpmd

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

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

        if ($advancedConditions = $request->has('advancedConditions') ? $request->getArray('advancedConditions') : []) {
Severity: Critical
Found in modules/Vtiger/actions/Pagination.php by sonar-php

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.

Argument 1 (mixed) is string but \Users_Privileges_Model::hasModulePermission() takes int defined at /code/modules/Users/models/Privileges.php:101
Open

        if (!$currentUserPrivilegesModel->hasModulePermission($request->getModule())) {
Severity: Minor
Found in modules/Vtiger/actions/Pagination.php by phan

Call to method parseBaseSearchParamsToCondition from undeclared class \App\QueryGenerator (Did you mean class \Tests\App\QueryGenerator)
Open

        $listViewModel->set('search_params', $listViewModel->getQueryGenerator()->parseBaseSearchParamsToCondition($searchParams));
Severity: Critical
Found in modules/Vtiger/actions/Pagination.php by phan

Avoid excessively long variable names like $currentUserPrivilegesModel. Keep variable name length under 20.
Open

        $currentUserPrivilegesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();
Severity: Minor
Found in modules/Vtiger/actions/Pagination.php by phpmd

LongVariable

Since: 0.2

Detects when a field, formal or local variable is declared with a long name.

Example

class Something {
    protected $reallyLongIntName = -3; // VIOLATION - Field
    public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
        $otherReallyLongName = -5; // VIOLATION - Local
        for ($interestingIntIndex = 0; // VIOLATION - For
             $interestingIntIndex < 10;
             $interestingIntIndex++ ) {
        }
    }
}

Source https://phpmd.org/rules/naming.html#longvariable

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

class Vtiger_Pagination_Action extends Vtiger_BasicAjax_Action

The class Vtiger_Pagination_Action is not named in CamelCase.
Open

class Vtiger_Pagination_Action extends Vtiger_BasicAjax_Action
{
    use \App\Controller\ExposeMethod;

    /**
Severity: Minor
Found in modules/Vtiger/actions/Pagination.php by phpmd

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

     * @throws \App\Exceptions\NoPermitted

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

    use \App\Controller\ExposeMethod;

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 (!$currentUserPrivilegesModel->hasModulePermission($request->getModule())) {

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

        $currentUserPrivilegesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();

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

            throw new \App\Exceptions\NoPermitted('LBL_PERMISSION_DENIED', 406);

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

        if (empty($searchParams) || !\is_array($searchParams)) {

Line exceeds 120 characters; contains 131 characters
Open

        $listViewModel->set('search_params', $listViewModel->getQueryGenerator()->parseBaseSearchParamsToCondition($searchParams));

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

        $totalCount = (int) $listViewModel->getListViewCount();

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

        $this->exposeMethod('getTotalCount');

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

    public function getTotalCount(App\Request $request)

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

        $searchParams = App\Condition::validSearchParams($moduleName, $request->getArray('search_params'));

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

        $listViewModel = Vtiger_ListView_Model::getInstance($moduleName, $viewName);

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

            $searchParams = [];

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

        $listViewModel->set('search_params', $listViewModel->getQueryGenerator()->parseBaseSearchParamsToCondition($searchParams));

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

    {

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

        $moduleName = $request->getModule();

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

        if ($advancedConditions = $request->has('advancedConditions') ? $request->getArray('advancedConditions') : []) {

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

            'totalCount' => $totalCount,

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->setResult($data);

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

        $viewName = $request->getByType('viewname', 2);

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

    }

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

     * Function to check 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

    }

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

            $listViewModel->set('advancedConditions', \App\Condition::validAdvancedConditions($advancedConditions));

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

        }

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

class Vtiger_Pagination_Action extends Vtiger_BasicAjax_Action

There are no issues that match your filters.

Category
Status