openjaf/cenit

View on GitHub
app/models/setup/legacy_translator.rb

Summary

Maintainability
F
3 days
Test Coverage

Method validates_configuration has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
Open

    def validates_configuration
      requires(:name)
      errors.add(:type, 'is not valid') unless type_enum.include?(type)
      errors.add(:style, 'is not valid') unless style_enum.include?(style)
      case type
Severity: Minor
Found in app/models/setup/legacy_translator.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

Method source_options has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
Open

    def source_options(options, source_key_options)
      data_type_key = source_key_options[:data_type_key] || :source_data_type
      if (data_type = send(data_type_key) || options[data_type_key] || options[:data_type])
        model = data_type.records_model
        offset = options[:offset] || 0
Severity: Minor
Found in app/models/setup/legacy_translator.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

Class LegacyTranslator has 28 methods (exceeds 20 allowed). Consider refactoring.
Open

  class LegacyTranslator < Translator
    include ReqRejValidator
    include SnippetCode
    # = Translator
    #
Severity: Minor
Found in app/models/setup/legacy_translator.rb - About 3 hrs to fix

    File legacy_translator.rb has 277 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    module Setup
      class LegacyTranslator < Translator
        include ReqRejValidator
        include SnippetCode
        # = Translator
    Severity: Minor
    Found in app/models/setup/legacy_translator.rb - About 2 hrs to fix

      Method validates_configuration has 45 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def validates_configuration
            requires(:name)
            errors.add(:type, 'is not valid') unless type_enum.include?(type)
            errors.add(:style, 'is not valid') unless style_enum.include?(style)
            case type
      Severity: Minor
      Found in app/models/setup/legacy_translator.rb - About 1 hr to fix

        Method source_options has 35 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            def source_options(options, source_key_options)
              data_type_key = source_key_options[:data_type_key] || :source_data_type
              if (data_type = send(data_type_key) || options[data_type_key] || options[:data_type])
                model = data_type.records_model
                offset = options[:offset] || 0
        Severity: Minor
        Found in app/models/setup/legacy_translator.rb - About 1 hr to fix

          Consider simplifying this complex logical expression.
          Open

                    if source_key_options[:bulk]
                      {
                        source_key_options[:sources_key] || :sources =>
                          if (object_ids = options[:object_ids])
                            model.any_in(id: (limit ? object_ids[offset, limit] : object_ids.from(offset))).to_enum
          Severity: Critical
          Found in app/models/setup/legacy_translator.rb - About 1 hr to fix

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

                def run(options = {})
                  context_options = try("context_options_for_#{type.to_s.downcase}", options) || {}
                  self.class.fields.keys.each { |key| context_options[key.to_sym] = send(key) }
                  self.class.relations.keys.each { |key| context_options[key.to_sym] = send(key) }
                  context_options[:data_type] = data_type
            Severity: Minor
            Found in app/models/setup/legacy_translator.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

            Avoid deeply nested control flow statements.
            Open

                              enum = (limit ? model.limit(limit) : model.all).skip(offset).to_enum
            Severity: Major
            Found in app/models/setup/legacy_translator.rb - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                options[:object_ids] = enum.collect { |obj| obj.id.is_a?(BSON::ObjectId) ? obj.id.to_s : obj.id }
              Severity: Major
              Found in app/models/setup/legacy_translator.rb - About 45 mins to fix

                Method after_run_conversion has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    def after_run_conversion(options)
                      return unless (target = options[:target])
                      if options[:save_result].blank? || options[:save_result]
                        target.instance_variable_set(:@discard_event_lookup, options[:discard_events])
                        fail TransformingObjectException.new(target) unless Cenit::Utility.save(target)
                Severity: Minor
                Found in app/models/setup/legacy_translator.rb - About 35 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

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

                                if (object_ids = options[:object_ids])
                                  model.any_in(id: (limit ? object_ids[offset, limit] : object_ids.from(offset))).to_enum
                                elsif (objects = options[:objects])
                                  objects
                                else
                Severity: Major
                Found in app/models/setup/legacy_translator.rb and 1 other location - About 1 hr to fix
                app/models/setup/with_source_options.rb on lines 21..29

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

                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

                  class TransformingObjectException < Exception
                
                    attr_reader :object
                
                    def initialize(object)
                Severity: Minor
                Found in app/models/setup/legacy_translator.rb and 1 other location - About 40 mins to fix
                app/models/setup/target_handler_transformation.rb on lines 15..27

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

                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

                    class << self
                
                      def mime_type_filter_enum
                        Setup::Renderer.where(:mime_type.ne => nil).distinct(:mime_type).flatten.uniq
                      end
                Severity: Minor
                Found in app/models/setup/legacy_translator.rb and 1 other location - About 20 mins to fix
                app/models/setup/template.rb on lines 62..69

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

                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

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

                          elsif file_extension.blank?
                            extensions.length == 1 ? (self.file_extension = extensions[0]) : errors.add(:file_extension, 'has multiple options')
                          else
                            errors.add(:file_extension, 'is not valid') unless extensions.include?(file_extension)
                Severity: Minor
                Found in app/models/setup/legacy_translator.rb and 1 other location - About 15 mins to fix
                app/models/setup/template.rb on lines 20..27

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

                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 options[:save_result].blank? || options[:save_result]
                        target.instance_variable_set(:@discard_event_lookup, options[:discard_events])
                        fail TransformingObjectException.new(target) unless Cenit::Utility.save(target)
                      end
                Severity: Minor
                Found in app/models/setup/legacy_translator.rb and 1 other location - About 15 mins to fix
                app/models/setup/target_handler_transformation.rb on lines 6..11

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

                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