mambax7/extgallery

View on GitHub
class/PhotoUploader.php

Summary

Maintainability
D
2 days
Test Coverage

abort accesses the super-global variable $_FILES.
Open

    public function abort($msg = '')
    {
        // remove all uploaded files of *this* request
        if (isset($_FILES)) {
            foreach ($_FILES as $key => $val) {
Severity: Minor
Found in class/PhotoUploader.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

fetchPhoto accesses the super-global variable $_SESSION.
Open

    public function fetchPhoto($file)
    {
        $jupart  = Request::getInt('jupart', 0, 'POST');
        $jufinal = Request::getInt('jufinal', 1, 'POST');
        $md5sums = $_POST['md5sum'][0] ?? null;
Severity: Minor
Found in class/PhotoUploader.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

fetchPhoto accesses the super-global variable $_SESSION.
Open

    public function fetchPhoto($file)
    {
        $jupart  = Request::getInt('jupart', 0, 'POST');
        $jufinal = Request::getInt('jufinal', 1, 'POST');
        $md5sums = $_POST['md5sum'][0] ?? null;
Severity: Minor
Found in class/PhotoUploader.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

abort accesses the super-global variable $_SESSION.
Open

    public function abort($msg = '')
    {
        // remove all uploaded files of *this* request
        if (isset($_FILES)) {
            foreach ($_FILES as $key => $val) {
Severity: Minor
Found in class/PhotoUploader.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

fetchPhoto accesses the super-global variable $_SESSION.
Open

    public function fetchPhoto($file)
    {
        $jupart  = Request::getInt('jupart', 0, 'POST');
        $jufinal = Request::getInt('jufinal', 1, 'POST');
        $md5sums = $_POST['md5sum'][0] ?? null;
Severity: Minor
Found in class/PhotoUploader.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

fetchPhoto accesses the super-global variable $_POST.
Open

    public function fetchPhoto($file)
    {
        $jupart  = Request::getInt('jupart', 0, 'POST');
        $jufinal = Request::getInt('jufinal', 1, 'POST');
        $md5sums = $_POST['md5sum'][0] ?? null;
Severity: Minor
Found in class/PhotoUploader.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

abort accesses the super-global variable $_FILES.
Open

    public function abort($msg = '')
    {
        // remove all uploaded files of *this* request
        if (isset($_FILES)) {
            foreach ($_FILES as $key => $val) {
Severity: Minor
Found in class/PhotoUploader.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 fetchPhoto has a Cognitive Complexity of 42 (exceeds 5 allowed). Consider refactoring.
Open

    public function fetchPhoto($file)
    {
        $jupart  = Request::getInt('jupart', 0, 'POST');
        $jufinal = Request::getInt('jufinal', 1, 'POST');
        $md5sums = $_POST['md5sum'][0] ?? null;
Severity: Minor
Found in class/PhotoUploader.php - About 6 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 fetchPhoto has 85 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function fetchPhoto($file)
    {
        $jupart  = Request::getInt('jupart', 0, 'POST');
        $jufinal = Request::getInt('jufinal', 1, 'POST');
        $md5sums = $_POST['md5sum'][0] ?? null;
Severity: Major
Found in class/PhotoUploader.php - About 3 hrs to fix

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

    class PhotoUploader
    {
        public $uploadDir;
        public $savedDestination;
        public $savedFilename;
    Severity: Minor
    Found in class/PhotoUploader.php by phpmd

    Avoid too many return statements within this method.
    Open

                        return false;
    Severity: Major
    Found in class/PhotoUploader.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

                      return false;
      Severity: Major
      Found in class/PhotoUploader.php - About 30 mins to fix

        Avoid too many return statements within this method.
        Open

                            return false;
        Severity: Major
        Found in class/PhotoUploader.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                  return true;
          Severity: Major
          Found in class/PhotoUploader.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                                return false;
            Severity: Major
            Found in class/PhotoUploader.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              return false;
              Severity: Major
              Found in class/PhotoUploader.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                        return true;
                Severity: Major
                Found in class/PhotoUploader.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                          return false;
                  Severity: Major
                  Found in class/PhotoUploader.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                return false;
                    Severity: Major
                    Found in class/PhotoUploader.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                              return false;
                      Severity: Major
                      Found in class/PhotoUploader.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                                return false;
                        Severity: Major
                        Found in class/PhotoUploader.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                      return false;
                          Severity: Major
                          Found in class/PhotoUploader.php - About 30 mins to fix

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

                                public function _checkFile($tmpDestination)
                                {
                                    //  $imageExtensions = array(IMAGETYPE_GIF => 'gif', IMAGETYPE_JPEG => 'jpeg', IMAGETYPE_JPG => 'jpg', IMAGETYPE_PNG => 'png');
                            
                                    $valid_types = [IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_BMP];
                            Severity: Minor
                            Found in class/PhotoUploader.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 fetchPhoto() has an NPath complexity of 17616. The configured NPath complexity threshold is 200.
                            Open

                                public function fetchPhoto($file)
                                {
                                    $jupart  = Request::getInt('jupart', 0, 'POST');
                                    $jufinal = Request::getInt('jufinal', 1, 'POST');
                                    $md5sums = $_POST['md5sum'][0] ?? null;
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpmd

                            NPathComplexity

                            Since: 0.1

                            The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

                            Example

                            class Foo {
                                function bar() {
                                    // lots of complicated code
                                }
                            }

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

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

                                public function fetchPhoto($file)
                                {
                                    $jupart  = Request::getInt('jupart', 0, 'POST');
                                    $jufinal = Request::getInt('jufinal', 1, 'POST');
                                    $md5sums = $_POST['md5sum'][0] ?? null;
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpmd

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

                                public function fetchPhoto($file)
                                {
                                    $jupart  = Request::getInt('jupart', 0, 'POST');
                                    $jufinal = Request::getInt('jufinal', 1, 'POST');
                                    $md5sums = $_POST['md5sum'][0] ?? null;
                            Severity: Minor
                            Found in class/PhotoUploader.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

                            Remove error control operator '@' on line 202.
                            Open

                                public function _saveFile($tmpDestination, $fileName)
                                {
                                    $this->savedFilename    = $fileName;
                                    $this->savedDestination = $this->uploadDir . $fileName;
                            
                            
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpmd

                            ErrorControlOperator

                            Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

                            Example

                            function foo($filePath) {
                                $file = @fopen($filPath); // hides exceptions
                                $key = @$array[$notExistingKey]; // assigns null to $key
                            }

                            Source http://phpmd.org/rules/cleancode.html#errorcontroloperator

                            Avoid using static access to class '\Xmf\Request' in method 'fetchPhoto'.
                            Open

                                    $jufinal = Request::getInt('jufinal', 1, 'POST');
                            Severity: Minor
                            Found in class/PhotoUploader.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

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

                                            } else {
                                                $this->abort('0 file size');
                            
                                                return false;
                                            }
                            Severity: Minor
                            Found in class/PhotoUploader.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 '\Xmf\Request' in method 'fetchPhoto'.
                            Open

                                    $jupart  = Request::getInt('jupart', 0, 'POST');
                            Severity: Minor
                            Found in class/PhotoUploader.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

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

                                    } else {
                                        // Got a single file upload. Trivial.
                                        if ($this->checkMd5 && $md5sums != \md5_file($tmpname)) {
                                            $this->abort('MD5 checksum mismatch');
                            
                            
                            Severity: Minor
                            Found in class/PhotoUploader.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 local variables such as '$valid_types'.
                            Open

                                    $valid_types = [IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_BMP];
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpmd

                            UnusedLocalVariable

                            Since: 0.2

                            Detects when a local variable is declared and/or assigned, but not used.

                            Example

                            class Foo {
                                public function doSomething()
                                {
                                    $i = 5; // Unused
                                }
                            }

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

                            Avoid unused local variables such as '$key'.
                            Open

                                        foreach ($_FILES as $key => $val) {
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpmd

                            UnusedLocalVariable

                            Since: 0.2

                            Detects when a local variable is declared and/or assigned, but not used.

                            Example

                            class Foo {
                                public function doSomething()
                                {
                                    $i = 5; // Unused
                                }
                            }

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

                            Avoid unused local variables such as '$val'.
                            Open

                                        foreach ($_FILES as $key => $val) {
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpmd

                            UnusedLocalVariable

                            Since: 0.2

                            Detects when a local variable is declared and/or assigned, but not used.

                            Example

                            class Foo {
                                public function doSomething()
                                {
                                    $i = 5; // Unused
                                }
                            }

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

                            Method name "_saveFile" should not be prefixed with an underscore to indicate visibility
                            Open

                                public function _saveFile($tmpDestination, $fileName)
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpcodesniffer

                            Method name "_checkFile" should not be prefixed with an underscore to indicate visibility
                            Open

                                public function _checkFile($tmpDestination)
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpcodesniffer

                            Line exceeds 120 characters; contains 135 characters
                            Open

                                    //  $imageExtensions = array(IMAGETYPE_GIF => 'gif', IMAGETYPE_JPEG => 'jpeg', IMAGETYPE_JPG => 'jpg', IMAGETYPE_PNG => 'png');
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpcodesniffer

                            The variable $valid_types is not named in camelCase.
                            Open

                                public function _checkFile($tmpDestination)
                                {
                                    //  $imageExtensions = array(IMAGETYPE_GIF => 'gif', IMAGETYPE_JPEG => 'jpeg', IMAGETYPE_JPG => 'jpg', IMAGETYPE_PNG => 'png');
                            
                                    $valid_types = [IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_BMP];
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpmd

                            CamelCaseVariableName

                            Since: 0.2

                            It is considered best practice to use the camelCase notation to name variables.

                            Example

                            class ClassName {
                                public function doSomething() {
                                    $data_module = new DataModule();
                                }
                            }

                            Source

                            The method _checkFile is not named in camelCase.
                            Open

                                public function _checkFile($tmpDestination)
                                {
                                    //  $imageExtensions = array(IMAGETYPE_GIF => 'gif', IMAGETYPE_JPEG => 'jpeg', IMAGETYPE_JPG => 'jpg', IMAGETYPE_PNG => 'png');
                            
                                    $valid_types = [IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_BMP];
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpmd

                            CamelCaseMethodName

                            Since: 0.2

                            It is considered best practice to use the camelCase notation to name methods.

                            Example

                            class ClassName {
                                public function get_name() {
                                }
                            }

                            Source

                            The method _saveFile is not named in camelCase.
                            Open

                                public function _saveFile($tmpDestination, $fileName)
                                {
                                    $this->savedFilename    = $fileName;
                                    $this->savedDestination = $this->uploadDir . $fileName;
                            
                            
                            Severity: Minor
                            Found in class/PhotoUploader.php by phpmd

                            CamelCaseMethodName

                            Since: 0.2

                            It is considered best practice to use the camelCase notation to name methods.

                            Example

                            class ClassName {
                                public function get_name() {
                                }
                            }

                            Source

                            There are no issues that match your filters.

                            Category
                            Status