modxcms/revolution

View on GitHub
core/model/modx/sources/mods3mediasource.class.php

Summary

Maintainability
F
1 wk
Test Coverage

File mods3mediasource.class.php has 956 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/*
 * This file is part of MODX Revolution.
 *
 * Copyright (c) MODX, LLC. All Rights Reserved.
Severity: Major
Found in core/model/modx/sources/mods3mediasource.class.php - About 2 days to fix

    Function getContainerList has a Cognitive Complexity of 61 (exceeds 5 allowed). Consider refactoring.
    Open

        public function getContainerList($path) {
            $properties = $this->getPropertyList();
            $list = $this->getS3ObjectList($path);
            $editAction = $this->getEditActionId();
    
    
    Severity: Minor
    Found in core/model/modx/sources/mods3mediasource.class.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

    Function getObjectsInContainer has a Cognitive Complexity of 55 (exceeds 5 allowed). Consider refactoring.
    Open

        public function getObjectsInContainer($path) {
            $properties = $this->getPropertyList();
            $list = $this->getS3ObjectList($path);
            $editAction = $this->getEditActionId();
    
    
    Severity: Minor
    Found in core/model/modx/sources/mods3mediasource.class.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

    Method getContentType has 197 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function getContentType($ext) {
            $contentType = 'application/octet-stream';
            $mimeTypes = array(
                '323' => 'text/h323',
                'acx' => 'application/internet-property-stream',
    Severity: Major
    Found in core/model/modx/sources/mods3mediasource.class.php - About 7 hrs to fix

      Method getObjectsInContainer has 157 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function getObjectsInContainer($path) {
              $properties = $this->getPropertyList();
              $list = $this->getS3ObjectList($path);
              $editAction = $this->getEditActionId();
      
      
      Severity: Major
      Found in core/model/modx/sources/mods3mediasource.class.php - About 6 hrs to fix

        Method getContainerList has 130 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function getContainerList($path) {
                $properties = $this->getPropertyList();
                $list = $this->getS3ObjectList($path);
                $editAction = $this->getEditActionId();
        
        
        Severity: Major
        Found in core/model/modx/sources/mods3mediasource.class.php - About 5 hrs to fix

          modS3MediaSource has 28 functions (exceeds 20 allowed). Consider refactoring.
          Open

          class modS3MediaSource extends modMediaSource implements modMediaSourceInterface {
              /** @var AmazonS3 $driver */
              public $driver;
              /** @var string $bucket */
              public $bucket;
          Severity: Minor
          Found in core/model/modx/sources/mods3mediasource.class.php - About 3 hrs to fix

            Method getDefaultProperties has 78 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function getDefaultProperties() {
                    return array(
                        'url' => array(
                            'name' => 'url',
                            'desc' => 'prop_s3.url_desc',
            Severity: Major
            Found in core/model/modx/sources/mods3mediasource.class.php - About 3 hrs to fix

              Function getListContextMenu has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function getListContextMenu($file,$isDir,array $fileArray) {
                      $menu = array();
                      if (!$isDir) { /* files */
                          if ($this->hasPermission('file_update')) {
                              if ($fileArray['page'] != null) {
              Severity: Minor
              Found in core/model/modx/sources/mods3mediasource.class.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

              Method getListContextMenu has 66 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function getListContextMenu($file,$isDir,array $fileArray) {
                      $menu = array();
                      if (!$isDir) { /* files */
                          if ($this->hasPermission('file_update')) {
                              if ($fileArray['page'] != null) {
              Severity: Major
              Found in core/model/modx/sources/mods3mediasource.class.php - About 2 hrs to fix

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

                    public function uploadObjectsToContainer($container,array $objects = array()) {
                        if ($container == '/' || $container == '.') $container = '';
                
                        $maxFileSize = $this->xpdo->getOption('upload_maxsize',null,1048576);
                
                
                Severity: Minor
                Found in core/model/modx/sources/mods3mediasource.class.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

                Method moveObject has 38 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function moveObject($from,$to,$point = 'append') {
                        $this->xpdo->lexicon->load('source');
                        $success = false;
                
                        if (substr(strrev($from),0,1) == '/') {
                Severity: Minor
                Found in core/model/modx/sources/mods3mediasource.class.php - About 1 hr to fix

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

                      public function uploadObjectsToContainer($container,array $objects = array()) {
                          if ($container == '/' || $container == '.') $container = '';
                  
                          $maxFileSize = $this->xpdo->getOption('upload_maxsize',null,1048576);
                  
                  
                  Severity: Minor
                  Found in core/model/modx/sources/mods3mediasource.class.php - About 1 hr to fix

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

                        public function moveObject($from,$to,$point = 'append') {
                            $this->xpdo->lexicon->load('source');
                            $success = false;
                    
                            if (substr(strrev($from),0,1) == '/') {
                    Severity: Minor
                    Found in core/model/modx/sources/mods3mediasource.class.php - About 45 mins to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Function getS3ObjectList has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public function getS3ObjectList($dir) {
                            $c['delimiter'] = '/';
                            if (!empty($dir) && $dir != '/') { $c['prefix'] = $dir; }
                    
                            $list = array();
                    Severity: Minor
                    Found in core/model/modx/sources/mods3mediasource.class.php - About 35 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

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

                                                if ($size[0] > $size[1]) {
                                                    // landscape
                                                    $imageQueryWidth = $size[0] >= $imageWidth ? $imageWidth : $size[0];
                                                    $imageQueryHeight = 0;
                                                    $imageWidth = $imageQueryWidth;
                    Severity: Major
                    Found in core/model/modx/sources/mods3mediasource.class.php and 1 other location - About 1 day to fix
                    core/model/modx/sources/modfilemediasource.class.php on lines 1127..1147

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

                    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 ($size[0] > $size[1]) {
                                                // landscape
                                                $imageWidth = $size[0] >= $imageWidth ? $imageWidth : $size[0];
                                                $imageHeight = round($size[1] * ($imageWidth / $size[0]));
                                                $thumbWidth = $size[0] >= $thumbWidth ? $thumbWidth : $size[0];
                    Severity: Major
                    Found in core/model/modx/sources/mods3mediasource.class.php and 1 other location - About 7 hrs to fix
                    core/model/modx/sources/modfilemediasource.class.php on lines 1109..1121

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

                    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 ($ext == 'svg') {
                                                $svgString = @file_get_contents($bases['pathAbsoluteWithPath'].$url);
                                                preg_match('/(<svg[^>]*\swidth=")([\d\.]+)([a-z]*)"/si', $svgString, $svgWidth);
                                                preg_match('/(<svg[^>]*\sheight=")([\d\.]+)([a-z]*)"/si', $svgString, $svgHeight);
                                                preg_match('/(<svg[^>]*\sviewBox=")([\d\.]+(?:,|\s)[\d\.]+(?:,|\s)([\d\.]+)(?:,|\s)([\d\.]+))"/si', $svgString, $svgViewbox);
                    Severity: Major
                    Found in core/model/modx/sources/mods3mediasource.class.php and 1 other location - About 5 hrs to fix
                    core/model/modx/sources/modfilemediasource.class.php on lines 235..283

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

                    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 ($size[0] > $size[1]) {
                                                        // landscape
                                                        $imageQueryWidth = $size[0] >= $imageWidth ? $imageWidth : $size[0];
                                                        $imageQueryHeight = 0;
                                                        $imageWidth = $imageQueryWidth;
                    Severity: Major
                    Found in core/model/modx/sources/mods3mediasource.class.php and 1 other location - About 3 hrs to fix
                    core/model/modx/sources/modfilemediasource.class.php on lines 254..266

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

                    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 (!empty($svgViewbox)) {
                                                // get width and height from viewbox attribute
                                                $size[0] = round($svgViewbox[3]);
                                                $size[1] = round($svgViewbox[4]);
                                            } elseif (!empty($svgWidth) && !empty($svgHeight)) {
                    Severity: Major
                    Found in core/model/modx/sources/mods3mediasource.class.php and 1 other location - About 1 hr to fix
                    core/model/modx/sources/modfilemediasource.class.php on lines 1099..1107

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

                    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

                                'thumbnailType' => array(
                                    'name' => 'thumbnailType',
                                    'desc' => 'prop_s3.thumbnailType_desc',
                                    'type' => 'list',
                                    'options' => array(
                    Severity: Minor
                    Found in core/model/modx/sources/mods3mediasource.class.php and 1 other location - About 40 mins to fix
                    core/model/modx/sources/modfilemediasource.class.php on lines 1298..1310

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

                    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