CartoDB/cartodb20

View on GitHub
app/models/carto/permission.rb

Summary

Maintainability
F
4 days
Test Coverage

Method notify_permissions_change has a Cognitive Complexity of 60 (exceeds 5 allowed). Consider refactoring.
Open

  def notify_permissions_change(permissions_changes)
    permissions_changes.each do |c, v|
      # At the moment we just check users permissions
      if c == TYPE_USER
        v.each do |affected_id, perm|
Severity: Minor
Found in app/models/carto/permission.rb - 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

Class Permission has 51 methods (exceeds 20 allowed). Consider refactoring.
Open

class Carto::Permission < ActiveRecord::Base

  class Error < StandardError; end

  DEFAULT_ACL_VALUE = [].freeze
Severity: Major
Found in app/models/carto/permission.rb - About 7 hrs to fix

    File permission.rb has 452 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require 'active_record'
    require_dependency 'cartodb/errors'
    
    class Carto::Permission < ActiveRecord::Base
    
    
    Severity: Minor
    Found in app/models/carto/permission.rb - About 6 hrs to fix

      Method revoke_previous_permissions has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

        def revoke_previous_permissions(entity)
          users = relevant_user_acl_entries(@old_acl.nil? ? [] : @old_acl)
          org = relevant_org_acl_entry(@old_acl.nil? ? [] : @old_acl)
          groups = relevant_groups_acl_entries(@old_acl.nil? ? [] : @old_acl)
          case entity.class.name
      Severity: Minor
      Found in app/models/carto/permission.rb - 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 update_shared_entities has 40 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def update_shared_entities
          e = entity
          # First clean previous sharings
          destroy_shared_entities
          revoke_previous_permissions(e)
      Severity: Minor
      Found in app/models/carto/permission.rb - About 1 hr to fix

        Method notify_permissions_change has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          def notify_permissions_change(permissions_changes)
            permissions_changes.each do |c, v|
              # At the moment we just check users permissions
              if c == TYPE_USER
                v.each do |affected_id, perm|
        Severity: Minor
        Found in app/models/carto/permission.rb - About 1 hr to fix

          Method grant_db_permission has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
          Open

            def grant_db_permission(entity, access, shared_entity)
              if shared_entity.recipient_type == Carto::SharedEntity::RECIPIENT_TYPE_ORGANIZATION
                permission_strategy = Carto::OrganizationPermission.new
              else
                u = Carto::User.find(shared_entity[:recipient_id])
          Severity: Minor
          Found in app/models/carto/permission.rb - 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 build_changed_permissions has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

            def self.build_changed_permissions(temp_new_acl, temp_old_acl)
              changed_permissions = {}
          
              temp_new_acl.each do |pt, pv|
                changed_permissions[pt] = {}
          Severity: Minor
          Found in app/models/carto/permission.rb - About 55 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

          Method acl= has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

            def acl=(value)
              incoming_acl = value.nil? ? DEFAULT_ACL_VALUE : value
              raise Carto::Permission::Error, 'ACL is not an array' unless incoming_acl.is_a? Array
          
              incoming_acl.map do |item|
          Severity: Minor
          Found in app/models/carto/permission.rb - About 55 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

          Method update_shared_entities has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

            def update_shared_entities
              e = entity
              # First clean previous sharings
              destroy_shared_entities
              revoke_previous_permissions(e)
          Severity: Minor
          Found in app/models/carto/permission.rb - 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

          Method compare_new_acl has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

            def self.compare_new_acl(old_acl, new_acl)
              temp_old_acl = {}
              # Convert the old and new acls to a better format for searching
              old_acl.each do |i|
                temp_old_acl[i[:type]] = {} unless temp_old_acl.key?(i[:type])
          Severity: Minor
          Found in app/models/carto/permission.rb - 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

          Avoid deeply nested control flow statements.
          Open

                          if p['type'].include?('r')
                            ::Resque.enqueue(::Resque::UserJobs::Mail::ShareTable, entity.id, affected_id)
                          end
          Severity: Major
          Found in app/models/carto/permission.rb - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                          elsif p['action'] == 'revoke'
                            if p['type'].include?('r')
                              ::Resque.enqueue(::Resque::UserJobs::Mail::UnshareTable, entity.name, owner_username, affected_id)
                            end
            Severity: Major
            Found in app/models/carto/permission.rb - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                              if p['type'].include?('r')
                                ::Resque.enqueue(::Resque::UserJobs::Mail::UnshareVisualization,
                                                 entity.name, owner_username, affected_id)
                              end
              Severity: Major
              Found in app/models/carto/permission.rb - About 45 mins to fix

                Method set_group_permission has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                  def set_group_permission(group, access)
                    # You only want to switch it off when request is a permission request coming from database
                    @update_db_group_permission = false
                
                    granted_access = granted_access_for_group(group)
                Severity: Minor
                Found in app/models/carto/permission.rb - 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

                Method check_related_visualizations has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                  def check_related_visualizations(table)
                    fully_dependent_visualizations = table.fully_dependent_visualizations.to_a
                    partially_dependent_visualizations = table.partially_dependent_visualizations.to_a
                    table_visualization = table.table_visualization
                    partially_dependent_visualizations.each do |visualization|
                Severity: Minor
                Found in app/models/carto/permission.rb - 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

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

                              if p['action'] == 'grant'
                                # At this moment just inform as read grant
                                if p['type'].include?('r')
                                  ::Resque.enqueue(::Resque::UserJobs::Mail::ShareVisualization, entity.id, affected_id)
                                end
                Severity: Minor
                Found in app/models/carto/permission.rb and 1 other location - About 50 mins to fix
                app/models/carto/permission.rb on lines 215..224

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

                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 p['action'] == 'grant'
                                # At this moment just inform as read grant
                                if p['type'].include?('r')
                                  ::Resque.enqueue(::Resque::UserJobs::Mail::ShareTable, entity.id, affected_id)
                                end
                Severity: Minor
                Found in app/models/carto/permission.rb and 1 other location - About 50 mins to fix
                app/models/carto/permission.rb on lines 203..213

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

                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

                      shared_entity = Carto::SharedEntity.create(
                        recipient_id:   user[:id],
                        recipient_type: Carto::SharedEntity::RECIPIENT_TYPE_USER,
                        entity_id:      entity.id,
                        entity_type:    Carto::SharedEntity::ENTITY_TYPE_VISUALIZATION
                Severity: Minor
                Found in app/models/carto/permission.rb and 1 other location - About 25 mins to fix
                app/models/carto/permission.rb on lines 449..457

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

                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

                      shared_entity = Carto::SharedEntity.create(
                        recipient_id:   org[:id],
                        recipient_type: Carto::SharedEntity::RECIPIENT_TYPE_ORGANIZATION,
                        entity_id:      entity.id,
                        entity_type:    Carto::SharedEntity::ENTITY_TYPE_VISUALIZATION
                Severity: Minor
                Found in app/models/carto/permission.rb and 1 other location - About 25 mins to fix
                app/models/carto/permission.rb on lines 435..443

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

                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

                    old_acl.each do |i|
                      temp_old_acl[i[:type]] = {} unless temp_old_acl.key?(i[:type])
                      temp_old_acl[i[:type]][i[:id]] = i
                Severity: Minor
                Found in app/models/carto/permission.rb and 1 other location - About 20 mins to fix
                app/models/carto/permission.rb on lines 35..37

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

                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

                    new_acl.each do |i|
                      temp_new_acl[i[:type]] = {} unless temp_new_acl.key?(i[:type])
                      temp_new_acl[i[:type]][i[:id]] = i
                Severity: Minor
                Found in app/models/carto/permission.rb and 1 other location - About 20 mins to fix
                app/models/carto/permission.rb on lines 30..32

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

                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