ampache/ampache

View on GitHub
src/Module/Api/Method/GetArtMethod.php

Summary

Maintainability
D
2 days
Test Coverage

Function get_art has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

    public static function get_art(array $input, User $user): bool
    {
        if (!Api::check_parameter($input, array('id', 'type'), self::ACTION)) {
            http_response_code(400);

Severity: Minor
Found in src/Module/Api/Method/GetArtMethod.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

Avoid too many return statements within this method.
Open

        return false;
Severity: Major
Found in src/Module/Api/Method/GetArtMethod.php - About 30 mins to fix

    The method get_art() has a Cyclomatic Complexity of 14. The configured cyclomatic complexity threshold is 10.
    Open

        public static function get_art(array $input, User $user): bool
        {
            if (!Api::check_parameter($input, array('id', 'type'), self::ACTION)) {
                http_response_code(400);
    
    

    CyclomaticComplexity

    Since: 0.1

    Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

    Example

    // Cyclomatic Complexity = 11
    class Foo {
    1   public function example() {
    2       if ($a == $b) {
    3           if ($a1 == $b1) {
                    fiddle();
    4           } elseif ($a2 == $b2) {
                    fiddle();
                } else {
                    fiddle();
                }
    5       } elseif ($c == $d) {
    6           while ($c == $d) {
                    fiddle();
                }
    7        } elseif ($e == $f) {
    8           for ($n = 0; $n < $h; $n++) {
                    fiddle();
                }
            } else {
                switch ($z) {
    9               case 1:
                        fiddle();
                        break;
    10              case 2:
                        fiddle();
                        break;
    11              case 3:
                        fiddle();
                        break;
                    default:
                        fiddle();
                        break;
                }
            }
        }
    }

    Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

    Refactor this function to reduce its Cognitive Complexity from 18 to the 15 allowed.
    Open

        public static function get_art(array $input, User $user): bool

    Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

    See

    Reduce the number of returns of this function 5, down to the maximum allowed 3.
    Open

        public static function get_art(array $input, User $user): bool

    Having too many return statements in a function increases the function's essential complexity because the flow of execution is broken each time a return statement is encountered. This makes it harder to read and understand the logic of the function.

    Noncompliant Code Example

    With the default threshold of 3:

    function myFunction(){ // Noncompliant as there are 4 return statements
      if (condition1) {
        return true;
      } else {
        if (condition2) {
          return false;
        } else {
          return true;
        }
      }
      return false;
    }
    

    Call to method error from undeclared class \Ampache\Module\Api\Api
    Open

                Api::error(sprintf('Bad Request: %s', $type), ErrorCodeEnum::BAD_REQUEST, self::ACTION, 'type', $input['api_format']);
    Severity: Critical
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Call to method extend from undeclared class \Ampache\Module\System\Session
    Open

                Session::extend($input['auth'], 'api');
    Severity: Critical
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Call to method __construct from undeclared class \Ampache\Repository\Model\Song
    Open

                    $song = new Song($item['object_id']);
    Severity: Critical
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Call to method __construct from undeclared class \Ampache\Repository\Model\Song
    Open

                $song      = new Song($item['object_id']);
    Severity: Critical
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Reference to instance property album from undeclared class \Ampache\Repository\Model\Song
    Open

                    $art  = new Art($song->album, 'album');
    Severity: Minor
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Reference to instance property album from undeclared class \Ampache\Repository\Model\Song
    Open

                    $art  = new Art($song->album, 'album');
    Severity: Minor
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Reference to instance property album from undeclared class \Ampache\Repository\Model\Song
    Open

                $art       = new Art($song->album, 'album');
    Severity: Minor
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Call to method __construct from undeclared class \Ampache\Repository\Model\Song
    Open

                    $song = new Song($object_id);
    Severity: Critical
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Call to method __construct from undeclared class \Ampache\Repository\Model\Search
    Open

                $smartlist = new Search($object_id, 'song', $user);
    Severity: Critical
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Call to method check_parameter from undeclared class \Ampache\Module\Api\Api
    Open

            if (!Api::check_parameter($input, array('id', 'type'), self::ACTION)) {
    Severity: Critical
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Parameter $user has undeclared type \Ampache\Repository\Model\User
    Open

        public static function get_art(array $input, User $user): bool
    Severity: Minor
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Call to method get_items from undeclared class \Ampache\Repository\Model\Search
    Open

                $listitems = $smartlist->get_items();
    Severity: Critical
    Found in src/Module/Api/Method/GetArtMethod.php by phan

    Define a constant instead of duplicating this literal "album" 4 times.
    Open

            if (!in_array(strtolower($type), array('song', 'album', 'artist', 'playlist', 'search', 'podcast'))) {

    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.

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

                $art       = new Art($item['object_id'], $item['object_type']);

    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.

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

            if ($type == 'song') {
                if (!Art::has_db($object_id, $type)) {
                    // in most cases the song doesn't have a picture, but the album where it belongs to has
                    // if this is the case, we take the album art
                    $song = new Song($object_id);
    Severity: Major
    Found in src/Module/Api/Method/GetArtMethod.php and 1 other location - About 1 day to fix
    src/Module/Api/Method/Api5/GetArt5Method.php on lines 75..97

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

    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

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

            if ($art->has_db_info($fallback)) {
                header('Access-Control-Allow-Origin: *');
                if ($size && AmpConfig::get('resize_images')) {
                    $dim           = array();
                    $dim['width']  = $size;
    Severity: Major
    Found in src/Module/Api/Method/GetArtMethod.php and 1 other location - About 6 hrs to fix
    src/Module/Api/Method/Api5/GetArt5Method.php on lines 99..121

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

    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

            if (!in_array(strtolower($type), array('song', 'album', 'artist', 'playlist', 'search', 'podcast'))) {
                Api::error(sprintf('Bad Request: %s', $type), ErrorCodeEnum::BAD_REQUEST, self::ACTION, 'type', $input['api_format']);
    
                return false;
            }
    Severity: Minor
    Found in src/Module/Api/Method/GetArtMethod.php and 1 other location - About 30 mins to fix
    src/Module/Api/Method/BrowseMethod.php on lines 78..82

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

    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