attr-encrypted/attr_encrypted

View on GitHub
lib/attr_encrypted.rb

Summary

Maintainability
C
1 day
Test Coverage

Method attr_encrypted has a Cognitive Complexity of 39 (exceeds 5 allowed). Consider refactoring.
Open

  def attr_encrypted(*attributes)
    options = attributes.last.is_a?(Hash) ? attributes.pop : {}
    options = attr_encrypted_default_options.dup.merge!(attr_encrypted_options).merge!(options)

    options[:encode] = options[:default_encoding] if options[:encode] == true
Severity: Minor
Found in lib/attr_encrypted.rb - About 5 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 evaluated_attr_encrypted_options_for has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

      def evaluated_attr_encrypted_options_for(attribute)
        evaluated_options = Hash.new
        attributes = attr_encrypted_encrypted_attributes[attribute.to_sym]
        attribute_option_value = attributes[:attribute]

Severity: Minor
Found in lib/attr_encrypted.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 attr_encrypted has 31 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def attr_encrypted(*attributes)
    options = attributes.last.is_a?(Hash) ? attributes.pop : {}
    options = attr_encrypted_default_options.dup.merge!(attr_encrypted_options).merge!(options)

    options[:encode] = options[:default_encoding] if options[:encode] == true
Severity: Minor
Found in lib/attr_encrypted.rb - About 1 hr to fix

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

          def load_iv_for_attribute(attribute, options)
            encrypted_attribute_name = options[:attribute]
            encode_iv = options[:encode_iv]
            iv = options[:iv] || send("#{encrypted_attribute_name}_iv")
            if options[:operation] == :encrypting
    Severity: Minor
    Found in lib/attr_encrypted.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 attr_encrypted_decrypt has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

      def attr_encrypted_decrypt(attribute, encrypted_value, options = {})
        options = attr_encrypted_encrypted_attributes[attribute.to_sym].merge(options)
        if options[:if] && !options[:unless] && not_empty?(encrypted_value)
          encrypted_value = encrypted_value.unpack(options[:encode]).first if options[:encode]
          value = options[:encryptor].send(options[:decrypt_method], options.merge!(value: encrypted_value))
    Severity: Minor
    Found in lib/attr_encrypted.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 attr_encrypted_encrypt has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

      def attr_encrypted_encrypt(attribute, value, options = {})
        options = attr_encrypted_encrypted_attributes[attribute.to_sym].merge(options)
        if options[:if] && !options[:unless] && (options[:allow_empty_value] || not_empty?(value))
          value = options[:marshal] ? options[:marshaler].send(options[:dump_method], value) : value.to_s
          encrypted_value = options[:encryptor].send(options[:encrypt_method], options.merge!(value: value))
    Severity: Minor
    Found in lib/attr_encrypted.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 load_salt_for_attribute has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

          def load_salt_for_attribute(attribute, options)
            encrypted_attribute_name = options[:attribute]
            encode_salt = options[:encode_salt]
            salt = options[:salt] || send("#{encrypted_attribute_name}_salt")
            if options[:operation] == :encrypting
    Severity: Minor
    Found in lib/attr_encrypted.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

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

        def attr_encrypted_encrypt(attribute, value)
          attr_encrypted_encrypted_attributes[attribute.to_sym][:operation] = :encrypting
          attr_encrypted_encrypted_attributes[attribute.to_sym][:value_present] = self.class.not_empty?(value)
          self.class.attr_encrypted_encrypt(attribute, value, evaluated_attr_encrypted_options_for(attribute))
    Severity: Minor
    Found in lib/attr_encrypted.rb and 1 other location - About 15 mins to fix
    lib/attr_encrypted.rb on lines 328..331

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

    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

        def attr_encrypted_decrypt(attribute, encrypted_value)
          attr_encrypted_encrypted_attributes[attribute.to_sym][:operation] = :decrypting
          attr_encrypted_encrypted_attributes[attribute.to_sym][:value_present] = self.class.not_empty?(encrypted_value)
          self.class.attr_encrypted_decrypt(attribute, encrypted_value, evaluated_attr_encrypted_options_for(attribute))
    Severity: Minor
    Found in lib/attr_encrypted.rb and 1 other location - About 15 mins to fix
    lib/attr_encrypted.rb on lines 349..352

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

    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