openjaf/cenit

View on GitHub
app/models/user.rb

Summary

Maintainability
B
6 hrs
Test Coverage

Class User has 34 methods (exceeds 20 allowed). Consider refactoring.
Open

class User
  include Setup::CenitUnscoped
  include Cenit::MultiTenancy::UserScope
  extend DeviseOverrides
  include CredentialsGenerator
Severity: Minor
Found in app/models/user.rb - About 4 hrs to fix

    Method notification_span_for has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

      def notification_span_for(type)
        type = type.to_s.to_sym
        unless @notification_spans
          @notification_spans = {}
          regex = Regexp.new("\\A(#{Setup::SystemNotification.type_enum.join('|')})_notifications_span\\Z")
    Severity: Minor
    Found in app/models/user.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 check_attributes has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def check_attributes
        remove_attribute(:super_admin_enabled) unless has_role?(:super_admin)
        if attributes['name'] && attributes['given_name'].present? && attributes['family_name'].present?
          remove_attribute(:name)
        end
    Severity: Minor
    Found in app/models/user.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