talho/openphin

View on GitHub
app/modules/user/roles_module.rb

Summary

Maintainability
B
5 hrs
Test Coverage

Method handle_role_requests has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
Open

  def handle_role_requests(req_json, current_user)
    return [ false, [ "Permission denied" ] ] unless editable_by?(current_user)
    rq_list = ActiveSupport::JSON.decode(req_json)
    result = "success"
    rq_errors = []
Severity: Minor
Found in app/modules/user/roles_module.rb - 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 handle_role_requests has 38 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def handle_role_requests(req_json, current_user)
    return [ false, [ "Permission denied" ] ] unless editable_by?(current_user)
    rq_list = ActiveSupport::JSON.decode(req_json)
    result = "success"
    rq_errors = []
Severity: Minor
Found in app/modules/user/roles_module.rb - About 1 hr to fix

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

      def is_admin_for?(other, app = "")
        # TODO: Role.admin should check on role/app for the jurisdiction
        return true if self.is_sysadmin? || self.is_super_admin?
        if other.class == Jurisdiction
          return true if role_memberships.find(:all, :conditions => {:role_id => Role.admins(app).map(&:id)}).detect{|r| other.is_or_is_descendant_of?(r.jurisdiction)}
    Severity: Minor
    Found in app/modules/user/roles_module.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 included has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def self.included(base)
        base.has_many :role_memberships, :include => [:jurisdiction, :role], :dependent => :delete_all
        base.has_many :role_requests, :dependent => :delete_all, :include => [:jurisdiction, :role]
        base.accepts_nested_attributes_for :role_requests, :organization_membership_requests
        base.has_many :roles, :through => :role_memberships, :uniq => true
    Severity: Minor
    Found in app/modules/user/roles_module.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

    There are no issues that match your filters.

    Category
    Status