crocodic-studio/crudbooster

View on GitHub

Showing 160 of 160 total issues

Method checkRequirements has 68 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private function checkRequirements()
    {
        $this->info('System Requirements Checking:');
        $system_failed = 0;
        $laravel = app();
Severity: Major
Found in src/commands/CrudboosterUpdateCommand.php - About 2 hrs to fix

    Method postStep4 has 64 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function postStep4()
        {
            $this->cbLoader();
    
            $post = Request::all();
    Severity: Major
    Found in src/controllers/ModulsController.php - About 2 hrs to fix

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

                  try {
                      switch ($menu->type) {
                          case 'Route':
                              $url = route($menu->path);
                              break;
      Severity: Major
      Found in src/helpers/CRUDBooster.php and 1 other location - About 2 hrs to fix
      src/helpers/CRUDBooster.php on lines 483..504

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

      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

                          try {
                              switch ($c->type) {
                                  case 'Route':
                                      $url = route($c->path);
                                      break;
      Severity: Major
      Found in src/helpers/CRUDBooster.php and 1 other location - About 2 hrs to fix
      src/helpers/CRUDBooster.php on lines 451..473

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

      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 sidebarMenu has 58 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public static function sidebarMenu()
          {
              $menu_active = DB::table('cms_menus')->whereRaw("cms_menus.id IN (select id_cms_menus from cms_menus_privileges where id_cms_privileges = '".self::myPrivilegeId()."')")->where('parent_id', 0)->where('is_active', 1)->where('is_dashboard', 0)->orderby('sorting', 'asc')->select('cms_menus.*')->get();
      
              foreach ($menu_active as &$menu) {
      Severity: Major
      Found in src/helpers/CRUDBooster.php - About 2 hrs to fix

        Method cbInit has 57 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function cbInit()
            {
                $this->table = "cms_email_templates";
                $this->primary_key = "id";
                $this->title_field = "name";
        Severity: Major
        Found in src/controllers/EmailTemplatesController.php - About 2 hrs to fix

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

              function getDownloadPostman()
              {
                  $this->cbLoader();
                  $data = [];
                  $data['variables'] = [];
          Severity: Minor
          Found in src/controllers/ApiCustomController.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

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

              public function postStep4()
              {
                  $this->cbLoader();
          
                  $post = Request::all();
          Severity: Minor
          Found in src/controllers/ModulsController.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

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

              function rrmdir($dir) {
                  if (is_dir($dir)) {
                      $objects = scandir($dir);
                      foreach ($objects as $object) {
                          if ($object != "." && $object != "..") {
          Severity: Minor
          Found in src/helpers/Helper.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 cbLoader has 56 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function cbLoader()
              {
                  $this->cbInit();
          
                  $this->checkHideForm();
          Severity: Major
          Found in src/controllers/CBController.php - About 2 hrs to fix

            Method postStep2 has 56 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function postStep2()
                {
                    $this->cbLoader();
            
                    $module = CRUDBooster::getCurrentModule();
            Severity: Major
            Found in src/controllers/ModulsController.php - About 2 hrs to fix

              Method postSaveApiCustom has 55 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  function postSaveApiCustom()
                  {
                      $this->cbLoader();
                      $posts = Request::all();
              
              
              Severity: Major
              Found in src/controllers/ApiCustomController.php - About 2 hrs to fix

                Method getDownloadPostman has 54 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    function getDownloadPostman()
                    {
                        $this->cbLoader();
                        $data = [];
                        $data['variables'] = [];
                Severity: Major
                Found in src/controllers/ApiCustomController.php - About 2 hrs to fix

                  Method postStep3 has 54 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public function postStep3()
                      {
                          $this->cbLoader();
                  
                          $module = CRUDBooster::getCurrentModule();
                  Severity: Major
                  Found in src/controllers/ModulsController.php - About 2 hrs to fix

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

                                if ($table3 && $column3) {
                                    $table3PK = CB::pk($table3);
                                    $rows->join($table3, $table3.'.'.$table3PK, '=', $table2.'.'.$column2);
                                    $columns = CRUDBooster::getTableColumns($table3);
                                    foreach ($columns as $col) {
                    Severity: Major
                    Found in src/controllers/CBController.php and 1 other location - About 2 hrs to fix
                    src/controllers/CBController.php on lines 796..805

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

                    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 ($table2 && $column2) {
                                    $table2PK = CB::pk($table2);
                                    $rows->join($table2, $table2.'.'.$table2PK, '=', $table1.'.'.$column1);
                                    $columns = CRUDBooster::getTableColumns($table2);
                                    foreach ($columns as $col) {
                    Severity: Major
                    Found in src/controllers/CBController.php and 1 other location - About 2 hrs to fix
                    src/controllers/CBController.php on lines 807..816

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

                    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

                    Function postStep3 has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public function postStep3()
                        {
                            $this->cbLoader();
                    
                            $module = CRUDBooster::getCurrentModule();
                    Severity: Minor
                    Found in src/controllers/ModulsController.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

                    Function uploadFile has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public static function uploadFile($name, $encrypt = false, $resize_width = null, $resize_height = null, $id = null)
                        {
                            if (Request::hasFile($name)) {
                                if (! self::myId()) {
                                    $userID = 0;
                    Severity: Minor
                    Found in src/helpers/CRUDBooster.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

                    Function cbInit has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public function cbInit()
                        {
                            $this->table = 'cms_moduls';
                            $this->primary_key = 'id';
                            $this->title_field = "name";
                    Severity: Minor
                    Found in src/controllers/ModulsController.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

                    Method sendEmail has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public static function sendEmail($config = [])
                        {
                    
                            \Config::set('mail.driver', self::getSetting('smtp_driver'));
                            \Config::set('mail.host', self::getSetting('smtp_host'));
                    Severity: Minor
                    Found in src/helpers/CRUDBooster.php - About 1 hr to fix
                      Severity
                      Category
                      Status
                      Source
                      Language