redmine/redmine

View on GitHub
app/models/issue_query.rb

Summary

Maintainability
F
1 wk
Test Coverage

File issue_query.rb has 773 lines of code (exceeds 250 allowed). Consider refactoring.
Open

class IssueQuery < Query
  self.queried_class = Issue
  self.view_permission = :view_issues

  self.available_columns = [
Severity: Major
Found in app/models/issue_query.rb - About 1 day to fix

    Class IssueQuery has 43 methods (exceeds 20 allowed). Consider refactoring.
    Open

    class IssueQuery < Query
      self.queried_class = Issue
      self.view_permission = :view_issues
    
      self.available_columns = [
    Severity: Minor
    Found in app/models/issue_query.rb - About 5 hrs to fix

      Method initialize_available_filters has 126 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def initialize_available_filters
          add_available_filter(
            "status_id",
            :type => :list_status, :values => lambda {issue_statuses_values}
          )
      Severity: Major
      Found in app/models/issue_query.rb - About 5 hrs to fix

        Method sql_for_relations has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
        Open

          def sql_for_relations(field, operator, value, options={})
            relation_options = IssueRelation::TYPES[field]
            return relation_options unless relation_options
        
            relation_type = field
        Severity: Minor
        Found in app/models/issue_query.rb - About 4 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 sql_for_relations has 57 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          def sql_for_relations(field, operator, value, options={})
            relation_options = IssueRelation::TYPES[field]
            return relation_options unless relation_options
        
            relation_type = field
        Severity: Major
        Found in app/models/issue_query.rb - About 2 hrs to fix

          Method issues has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
          Open

            def issues(options={})
              order_option = [group_by_sort_order, (options[:order] || sort_clause)].flatten.reject(&:blank?)
              # The default order of IssueQuery is issues.id DESC(by IssueQuery#default_sort_criteria)
              unless ["#{Issue.table_name}.id ASC", "#{Issue.table_name}.id DESC"].any?{|i| order_option.include?(i)}
                order_option << "#{Issue.table_name}.id DESC"
          Severity: Minor
          Found in app/models/issue_query.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 joins_for_order_statement has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
          Open

            def joins_for_order_statement(order_options)
              joins = [super]
          
              if order_options
                if order_options.include?('authors')
          Severity: Minor
          Found in app/models/issue_query.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 sql_for_assigned_to_role_field has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
          Open

            def sql_for_assigned_to_role_field(field, operator, value)
              case operator
              when "*", "!*" # Member / Not member
                sw = operator == "!*" ? 'NOT' : ''
                nl = operator == "!*" ? "#{Issue.table_name}.assigned_to_id IS NULL OR" : ''
          Severity: Minor
          Found in app/models/issue_query.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 available_columns has 42 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            def available_columns
              return @available_columns if @available_columns
          
              @available_columns = self.class.available_columns.dup
              @available_columns += issue_custom_fields.visible.collect {|cf| QueryCustomFieldColumn.new(cf)}
          Severity: Minor
          Found in app/models/issue_query.rb - About 1 hr to fix

            Method joins_for_order_statement has 41 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              def joins_for_order_statement(order_options)
                joins = [super]
            
                if order_options
                  if order_options.include?('authors')
            Severity: Minor
            Found in app/models/issue_query.rb - About 1 hr to fix

              Method sql_for_any_searchable_field has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
              Open

                def sql_for_any_searchable_field(field, operator, value)
                  question = value.first
              
                  # Fetch search results only from the selected and visible (sub-)projects
                  project_scope = Project.allowed_to(:view_issues)
              Severity: Minor
              Found in app/models/issue_query.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 issues has 39 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                def issues(options={})
                  order_option = [group_by_sort_order, (options[:order] || sort_clause)].flatten.reject(&:blank?)
                  # The default order of IssueQuery is issues.id DESC(by IssueQuery#default_sort_criteria)
                  unless ["#{Issue.table_name}.id ASC", "#{Issue.table_name}.id DESC"].any?{|i| order_option.include?(i)}
                    order_option << "#{Issue.table_name}.id DESC"
              Severity: Minor
              Found in app/models/issue_query.rb - About 1 hr to fix

                Method sql_for_any_searchable_field has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  def sql_for_any_searchable_field(field, operator, value)
                    question = value.first
                
                    # Fetch search results only from the selected and visible (sub-)projects
                    project_scope = Project.allowed_to(:view_issues)
                Severity: Minor
                Found in app/models/issue_query.rb - About 1 hr to fix

                  Method sql_for_parent_id_field has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                    def sql_for_parent_id_field(field, operator, value)
                      case operator
                      when "="
                        # accepts a comma separated list of ids
                        ids = value.first.to_s.scan(/\d+/).map(&:to_i).uniq
                  Severity: Minor
                  Found in app/models/issue_query.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 sql_for_parent_id_field has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    def sql_for_parent_id_field(field, operator, value)
                      case operator
                      when "="
                        # accepts a comma separated list of ids
                        ids = value.first.to_s.scan(/\d+/).map(&:to_i).uniq
                  Severity: Minor
                  Found in app/models/issue_query.rb - About 1 hr to fix

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

                      def initialize_available_filters
                        add_available_filter(
                          "status_id",
                          :type => :list_status, :values => lambda {issue_statuses_values}
                        )
                    Severity: Minor
                    Found in app/models/issue_query.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 sql_for_attachment_field has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def sql_for_attachment_field(field, operator, value)
                        case operator
                        when "*", "!*"
                          e = (operator == "*" ? "EXISTS" : "NOT EXISTS")
                          "#{e} (SELECT 1 FROM #{Attachment.table_name} a WHERE a.container_type = 'Issue' AND a.container_id = #{Issue.table_name}.id)"
                    Severity: Minor
                    Found in app/models/issue_query.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 sql_for_attachment_description_field has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def sql_for_attachment_description_field(field, operator, value)
                        cond_description = "a.description IS NOT NULL AND a.description <> ''"
                        c =
                          case operator
                          when '*', '!*'
                    Severity: Minor
                    Found in app/models/issue_query.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 sql_for_child_id_field has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def sql_for_child_id_field(field, operator, value)
                        case operator
                        when "="
                          # accepts a comma separated list of child ids
                          child_ids = value.first.to_s.scan(/\d+/).map(&:to_i).uniq
                    Severity: Minor
                    Found in app/models/issue_query.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

                    Method default has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def self.default(project: nil, user: User.current)
                        # user default
                        if user&.logged? && (query_id = user.pref.default_issue_query).present?
                          query = find_by(id: query_id)
                          return query if query&.visible?(user)
                    Severity: Minor
                    Found in app/models/issue_query.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

                    Method available_columns has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                    Open

                      def available_columns
                        return @available_columns if @available_columns
                    
                        @available_columns = self.class.available_columns.dup
                        @available_columns += issue_custom_fields.visible.collect {|cf| QueryCustomFieldColumn.new(cf)}
                    Severity: Minor
                    Found in app/models/issue_query.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

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

                      def build_from_params(params, defaults={})
                        super
                        self.draw_relations =
                          params[:draw_relations] ||
                            (params[:query] && params[:query][:draw_relations]) || options[:draw_relations]
                    Severity: Minor
                    Found in app/models/issue_query.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

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

                      def sql_for_fixed_version_due_date_field(field, operator, value)
                        where = sql_for_field(field, operator, value, Version.table_name, "effective_date")
                        version_id_scope = project ? project.shared_versions : Version.visible
                        version_ids = version_id_scope.where(where).pluck(:id)
                    
                    
                    Severity: Minor
                    Found in app/models/issue_query.rb and 1 other location - About 1 hr to fix
                    app/models/issue_query.rb on lines 595..601

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

                    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 sql_for_fixed_version_status_field(field, operator, value)
                        where = sql_for_field(field, operator, value, Version.table_name, "status")
                        version_id_scope = project ? project.shared_versions : Version.visible
                        version_ids = version_id_scope.where(where).pluck(:id)
                    
                    
                    Severity: Minor
                    Found in app/models/issue_query.rb and 1 other location - About 1 hr to fix
                    app/models/issue_query.rb on lines 604..610

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

                    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

                        unless ["#{Issue.table_name}.id ASC", "#{Issue.table_name}.id DESC"].any?{|i| order_option.include?(i)}
                          order_option << "#{Issue.table_name}.id DESC"
                    Severity: Minor
                    Found in app/models/issue_query.rb and 1 other location - About 15 mins to fix
                    app/models/issue_query.rb on lines 434..435

                    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

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

                        unless ["#{Issue.table_name}.id ASC", "#{Issue.table_name}.id DESC"].any?{|i| order_option.include?(i)}
                          order_option << "#{Issue.table_name}.id DESC"
                    Severity: Minor
                    Found in app/models/issue_query.rb and 1 other location - About 15 mins to fix
                    app/models/issue_query.rb on lines 386..387

                    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