crocodic-studio/crudbooster

View on GitHub

Showing 160 of 160 total issues

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

        if (! CRUDBooster::isRead() && $this->global_privilege == false) {
            CRUDBooster::insertLog(cbLang("log_try_edit", [
                'name' => $row->{$this->title_field},
                'module' => CRUDBooster::getCurrentModule()->name,
            ]));
Severity: Major
Found in src/controllers/PrivilegesController.php and 5 other locations - About 30 mins to fix
src/controllers/CBController.php on lines 1277..1280
src/controllers/CBController.php on lines 1713..1719
src/controllers/ModulsController.php on lines 754..757
src/controllers/PrivilegesController.php on lines 133..136
src/controllers/PrivilegesController.php on lines 197..203

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

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

Avoid too many return statements within this method.
Open

        return $next($request);
Severity: Major
Found in src/middlewares/CBBackend.php - About 30 mins to fix

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

            if (substr($fieldName, 0, 3) == 'id_') {
                $table = substr($fieldName, 3);
            } elseif (substr($fieldName, -3) == '_id') {
                $table = substr($fieldName, 0, (strlen($fieldName) - 3));
            }
    Severity: Minor
    Found in src/helpers/CRUDBooster.php and 1 other location - About 30 mins to fix
    src/helpers/CRUDBooster.php on lines 1005..1009

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

    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

    Avoid too many return statements within this method.
    Open

                return new Mailqueues;
    Severity: Major
    Found in src/CRUDBoosterServiceProvider.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

                      return Response::file(storage_path('app/'.$fullFilePath), $headers);
      Severity: Major
      Found in src/controllers/FileController.php - About 30 mins to fix

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

                if (substr($fieldName, 0, 3) == 'id_') {
                    $table = substr($fieldName, 3);
                } elseif (substr($fieldName, -3) == '_id') {
                    $table = substr($fieldName, 0, (strlen($fieldName) - 3));
                }
        Severity: Minor
        Found in src/helpers/CRUDBooster.php and 1 other location - About 30 mins to fix
        src/helpers/CRUDBooster.php on lines 1016..1020

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

        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

        Avoid too many return statements within this method.
        Open

                    return $result;
        Severity: Major
        Found in src/controllers/ApiController.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                              return redirect($menus->path);
          Severity: Major
          Found in src/middlewares/CBBackend.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                                return redirect()->action($action);
            Severity: Major
            Found in src/middlewares/CBBackend.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                                  return redirect()->action($menus->path);
              Severity: Major
              Found in src/middlewares/CBBackend.php - About 30 mins to fix

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

                    public static function myPrivilege()
                    {
                        $roles = Session::get('admin_privileges_roles');
                        if ($roles) {
                            foreach ($roles as $role) {
                Severity: Minor
                Found in src/helpers/CRUDBooster.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

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

                    public static function listTables()
                    {
                        $tables = [];
                        $multiple_db = config('crudbooster.MULTIPLE_DATABASE_MODULE');
                        $multiple_db = ($multiple_db) ? $multiple_db : [];
                Severity: Minor
                Found in src/helpers/CRUDBooster.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

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

                    public function postSaveMenu()
                    {
                        $post = Request::input('menus');
                        $isActive = Request::input('isActive');
                        $post = json_decode($post, true);
                Severity: Minor
                Found in src/controllers/MenusController.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

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

                    public function handle()
                    {
                
                        $this->header();
                
                
                Severity: Minor
                Found in src/commands/CrudboosterInstallationCommand.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

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

                    public static function timeAgo($datetime_to, $datetime_from = null, $full = false)
                    {
                        $datetime_from = ($datetime_from) ?: date('Y-m-d H:i:s');
                        $now = new \DateTime;
                        if ($datetime_from != '') {
                Severity: Minor
                Found in src/helpers/CRUDBooster.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

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

                    public function getViewComponent($componentID)
                    {
                
                        $component = DB::table('cms_statistic_components')->where('componentID', $componentID)->first();
                        $command = 'layout';
                Severity: Minor
                Found in src/controllers/StatisticBuilderController.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

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

                    public static function uploadBase64($value, $id = null)
                    {
                        if (! self::myId()) {
                            $userID = 0;
                        } else {
                Severity: Minor
                Found in src/helpers/CRUDBooster.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

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

                    public function postDoUploadImportData()
                    {
                        $this->cbLoader();
                        if (Request::hasFile('userfile')) {
                            $file = Request::file('userfile');
                Severity: Minor
                Found in src/controllers/CBController.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

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

                    protected function registerSeedsFrom($path)
                    {
                        foreach (glob("$path/*.php") as $filename)
                        {
                            include $filename;
                Severity: Minor
                Found in src/CRUDBoosterServiceProvider.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

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

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

                Severity
                Category
                Status
                Source
                Language