YetiForceCompany/YetiForceCRM

View on GitHub
modules/Documents/actions/MassAdd.php

Summary

Maintainability
A
1 hr
Test Coverage
F
0%

process accesses the super-global variable $_FILES.
Open

    public function process(App\Request $request)
    {
        $moduleName = $request->getModule();
        $nameFiles = $request->getArray('nameFile', 'Text');
        $ids = [];
Severity: Minor
Found in modules/Documents/actions/MassAdd.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

Method process has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function process(App\Request $request)
    {
        $moduleName = $request->getModule();
        $nameFiles = $request->getArray('nameFile', 'Text');
        $ids = [];
Severity: Minor
Found in modules/Documents/actions/MassAdd.php - About 1 hr to fix

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

            $response = new Vtiger_Response();
    Severity: Minor
    Found in modules/Documents/actions/MassAdd.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 '21', column '14').
    Open

                throw new \App\Exceptions\NoPermitted('LBL_PERMISSION_DENIED', 406);
    Severity: Minor
    Found in modules/Documents/actions/MassAdd.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 'Vtiger_Record_Model' in method 'process'.
    Open

                    $recordModel = Vtiger_Record_Model::getCleanInstance($moduleName);
    Severity: Minor
    Found in modules/Documents/actions/MassAdd.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\Privilege' in method 'checkPermission'.
    Open

            if (!\App\Privilege::isPermitted($request->getModule(), 'CreateView')) {
    Severity: Minor
    Found in modules/Documents/actions/MassAdd.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\User' in method 'process'.
    Open

                    $recordModel->set('assigned_user_id', App\User::getCurrentUserId());
    Severity: Minor
    Found in modules/Documents/actions/MassAdd.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

    Reference to undeclared property \Vtiger_Record_Model->file (Did you mean $file)
    Open

                    $recordModel->file = [
    Severity: Minor
    Found in modules/Documents/actions/MassAdd.php by phan

    Call to method getCurrentUserId from undeclared class \App\User (Did you mean class \Tests\App\User)
    Open

                    $recordModel->set('assigned_user_id', App\User::getCurrentUserId());
    Severity: Critical
    Found in modules/Documents/actions/MassAdd.php by phan

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

    class Documents_MassAdd_Action extends Vtiger_Mass_Action

    The class Documents_MassAdd_Action is not named in CamelCase.
    Open

    class Documents_MassAdd_Action extends Vtiger_Mass_Action
    {
        /** {@inheritdoc} */
        public function checkPermission(App\Request $request)
        {
    Severity: Minor
    Found in modules/Documents/actions/MassAdd.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

            $nameFiles = $request->getArray('nameFile', 'Text');

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

            $response->setResult($ids);

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

        }

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

                    $recordModel->set('filelocationtype', 'I');

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

        {

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

                    $recordModel->set('notes_title', $fieldModel->getDBValue($nameFiles[$i], $recordModel));

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

                    $ids[$recordModel->getId()] = $recordModel->getName();

    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

                        'type' => $file['type'][$i],

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

                        'tmp_name' => $file['tmp_name'][$i],

    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

                    ];

    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

            $ids = [];

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

                        'size' => $file['size'][$i],

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

                    $recordModel->save();

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

                $countFiles = \count($file['name']);

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

                for ($i = 0; $i < $countFiles; ++$i) {

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

                        'error' => $file['error'][$i],

    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

            $moduleName = $request->getModule();

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

            foreach ($_FILES as $file) {

    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

        public function process(App\Request $request)

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

                        'name' => $file['name'][$i],

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

                    $recordModel->set('filestatus', true);

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

                    $recordModel->file = [

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

                    $recordModel = Vtiger_Record_Model::getCleanInstance($moduleName);

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

                    $fieldModel = $recordModel->getModule()->getField('notes_title')->getUITypeModel();

    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 (!\App\Privilege::isPermitted($request->getModule(), 'CreateView')) {

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

                    $fieldModel->validate($nameFiles[$i], true);

    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

                    $recordModel->set('assigned_user_id', App\User::getCurrentUserId());

    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 "Documents_MassAdd_Action" is not in camel caps format
    Open

    class Documents_MassAdd_Action extends Vtiger_Mass_Action

    There are no issues that match your filters.

    Category
    Status