YetiForceCompany/YetiForceCRM

View on GitHub
modules/Rss/actions/Save.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%

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

            throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);
Severity: Minor
Found in modules/Rss/actions/Save.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 '24', column '19').
Open

        $response = new Vtiger_Response();
Severity: Minor
Found in modules/Rss/actions/Save.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\Language' in method 'process'.
Open

            $response->setResult(['success' => true, 'message' => \App\Language::translate('JS_RSS_SUCCESSFULLY_SAVED', $moduleName), 'id' => $recordModel->getId()]);
Severity: Minor
Found in modules/Rss/actions/Save.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

        $currentUserModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();
Severity: Minor
Found in modules/Rss/actions/Save.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\Language' in method 'process'.
Open

            $response->setResult(['success' => false, 'message' => \App\Language::translate('JS_INVALID_RSS_URL', $moduleName)]);
Severity: Minor
Found in modules/Rss/actions/Save.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 'Rss_Record_Model' in method 'process'.
Open

        $recordModel = Rss_Record_Model::getCleanInstance($moduleName);
Severity: Minor
Found in modules/Rss/actions/Save.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

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 {
            $response->setResult(['success' => false, 'message' => \App\Language::translate('JS_INVALID_RSS_URL', $moduleName)]);
        }
Severity: Minor
Found in modules/Rss/actions/Save.php by phpmd

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

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

        if (!$currentUserModel->hasModulePermission($request->getModule())) {
Severity: Minor
Found in modules/Rss/actions/Save.php by phan

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

class Rss_Save_Action extends Vtiger_Save_Action
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

The class Rss_Save_Action is not named in CamelCase.
Open

class Rss_Save_Action extends Vtiger_Save_Action
{
    public function checkPermission(App\Request $request)
    {
        $currentUserModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();
Severity: Minor
Found in modules/Rss/actions/Save.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

            throw new \App\Exceptions\NoPermittedToRecord('ERR_NO_PERMISSIONS_FOR_THE_RECORD', 406);
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        $result = $recordModel->validateRssUrl($url);
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

            $response->setResult(['success' => true, 'message' => \App\Language::translate('JS_RSS_SUCCESSFULLY_SAVED', $moduleName), 'id' => $recordModel->getId()]);
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

    {
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

            $response->setResult(['success' => false, 'message' => \App\Language::translate('JS_INVALID_RSS_URL', $moduleName)]);
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        $moduleName = $request->getModule();
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        $url = $request->getByType('feedurl', \App\Purifier::URL);
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        }
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        if (!$currentUserModel->hasModulePermission($request->getModule())) {
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        $response = new Vtiger_Response();
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

Line exceeds 120 characters; contains 166 characters
Open

            $response->setResult(['success' => true, 'message' => \App\Language::translate('JS_RSS_SUCCESSFULLY_SAVED', $moduleName), 'id' => $recordModel->getId()]);
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        $response->emit();
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        } else {
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

    }
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

    public function checkPermission(App\Request $request)
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        if ($result) {
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        }
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

    {
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        $recordModel = Rss_Record_Model::getCleanInstance($moduleName);
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

        $currentUserModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

    public function process(App\Request $request)
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

            $recordModel->saveRecord($url);
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

    }
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

Line exceeds 120 characters; contains 129 characters
Open

            $response->setResult(['success' => false, 'message' => \App\Language::translate('JS_INVALID_RSS_URL', $moduleName)]);
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

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

class Rss_Save_Action extends Vtiger_Save_Action
Severity: Minor
Found in modules/Rss/actions/Save.php by phpcodesniffer

There are no issues that match your filters.

Category
Status