mongodb/mongoid

View on GitHub
lib/mongoid/fields.rb

Summary

Maintainability
C
1 day
Test Coverage

File fields.rb has 372 lines of code (exceeds 250 allowed). Consider refactoring.
Open

require "mongoid/fields/standard"
require "mongoid/fields/encrypted"
require "mongoid/fields/foreign_key"
require "mongoid/fields/localized"
require "mongoid/fields/validators"
Severity: Minor
Found in lib/mongoid/fields.rb - About 4 hrs to fix

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

          def traverse_association_tree(key, fields, associations, aliased_associations)
            klass = nil
            field = nil
            key.split('.').each_with_index do |meth, i|
              fs = i == 0 ? fields : klass&.fields
    Severity: Minor
    Found in lib/mongoid/fields.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 cleanse_localized_field_names has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

          def cleanse_localized_field_names(name)
            name = database_field_name(name.to_s)
    
            klass = self
            [].tap do |res|
    Severity: Minor
    Found in lib/mongoid/fields.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 database_field_name has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

          def database_field_name(name, relations, aliased_fields, aliased_associations)
            return nil unless name.present?
            key = name.to_s
            segment, remaining = key.split('.', 2)
    
    
    Severity: Minor
    Found in lib/mongoid/fields.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 retrieve_and_validate_type has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def retrieve_and_validate_type(name, type)
            result = TYPE_MAPPINGS[type] || unmapped_type(type)
            raise Errors::InvalidFieldType.new(self, name, type) if !result.is_a?(Class)
    
            if unsupported_type?(result)
    Severity: Minor
    Found in lib/mongoid/fields.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 apply_default has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def apply_default(name)
          unless attributes.key?(name)
            if field = fields[name]
              default = field.eval_default(self)
              unless default.nil? || field.lazy?
    Severity: Minor
    Found in lib/mongoid/fields.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