Admidio/admidio

View on GitHub
adm_program/system/classes/TableAccess.php

Summary

Maintainability
F
1 wk
Test Coverage

Function save has a Cognitive Complexity of 54 (exceeds 5 allowed). Consider refactoring.
Open

    public function save(bool $updateFingerPrint = true): bool
    {
        if (!$this->columnsValueChanged && $this->dbColumns[$this->keyColumnName] !== '') {
            return false;
        }
Severity: Minor
Found in adm_program/system/classes/TableAccess.php - About 1 day 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

File TableAccess.php has 439 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
use Ramsey\Uuid\Uuid;
use Admidio\Exception;

/**
Severity: Minor
Found in adm_program/system/classes/TableAccess.php - About 6 hrs to fix

    Function getValue has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
    Open

        public function getValue(string $columnName, string $format = '')
        {
            global $gSettingsManager;
    
            $columnValue = '';
    Severity: Minor
    Found in adm_program/system/classes/TableAccess.php - About 4 hrs 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

    Method save has 73 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function save(bool $updateFingerPrint = true): bool
        {
            if (!$this->columnsValueChanged && $this->dbColumns[$this->keyColumnName] !== '') {
                return false;
            }
    Severity: Major
    Found in adm_program/system/classes/TableAccess.php - About 2 hrs to fix

      Function setValue has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
      Open

          public function setValue(string $columnName, $newValue, bool $checkValue = true): bool
          {
              if (!array_key_exists($columnName, $this->dbColumns)) {
                  throw new Exception('Column ' . $columnName . ' does not exists in table ' . $this->tableName . '!');
              }
      Severity: Minor
      Found in adm_program/system/classes/TableAccess.php - About 2 hrs 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

      Function readData has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function readData(string $sqlWhereCondition, array $queryParams = array()): bool
          {
              $sqlAdditionalTables = '';
      
              // create sql to connect additional tables to the select statement
      Severity: Minor
      Found in adm_program/system/classes/TableAccess.php - About 2 hrs 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

      TableAccess has 21 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class TableAccess
      {
          /**
           * @var array<string,string> Array with sub array that contains additional tables and their connected fields that should be selected when data is read
           */
      Severity: Minor
      Found in adm_program/system/classes/TableAccess.php - About 2 hrs to fix

        Method getValue has 53 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function getValue(string $columnName, string $format = '')
            {
                global $gSettingsManager;
        
                $columnValue = '';
        Severity: Major
        Found in adm_program/system/classes/TableAccess.php - About 2 hrs to fix

          Function setColumnsInfos has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function setColumnsInfos()
              {
                  // create array with base table and all connected tables
                  $tables = array($this->tableName);
          
          
          Severity: Minor
          Found in adm_program/system/classes/TableAccess.php - About 1 hr 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

          Method setValue has 40 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function setValue(string $columnName, $newValue, bool $checkValue = true): bool
              {
                  if (!array_key_exists($columnName, $this->dbColumns)) {
                      throw new Exception('Column ' . $columnName . ' does not exists in table ' . $this->tableName . '!');
                  }
          Severity: Minor
          Found in adm_program/system/classes/TableAccess.php - About 1 hr to fix

            Method readData has 37 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                protected function readData(string $sqlWhereCondition, array $queryParams = array()): bool
                {
                    $sqlAdditionalTables = '';
            
                    // create sql to connect additional tables to the select statement
            Severity: Minor
            Found in adm_program/system/classes/TableAccess.php - About 1 hr to fix

              Function getNameOfLastEditingUser has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function getNameOfLastEditingUser(bool $linkToProfile = true): string
                  {
                      global $gDb, $gProfileFields, $gL10n, $gSettingsManager, $gValidLogin;
              
                      $nameOfLastEditingUser = '';
              Severity: Minor
              Found in adm_program/system/classes/TableAccess.php - About 1 hr 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

              Function getNameOfCreatingUser has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function getNameOfCreatingUser(bool $linkToProfile = true): string
                  {
                      global $gDb, $gProfileFields, $gL10n, $gSettingsManager, $gValidLogin;
              
                      $nameOfCreatingUser = '';
              Severity: Minor
              Found in adm_program/system/classes/TableAccess.php - About 1 hr 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

              Function readDataByColumns has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function readDataByColumns(array $columnArray): bool
                  {
                      // initialize the object, so that all fields are empty
                      $this->clear();
              
              
              Severity: Minor
              Found in adm_program/system/classes/TableAccess.php - About 1 hr 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

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

                  public function getNameOfLastEditingUser(bool $linkToProfile = true): string
                  {
                      global $gDb, $gProfileFields, $gL10n, $gSettingsManager, $gValidLogin;
              
                      $nameOfLastEditingUser = '';
              Severity: Major
              Found in adm_program/system/classes/TableAccess.php and 1 other location - About 1 day to fix
              adm_program/system/classes/TableAccess.php on lines 206..232

              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 264.

              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

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

                  public function getNameOfCreatingUser(bool $linkToProfile = true): string
                  {
                      global $gDb, $gProfileFields, $gL10n, $gSettingsManager, $gValidLogin;
              
                      $nameOfCreatingUser = '';
              Severity: Major
              Found in adm_program/system/classes/TableAccess.php and 1 other location - About 1 day to fix
              adm_program/system/classes/TableAccess.php on lines 242..268

              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 264.

              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

              There are no issues that match your filters.

              Category
              Status