YetiForceCompany/YetiForceCRM

View on GitHub
app/Mail/ScannerEngine/Imap.php

Summary

Maintainability
A
3 hrs
Test Coverage
F
0%

Function getEmailsFields has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    public function getEmailsFields(?string $searchModuleName = null): array
    {
        $cacheKey = $searchModuleName ?? '-';
        if (isset($this->emailsFieldsCache[$cacheKey])) {
            return $this->emailsFieldsCache[$cacheKey];
Severity: Minor
Found in app/Mail/ScannerEngine/Imap.php - About 45 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 '75', column '18').
Open

            $query = (new \App\Db\Query())->select(['ossmailviewid'])->from('vtiger_ossmailview')->where(['cid' => $this->getUniqueId()])->limit(1);
Severity: Minor
Found in app/Mail/ScannerEngine/Imap.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 '77', column '18').
Open

            $query = (new \App\Db\Query())->select(['ossmailviewid'])
Severity: Minor
Found in app/Mail/ScannerEngine/Imap.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

The method findRelatedRecords has a boolean flag argument $onlyId, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function findRelatedRecords(bool $onlyId = false): array
Severity: Minor
Found in app/Mail/ScannerEngine/Imap.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

The method getMailCrmId uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
Open

        } else {
            $query = (new \App\Db\Query())->select(['ossmailviewid'])
                ->from('vtiger_ossmailview')
                ->where(['uid' => $this->get('message_id'), 'rc_user' => $this->getAccountOwner()])->limit(1);
        }
Severity: Minor
Found in app/Mail/ScannerEngine/Imap.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

Avoid using static access to class '\OSSMailScanner_Record_Model' in method 'getEmailsFields'.
Open

        foreach (\OSSMailScanner_Record_Model::getEmailSearchList() as $field) {
Severity: Minor
Found in app/Mail/ScannerEngine/Imap.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

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

        if ($this->has('mailCrmId')) {
Severity: Critical
Found in app/Mail/ScannerEngine/Imap.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.

Avoid unused parameters such as '$request'.
Open

    public function initFromRequest(\App\Request $request)
Severity: Minor
Found in app/Mail/ScannerEngine/Imap.php by phpmd

UnusedFormalParameter

Since: 0.2

Avoid passing parameters to methods or constructors and then not using those parameters.

Example

class Foo
{
    private function bar($howdy)
    {
        // $howdy is not used
    }
}

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

Call to undeclared method \App\Mail\ScannerEngine\Imap::getUniqueId
Open

            $query = (new \App\Db\Query())->select(['ossmailviewid'])->from('vtiger_ossmailview')->where(['cid' => $this->getUniqueId()])->limit(1);
Severity: Critical
Found in app/Mail/ScannerEngine/Imap.php by phan

Call to undeclared method \App\Mail\ScannerEngine\Imap::getAccountOwner
Open

                ->where(['uid' => $this->get('message_id'), 'rc_user' => $this->getAccountOwner()])->limit(1);
Severity: Critical
Found in app/Mail/ScannerEngine/Imap.php by phan

Reference to static property ONE_MAIL_FOR_MULTIPLE_RECIPIENTS from undeclared class \Config\Modules\OSSMailScanner
Open

        if (empty($this->get('message_id')) || \Config\Modules\OSSMailScanner::$ONE_MAIL_FOR_MULTIPLE_RECIPIENTS) {
Severity: Critical
Found in app/Mail/ScannerEngine/Imap.php by phan

Call to undeclared method \App\Db\Query::select
Open

            $query = (new \App\Db\Query())->select(['ossmailviewid'])
Severity: Critical
Found in app/Mail/ScannerEngine/Imap.php by phan

Call to undeclared method \App\Db\Query::select
Open

            $query = (new \App\Db\Query())->select(['ossmailviewid'])->from('vtiger_ossmailview')->where(['cid' => $this->getUniqueId()])->limit(1);
Severity: Critical
Found in app/Mail/ScannerEngine/Imap.php by phan

Returning type string but getEmailsFields() is declared to return array
Open

            return $this->emailsFieldsCache[$cacheKey];
Severity: Minor
Found in app/Mail/ScannerEngine/Imap.php by phan

Assigning array<string>&gt;[]&gt;|array<string>&gt;[]&gt;|array<string></string></string></string> to property but \App\Mail\ScannerEngine\Imap->emailsFieldsCache is string[]
Open

        $this->emailsFieldsCache[$cacheKey] = $return;
Severity: Minor
Found in app/Mail/ScannerEngine/Imap.php by phan

Call to method getEmailSearchList from undeclared class \OSSMailScanner_Record_Model
Open

        foreach (\OSSMailScanner_Record_Model::getEmailSearchList() as $field) {
Severity: Critical
Found in app/Mail/ScannerEngine/Imap.php by phan

Identical blocks of code found in 2 locations. Consider refactoring.
Open

        if (empty($this->get('message_id')) || \Config\Modules\OSSMailScanner::$ONE_MAIL_FOR_MULTIPLE_RECIPIENTS) {
            $query = (new \App\Db\Query())->select(['ossmailviewid'])->from('vtiger_ossmailview')->where(['cid' => $this->getUniqueId()])->limit(1);
        } else {
            $query = (new \App\Db\Query())->select(['ossmailviewid'])
                ->from('vtiger_ossmailview')
Severity: Major
Found in app/Mail/ScannerEngine/Imap.php and 1 other location - About 2 hrs to fix
modules/OSSMail/models/Mail.php on lines 213..217

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 130.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

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

            return $this->get('mailCrmId');

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

        $cacheKey = $searchModuleName ?? '-';

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 findRelatedRecordsBySubject(): array

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 0;

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($this->get('message_id')) || \Config\Modules\OSSMailScanner::$ONE_MAIL_FOR_MULTIPLE_RECIPIENTS) {

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

        foreach (\OSSMailScanner_Record_Model::getEmailSearchList() as $field) {

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

            $field = explode('=', $field);

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 getActions(): array

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

    }

Line exceeds 120 characters; contains 148 characters
Open

            $query = (new \App\Db\Query())->select(['ossmailviewid'])->from('vtiger_ossmailview')->where(['cid' => $this->getUniqueId()])->limit(1);

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

        $this->set('mailCrmId', $mailCrmId);

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 = [];

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

            if (empty($field[2])) {

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

    public function findRelatedRecordsByEmail(): array

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

        if (isset($this->emailsFieldsCache[$cacheKey])) {

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

            if ($searchModuleName && $searchModuleName !== $field[1]) {

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

    public function initFromRequest(\App\Request $request)

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

     * @var string

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

        return [];

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

        return [];

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 getMailType(): int

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

    {

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

        return [];

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 [];

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

        return [];

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

            return $this->emailsFieldsCache[$cacheKey];

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

     * Scanner engine name.

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 ($this->has('mailCrmId')) {

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 0;

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[$field[1]][$field[2]][] = $field[0];

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

     * Initialize with request data.

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

     * @return void

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

                $fieldModel = \Vtiger_Module_Model::getInstance($field[1])->getField($field[0]);

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

        $this->emailsFieldsCache[$cacheKey] = $return;

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

    public function getUserId(): int

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

    public function getMailCrmId()

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

                ->where(['uid' => $this->get('message_id'), 'rc_user' => $this->getAccountOwner()])->limit(1);

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 $name = 'Imap';

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

    public function getExceptions(): array

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

            $query = (new \App\Db\Query())->select(['ossmailviewid'])

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

    public function getEmailsFields(?string $searchModuleName = null): array

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

                continue;

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

        $mailCrmId = $query->scalar();

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

    public function findRelatedRecords(bool $onlyId = false): array

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

            $query = (new \App\Db\Query())->select(['ossmailviewid'])->from('vtiger_ossmailview')->where(['cid' => $this->getUniqueId()])->limit(1);

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

                ->from('vtiger_ossmailview')

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

        return $mailCrmId;

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

                $field[2] = $fieldModel->getUIType();

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

        return $return;

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

    }

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

    {

There are no issues that match your filters.

Category
Status