ampache/ampache

View on GitHub
src/Module/Api/Daap_Api.php

Summary

Maintainability
F
4 days
Test Coverage

check_session accesses the super-global variable $_GET.
Open

    private static function check_session($code): void
    {
        // Purge expired sessions
        $sql = "DELETE FROM `daap_session` WHERE `creationdate` < ?";
        Dba::write($sql, array(
Severity: Minor
Found in src/Module/Api/Daap_Api.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

Function databases has a Cognitive Complexity of 60 (exceeds 5 allowed). Consider refactoring.
Open

    public static function databases($input): bool
    {
        $output = '';
        // Database list
        if (count($input) == 0) {
Severity: Minor
Found in src/Module/Api/Daap_Api.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 Daap_Api.php has 713 lines of code (exceeds 500 allowed). Consider refactoring.
Open

<?php

declare(strict_types=0);

/**
Severity: Major
Found in src/Module/Api/Daap_Api.php - About 7 hrs to fix

    Daap_Api has 31 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Daap_Api
    {
        public const AMPACHEID_SMARTPL = 400000000;
        public const BASE_LIBRARY      = 0;
    
    
    Severity: Minor
    Found in src/Module/Api/Daap_Api.php - About 3 hrs to fix

      Function tlv_songs has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
      Open

          private static function tlv_songs($songs, $meta): string
          {
              if (array_search('all', $meta) > -1) {
                  $meta = self::$metas;
              }
      Severity: Minor
      Found in src/Module/Api/Daap_Api.php - About 3 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

      The class Daap_Api has 29 non-getter- and setter-methods. Consider refactoring Daap_Api to keep number of methods under 25.
      Open

      class Daap_Api
      {
          public const AMPACHEID_SMARTPL = 400000000;
          public const BASE_LIBRARY      = 0;
      
      
      Severity: Minor
      Found in src/Module/Api/Daap_Api.php by phpmd

      TooManyMethods

      Since: 0.1

      A class with too many methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

      By default it ignores methods starting with 'get' or 'set'.

      The default was changed from 10 to 25 in PHPMD 2.3.

      Example

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

      The class Daap_Api has 15 public methods. Consider refactoring Daap_Api to keep number of public methods under 10.
      Open

      class Daap_Api
      {
          public const AMPACHEID_SMARTPL = 400000000;
          public const BASE_LIBRARY      = 0;
      
      
      Severity: Minor
      Found in src/Module/Api/Daap_Api.php by phpmd

      TooManyPublicMethods

      Since: 0.1

      A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

      By default it ignores methods starting with 'get' or 'set'.

      Example

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

      The class Daap_Api has an overall complexity of 119 which is very high. The configured complexity threshold is 50.
      Open

      class Daap_Api
      {
          public const AMPACHEID_SMARTPL = 400000000;
          public const BASE_LIBRARY      = 0;
      
      
      Severity: Minor
      Found in src/Module/Api/Daap_Api.php by phpmd

      Function check_auth has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          private static function check_auth($code = ''): void
          {
              $authenticated = false;
              $pass          = AmpConfig::get('daap_pass');
              // DAAP password specified, need to authenticate the client
      Severity: Minor
      Found in src/Module/Api/Daap_Api.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

      Avoid too many return statements within this method.
      Open

                      return 0;
      Severity: Major
      Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                        return 9;
        Severity: Major
        Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                          return 11;
          Severity: Major
          Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                            return 7;
            Severity: Major
            Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                                  return self::tlv_version($code, $value);
              Severity: Major
              Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                                return 10;
                Severity: Major
                Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                          return '';
                  Severity: Major
                  Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                    return 12;
                    Severity: Major
                    Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                          return self::tlv_list($code, $value);
                      Severity: Major
                      Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                        return 6;
                        Severity: Major
                        Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                              return self::tlv_date($code, $value);
                          Severity: Major
                          Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                        return $code . pack("N", strlen((string)$value)) . $value;
                            Severity: Major
                            Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                                  return self::tlv_string($code, $value);
                              Severity: Major
                              Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                                return 8;
                                Severity: Major
                                Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

                                  Avoid too many return statements within this method.
                                  Open

                                                  return 5;
                                  Severity: Major
                                  Found in src/Module/Api/Daap_Api.php - About 30 mins to fix

                                    Function follow_stream has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                                    Open

                                        public static function follow_stream($url): void
                                        {
                                            set_time_limit(0);
                                            ob_end_clean();
                                            if (function_exists('curl_version')) {
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.php - About 25 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

                                    The method databases() has 129 lines of code. Current threshold is set to 100. Avoid really long methods.
                                    Open

                                        public static function databases($input): bool
                                        {
                                            $output = '';
                                            // Database list
                                            if (count($input) == 0) {
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.php by phpmd

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

                                        public static function databases($input): bool
                                        {
                                            $output = '';
                                            // Database list
                                            if (count($input) == 0) {
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.php by phpmd

                                    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

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

                                        private static function tlv($tag, $value): string
                                        {
                                            if (array_key_exists($tag, self::$tags)) {
                                                $code = self::$tags[$tag]['code'];
                                                switch (self::$tags[$tag]['type']) {
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.php by phpmd

                                    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

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

                                        private static function get_type_id($type): int
                                        {
                                            switch ($type) {
                                                case 'byte':
                                                    return 1;
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.php by phpmd

                                    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

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

                                        private static function tlv_songs($songs, $meta): string
                                        {
                                            if (array_search('all', $meta) > -1) {
                                                $meta = self::$metas;
                                            }
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.php by phpmd

                                    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

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

                                            } else {
                                                $output .= self::tlv('dmap.loginrequired', 0);
                                            }
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

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

                                            } else {
                                                $sql        = "SELECT * FROM `daap_session` WHERE `id` = ?;";
                                                $db_results = Dba::read($sql, array(
                                                    Core::get_get('session-id')
                                                ));
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

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

                                            } else {
                                                debug_event(self::class, 'Unknown DAAP tag `' . $tag . '`.', 3);
                                            }
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

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

                                                        } else {
                                                            $meta   = explode(',', strtolower(Core::get_get('meta')));
                                                            $output = self::tlv('dmap.status', 200);
                                                            $output .= self::tlv('dmap.updatetype', 0);
                                                            $items    = $playlist->get_items();
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

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

                                                        } else {
                                                            $playlist = new Playlist($object_id);
                                                        }
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

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

                                                    } else {
                                                        if ($object_id > Daap_Api::AMPACHEID_SMARTPL) {
                                                            $object_id -= Daap_Api::AMPACHEID_SMARTPL;
                                                            $playlist = new Search($object_id, 'song');
                                                        } else {
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

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

                                            } else {
                                                debug_event(self::class, 'Malformed `' . $tag . '` version `' . $value . '`.', 3);
                                            }
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

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

                                            } else {
                                                // Stream media using http redirect if no curl support
                                                header("Location: " . $url);
                                            }
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

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

                                            } else {
                                                $authenticated = true;
                                            }
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

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

                                            } else {
                                                header("Content-type: text/plain");
                                                header("Content-length: 0");
                                            }
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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 unused parameters such as '$curl'.
                                    Open

                                        public static function output_body($curl, $data): int
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

                                    Avoid unused parameters such as '$input'.
                                    Open

                                        public static function server_info($input): void
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

                                    Avoid unused parameters such as '$input'.
                                    Open

                                        public static function content_codes($input): void
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

                                    Avoid unused parameters such as '$input'.
                                    Open

                                        public static function login($input): void
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

                                    Avoid unused parameters such as '$curl'.
                                    Open

                                        public static function output_header($curl, $header): int
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

                                    Avoid unused parameters such as '$input'.
                                    Open

                                        public static function update($input): void
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

                                    FIXME found
                                    Open

                                            $output .= self::tlv('dmap.authenticationmethod', 2); // FIXME im not shre about this value "2"?
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.php by fixme

                                    FIXME found
                                    Open

                                            $output .= self::tlv('dmap.supportspersistentids', 1); // FIXME im not sure if ampache supports it
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.php by fixme

                                    syntax error, unexpected 'array' (T_ARRAY), expecting function (T_FUNCTION) or const (T_CONST)
                                    Open

                                        public static array $metas = [
                                    Severity: Critical
                                    Found in src/Module/Api/Daap_Api.php by phan

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

                                        public static array $metas = [
                                            'dmap.itemid',
                                            'dmap.itemname',
                                            'dmap.itemkind',
                                            'dmap.persistentid',
                                    Severity: Major
                                    Found in src/Module/Api/Daap_Api.php and 2 other locations - About 1 hr to fix
                                    src/Module/Catalog/SubsonicClient.php on lines 58..92
                                    src/Repository/Model/Browse.php on lines 49..83

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

                                    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

                                    The class Daap_Api is not named in CamelCase.
                                    Open

                                    class Daap_Api
                                    {
                                        public const AMPACHEID_SMARTPL = 400000000;
                                        public const BASE_LIBRARY      = 0;
                                    
                                    
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.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

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

                                    class Daap_Api
                                    Severity: Minor
                                    Found in src/Module/Api/Daap_Api.php by phpcodesniffer

                                    There are no issues that match your filters.

                                    Category
                                    Status