luyadev/luya-module-admin

View on GitHub

Showing 503 of 503 total issues

Function addImage has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

    public function addImage($fileId, $filterId = 0, $throwException = false)
    {
        try {
            // if the filterId is provded as a string the filter will be looked up by its name in the get filters array list.
            if (is_string($filterId) && !is_numeric($filterId)) {
Severity: Minor
Found in src/storage/BaseFileSystemStorage.php - About 1 hr to fix

Cognitive Complexity

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

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

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

Further reading

Function generateClassName has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

    protected function generateClassName($tableName, $useSchemaName = null)
    {
        if (isset($this->classNames[$tableName])) {
            return $this->classNames[$tableName];
        }
Severity: Minor
Found in src/base/BaseCrudController.php - About 1 hr to fix

Cognitive Complexity

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

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

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

Further reading

Function actionIndex has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

    public function actionIndex()
    {
        $tempName = null;
        if ($this->identifier === null) {
            $this->identifier = Inflector::variablize($this->prompt('Enter the filter identifier: (e.g. profilePicture)', ['required' => true, 'pattern' => '/^[a-zA-Z0-9]+$/i', 'error' => 'The filter identifer can only contain a-z,A-Z,0-9']));
Severity: Minor
Found in src/commands/FilterController.php - About 1 hr to fix

Cognitive Complexity

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

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

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

Further reading

Function controller has 39 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        controller: ['$scope', function ($scope) {
            if ($scope.model === undefined) {
                $scope.model = [];
            }

Severity: Minor
Found in src/resources/js/formdirectives.js - About 1 hr to fix

    Function controller has 39 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            controller: ['$scope', function ($scope) {
    
                if ($scope.model === undefined || !$scope.model) {
                    if ($scope.initvalue) {
                        $scope.model = $scope.initvalue
    Severity: Minor
    Found in src/resources/js/formdirectives.js - About 1 hr to fix

      Function template has 39 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              template: function () {
                  return '' +
                      '<div class="form-group form-side-by-side" ng-class="{\'input--hide-label\': i18n}">' +
                      '<div class="form-side form-side-label">' +
                      '<label ng-if="label">{{label}}</label>' +
      Severity: Minor
      Found in src/resources/js/formdirectives.js - About 1 hr to fix

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

                if ($scope.dateMinLimit &&
                  !$scope.isSelectableMinYear($scope.year) ||
                  !$scope.isSelectableMinDate($scope.year + '/' + $scope.monthNumber + '/' + $scope.day)) {
        
                  resetToMinDate();
        src/resources/vendorlibs/angularjs-datepicker/angular-datepicker.js on lines 992..997

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

        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 ($scope.dateMaxLimit &&
                  !$scope.isSelectableMaxYear($scope.year) ||
                  !$scope.isSelectableMaxDate($scope.year + '/' + $scope.monthNumber + '/' + $scope.day)) {
        
                  resetToMaxDate();
        src/resources/vendorlibs/angularjs-datepicker/angular-datepicker.js on lines 985..990

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

        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

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

            public function run()
            {
                $this->refresh('thumbnail', [
                    'name' => 'Thumbnail',
                    'imagine_name' => 'thumbnail',
        Severity: Minor
        Found in src/importers/FilterImporter.php - About 1 hr to fix

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

              protected function parseDocBlockToArrays(PhpDocReflection $reflection)
              {
                  $rows = [
                      'texts' => [],
                      'return' => [], // @return <type> <description>
          Severity: Minor
          Found in src/openapi/phpdoc/PhpDocParser.php - About 1 hr to fix

            Function template has 37 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    template: function () {
                        return '' +
                            '<div class="form-group form-side-by-side" ng-class="{\'input--hide-label\': i18n}">' +
                            '<div class="form-side form-side-label">' +
                            '<label for="{{id}}">{{label}}</label>' +
            Severity: Minor
            Found in src/resources/js/formdirectives.js - About 1 hr to fix

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

                  public function actionUser()
                  {
                      while (true) {
                          $email = $this->prompt('User Email:');
                          if (!empty(User::findByEmail($email))) {
              Severity: Minor
              Found in src/commands/SetupController.php - About 1 hr to fix

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

                    public function safeUp()
                    {
                        // user login agent
                        $this->addColumn('{{%admin_user_login}}', 'user_agent', $this->string());
                
                
                Severity: Minor
                Found in src/migrations/m200128_141129_v3_update.php - About 1 hr to fix

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

                                if (dateFormat) {
                                  date = localDateTimestamp(thisInput[0].value.toString(), dateFormat);
                                } else {
                                  date = new Date(thisInput[0].value.toString());
                                }
                  src/resources/vendorlibs/angularjs-datepicker/angular-datepicker.js on lines 449..453
                  src/resources/vendorlibs/angularjs-datepicker/angular-datepicker.js on lines 726..730

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

                  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 3 locations. Consider refactoring.
                  Open

                              if (dateFormat) {
                                date = localDateTimestamp(thisInput[0].value.toString(), dateFormat);
                              } else {
                                date = new Date(thisInput[0].value.toString());
                              }
                  src/resources/vendorlibs/angularjs-datepicker/angular-datepicker.js on lines 411..415
                  src/resources/vendorlibs/angularjs-datepicker/angular-datepicker.js on lines 726..730

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

                  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 3 locations. Consider refactoring.
                  Open

                                    if (dateFormat) {
                                      date = localDateTimestamp(thisInput[0].value.toString(), dateFormat);
                                    } else {
                                      date = new Date(thisInput[0].value.toString());
                                    }
                  src/resources/vendorlibs/angularjs-datepicker/angular-datepicker.js on lines 411..415
                  src/resources/vendorlibs/angularjs-datepicker/angular-datepicker.js on lines 449..453

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

                  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

                  Method actionTwofaToken has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public function actionTwofaToken()
                      {
                          if (($lockout = $this->sessionBruteForceLock(Yii::$app->session->get('secureId')))) {
                              return $this->sendArray(false, [Module::t('login_async_submission_limit_reached', ['time' =>  Yii::$app->formatter->asRelativeTime($lockout)])]);
                          }
                  Severity: Minor
                  Found in src/controllers/LoginController.php - About 1 hr to fix

                    Method actionReset has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public function actionReset()
                        {
                            if (!$this->module->resetPassword) {
                                throw new ForbiddenHttpException();
                            }
                    Severity: Minor
                    Found in src/controllers/LoginController.php - About 1 hr to fix

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

                          public function onAfterListFind($event)
                          {
                              $value = $event->sender->getAttribute($this->name);
                              if (!$this->i18n) {
                                  $value = $this->jsonDecode($value);
                      Severity: Minor
                      Found in src/ngrest/plugins/CheckboxList.php - About 1 hr to fix

                      Cognitive Complexity

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

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

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

                      Further reading

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

                          public function onBeforeSave($event)
                          {
                              // if its not i18n casted field we have to serialize the file array as json and abort further event excution.
                              if (!$this->i18n) {
                                  // as it could be an assigned array from the frontend model assigne via a form, we verify if the array contains a value key.
                      Severity: Minor
                      Found in src/ngrest/plugins/CheckboxList.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

                      Severity
                      Category
                      Status
                      Source
                      Language