app/controllers/index_page_controller.rb

Summary

Maintainability
D
2 days
Test Coverage

Method index has a Cognitive Complexity of 85 (exceeds 5 allowed). Consider refactoring.
Open

  def index
    if !@current_basket.index_page_redirect_to_all.blank?
      redirect_to_all_for(@current_basket.index_page_redirect_to_all)
    else
      @privacy_type = @current_basket.show_privacy_controls_with_inheritance? && permitted_to_view_private_items? ? 'private' : 'public'
Severity: Minor
Found in app/controllers/index_page_controller.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

Assignment Branch Condition size for index is too high. [114.4/15]
Open

  def index
    if !@current_basket.index_page_redirect_to_all.blank?
      redirect_to_all_for(@current_basket.index_page_redirect_to_all)
    else
      @privacy_type = @current_basket.show_privacy_controls_with_inheritance? && permitted_to_view_private_items? ? 'private' : 'public'

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Method has too many lines. [105/10]
Open

  def index
    if !@current_basket.index_page_redirect_to_all.blank?
      redirect_to_all_for(@current_basket.index_page_redirect_to_all)
    else
      @privacy_type = @current_basket.show_privacy_controls_with_inheritance? && permitted_to_view_private_items? ? 'private' : 'public'

This cop checks if the length of a method exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Class has too many lines. [148/100]
Open

class IndexPageController < ApplicationController
  include ImageSlideshow

  def index
    if !@current_basket.index_page_redirect_to_all.blank?

This cop checks if the length a class exceeds some maximum value. Comment lines can optionally be ignored. The maximum allowed length is configurable.

Perceived complexity for index is too high. [34/7]
Open

  def index
    if !@current_basket.index_page_redirect_to_all.blank?
      redirect_to_all_for(@current_basket.index_page_redirect_to_all)
    else
      @privacy_type = @current_basket.show_privacy_controls_with_inheritance? && permitted_to_view_private_items? ? 'private' : 'public'

This cop tries to produce a complexity score that's a measure of the complexity the reader experiences when looking at a method. For that reason it considers when nodes as something that doesn't add as much complexity as an if or a &&. Except if it's one of those special case/when constructs where there's no expression after case. Then the cop treats it as an if/elsif/elsif... and lets all the when nodes count. In contrast to the CyclomaticComplexity cop, this cop considers else nodes as adding complexity.

Example:

def my_method                   # 1
  if cond                       # 1
    case var                    # 2 (0.8 + 4 * 0.2, rounded)
    when 1 then func_one
    when 2 then func_two
    when 3 then func_three
    when 4..10 then func_other
    end
  else                          # 1
    do_something until a && b   # 2
  end                           # ===
end                             # 7 complexity points

Cyclomatic complexity for index is too high. [32/6]
Open

  def index
    if !@current_basket.index_page_redirect_to_all.blank?
      redirect_to_all_for(@current_basket.index_page_redirect_to_all)
    else
      @privacy_type = @current_basket.show_privacy_controls_with_inheritance? && permitted_to_view_private_items? ? 'private' : 'public'

This cop checks that the cyclomatic complexity of methods is not higher than the configured maximum. The cyclomatic complexity is the number of linearly independent paths through a method. The algorithm counts decision points and adds one.

An if statement (or unless or ?:) increases the complexity by one. An else branch does not, since it doesn't add a decision point. The && operator (or keyword and) can be converted to a nested if statement, and ||/or is shorthand for a sequence of ifs, so they also add one. Loops can be said to have an exit condition, so they add one.

Method index has 105 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  def index
    if !@current_basket.index_page_redirect_to_all.blank?
      redirect_to_all_for(@current_basket.index_page_redirect_to_all)
    else
      @privacy_type = @current_basket.show_privacy_controls_with_inheritance? && permitted_to_view_private_items? ? 'private' : 'public'
Severity: Major
Found in app/controllers/index_page_controller.rb - About 4 hrs to fix

    Avoid deeply nested control flow statements.
    Open

                while @recent_topics_items.size < @recent_topics_limit && items_offset <= @total_items
                  # Make the find query based on current basket and privacy level
                  if @current_basket == @site_basket
                    recent_topics_items = Topic.recent.includes(:versions)
                                               .offset(items_offset).limit(@recent_topics_limit)
    Severity: Major
    Found in app/controllers/index_page_controller.rb - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                  if @current_basket == @site_basket
      
                    # EOIN: not sure how to handle this yet ConfigurableSetting.where(:name => 'disable_site_recent_topics_display', :value => true.to_yaml).select(:configurable_id).where("configurable_id != ?", @site_basket)
                    # disabled_recent_topics_baskets = ConfigurableSetting.where(:name => 'disable_site_recent_topics_display', :value => true.to_yaml).select(:configurable_id).where("configurable_id != ?", @site_basket)
                    disabled_recent_topics_baskets = Basket.where('1 = 0') # EOIN: this is a terrible hack to get an empty instance of ActiveRecord::Relation
      Severity: Major
      Found in app/controllers/index_page_controller.rb - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                    disabled_recent_topics_baskets = nil unless disabled_recent_topics_baskets.size > 0
        Severity: Major
        Found in app/controllers/index_page_controller.rb - About 45 mins to fix

          Consider simplifying this complex logical expression.
          Open

                if @topic && (params[:private] == 'true' || (params[:private].blank? && @current_basket.private_default_with_inheritance?)) &&
                   @topic.has_private_version? && permitted_to_view_private_items?
                  @topic.private_version!
                end
          Severity: Major
          Found in app/controllers/index_page_controller.rb - About 40 mins to fix

            Avoid more than 3 levels of block nesting.
            Open

                      @recent_topics_limit = 0 if @recent_topics_limit.blank?

            This cop checks for excessive nesting of conditional and looping constructs.

            You can configure if blocks are considered using the CountBlocks option. When set to false (the default) blocks are not counted towards the nesting level. Set to true to count blocks as well.

            The maximum level of nesting allowed is configurable.

            Avoid more than 3 levels of block nesting.
            Open

                      if @recent_topics_limit > 0
                        # get an array of baskets that we need to exclude from the site recent topics list
                        disabled_recent_topics_baskets = []
                        if @current_basket == @site_basket
            
            

            This cop checks for excessive nesting of conditional and looping constructs.

            You can configure if blocks are considered using the CountBlocks option. When set to false (the default) blocks are not counted towards the nesting level. Set to true to count blocks as well.

            The maximum level of nesting allowed is configurable.

            Avoid more than 3 levels of block nesting.
            Open

                      case @current_basket.index_page_link_to_index_topic_as
                      when 'full topic and comments'
                        @url_to_full_topic = url_for(
                          urlified_name: @topic.basket.urlified_name,
                          action: :show,

            This cop checks for excessive nesting of conditional and looping constructs.

            You can configure if blocks are considered using the CountBlocks option. When set to false (the default) blocks are not counted towards the nesting level. Set to true to count blocks as well.

            The maximum level of nesting allowed is configurable.

            Pass &:disputed_or_not_available? as an argument to reject! instead of a block.
            Open

                          recent_topics_items.reject! { |topic| topic.disputed_or_not_available? }

            Use symbols as procs when possible.

            Example:

            # bad
            something.map { |s| s.upcase }
            
            # good
            something.map(&:upcase)

            Use the return of the conditional for variable assignment and comparison.
            Open

                          if @current_basket == @site_basket
                            recent_topics_items = Topic.recent.includes(:versions)
                                                       .offset(items_offset).limit(@recent_topics_limit)
                                                       .exclude_baskets_and_id(disabled_recent_topics_baskets, @topic)
                          else

            Pass __FILE__ and __LINE__ to eval method, as they are used by backtraces.
            Open

                zoom_dbs.each { |db| Module.class_eval('Topic').process_query(zoom_db: db, query: "@attr 1=_ALLRECORDS @attr 2=103 ''") }

            This cop checks eval method usage. eval can receive source location metadata, that are filename and line number. The metadata is used by backtraces. This cop recommends to pass the metadata to eval method.

            Example:

            # bad
            eval <<-RUBY
              def do_something
              end
            RUBY
            
            # bad
            C.class_eval <<-RUBY
              def do_something
              end
            RUBY
            
            # good
            eval <<-RUBY, binding, __FILE__, __LINE__ + 1
              def do_something
              end
            RUBY
            
            # good
            C.class_eval <<-RUBY, __FILE__, __LINE__ + 1
              def do_something
              end
            RUBY

            Favor unless over if for negative conditions.
            Open

                    if !@topic.nil? # if @topic is not nil do ...
                      case @current_basket.index_page_link_to_index_topic_as
                      when 'full topic and comments'
                        @url_to_full_topic = url_for(
                          urlified_name: @topic.basket.urlified_name,

            Checks for uses of if with a negated condition. Only ifs without else are considered. There are three different styles:

            - both
            - prefix
            - postfix

            Example: EnforcedStyle: both (default)

            # enforces `unless` for `prefix` and `postfix` conditionals
            
            # bad
            
            if !foo
              bar
            end
            
            # good
            
            unless foo
              bar
            end
            
            # bad
            
            bar if !foo
            
            # good
            
            bar unless foo

            Example: EnforcedStyle: prefix

            # enforces `unless` for just `prefix` conditionals
            
            # bad
            
            if !foo
              bar
            end
            
            # good
            
            unless foo
              bar
            end
            
            # good
            
            bar if !foo

            Example: EnforcedStyle: postfix

            # enforces `unless` for just `postfix` conditionals
            
            # bad
            
            bar if !foo
            
            # good
            
            bar unless foo
            
            # good
            
            if !foo
              bar
            end

            Use !empty? instead of size > 0.
            Open

                        disabled_recent_topics_baskets = nil unless disabled_recent_topics_baskets.size > 0

            This cop checks for numeric comparisons that can be replaced by a predicate method, such as receiver.length == 0, receiver.length > 0, receiver.length != 0, receiver.length < 1 and receiver.size == 0 that can be replaced by receiver.empty? and !receiver.empty.

            Example:

            # bad
            [1, 2, 3].length == 0
            0 == "foobar".length
            array.length < 1
            {a: 1, b: 2}.length != 0
            string.length > 0
            hash.size > 0
            
            # good
            [1, 2, 3].empty?
            "foobar".empty?
            array.empty?
            !{a: 1, b: 2}.empty?
            !string.empty?
            !hash.empty?

            Useless assignment to variable - comment_count.
            Open

                comment_count = Comment.count

            This cop checks for every useless assignment to local variable in every scope. The basic idea for this cop was from the warning of ruby -cw:

            assigned but unused variable - foo

            Currently this cop has advanced logic that detects unreferenced reassignments and properly handles varied cases such as branch, loop, rescue, ensure, etc.

            Example:

            # bad
            
            def some_method
              some_var = 1
              do_something
            end

            Example:

            # good
            
            def some_method
              some_var = 1
              do_something(some_var)
            end

            Use @recent_topics_limit.positive? instead of @recent_topics_limit > 0.
            Open

                      if @recent_topics_limit > 0

            This cop checks for usage of comparison operators (==, >, <) to test numbers as zero, positive, or negative. These can be replaced by their respective predicate methods. The cop can also be configured to do the reverse.

            The cop disregards #nonzero? as it its value is truthy or falsey, but not true and false, and thus not always interchangeable with != 0.

            The cop ignores comparisons to global variables, since they are often populated with objects which can be compared with integers, but are not themselves Interger polymorphic.

            Example: EnforcedStyle: predicate (default)

            # bad
            
            foo == 0
            0 > foo
            bar.baz > 0
            
            # good
            
            foo.zero?
            foo.negative?
            bar.baz.positive?

            Example: EnforcedStyle: comparison

            # bad
            
            foo.zero?
            foo.negative?
            bar.baz.positive?
            
            # good
            
            foo == 0
            0 > foo
            bar.baz > 0

            Favor modifier if usage when having a single-line body. Another good alternative is the usage of control flow &&/||.
            Open

                  if !@topic.nil?

            Checks for if and unless statements that would fit on one line if written as a modifier if/unless. The maximum line length is configured in the Metrics/LineLength cop.

            Example:

            # bad
            if condition
              do_stuff(bar)
            end
            
            unless qux.empty?
              Foo.do_something
            end
            
            # good
            do_stuff(bar) if condition
            Foo.do_something unless qux.empty?

            Use @current_basket.index_page_number_of_tags.positive? instead of @current_basket.index_page_number_of_tags > 0.
            Open

                    if @current_basket.index_page_number_of_tags && @current_basket.index_page_number_of_tags > 0

            This cop checks for usage of comparison operators (==, >, <) to test numbers as zero, positive, or negative. These can be replaced by their respective predicate methods. The cop can also be configured to do the reverse.

            The cop disregards #nonzero? as it its value is truthy or falsey, but not true and false, and thus not always interchangeable with != 0.

            The cop ignores comparisons to global variables, since they are often populated with objects which can be compared with integers, but are not themselves Interger polymorphic.

            Example: EnforcedStyle: predicate (default)

            # bad
            
            foo == 0
            0 > foo
            bar.baz > 0
            
            # good
            
            foo.zero?
            foo.negative?
            bar.baz.positive?

            Example: EnforcedStyle: comparison

            # bad
            
            foo.zero?
            foo.negative?
            bar.baz.positive?
            
            # good
            
            foo == 0
            0 > foo
            bar.baz > 0

            Favor unless over if for negative conditions.
            Open

                  if !@topic.nil?
                    @title = @topic.title
                  end

            Checks for uses of if with a negated condition. Only ifs without else are considered. There are three different styles:

            - both
            - prefix
            - postfix

            Example: EnforcedStyle: both (default)

            # enforces `unless` for `prefix` and `postfix` conditionals
            
            # bad
            
            if !foo
              bar
            end
            
            # good
            
            unless foo
              bar
            end
            
            # bad
            
            bar if !foo
            
            # good
            
            bar unless foo

            Example: EnforcedStyle: prefix

            # enforces `unless` for just `prefix` conditionals
            
            # bad
            
            if !foo
              bar
            end
            
            # good
            
            unless foo
              bar
            end
            
            # good
            
            bar if !foo

            Example: EnforcedStyle: postfix

            # enforces `unless` for just `postfix` conditionals
            
            # bad
            
            bar if !foo
            
            # good
            
            bar unless foo
            
            # good
            
            if !foo
              bar
            end

            Pass &:private? as an argument to latest_unflagged_version_with_condition instead of a block.
            Open

                              topic.latest_unflagged_version_with_condition { |v| v.private? }

            Use symbols as procs when possible.

            Example:

            # bad
            something.map { |s| s.upcase }
            
            # good
            something.map(&:upcase)

            Put empty method definitions on a single line.
            Open

              def topic_as_full_page
              end

            This cop checks for the formatting of empty method definitions. By default it enforces empty method definitions to go on a single line (compact style), but it can be configured to enforce the end to go on its own line (expanded style).

            Note: A method definition is not considered empty if it contains comments.

            Example: EnforcedStyle: compact (default)

            # bad
            def foo(bar)
            end
            
            def self.foo(bar)
            end
            
            # good
            def foo(bar); end
            
            def foo(bar)
              # baz
            end
            
            def self.foo(bar); end

            Example: EnforcedStyle: expanded

            # bad
            def foo(bar); end
            
            def self.foo(bar); end
            
            # good
            def foo(bar)
            end
            
            def self.foo(bar)
            end

            Use disabled_recent_topics_baskets.size.positive? instead of disabled_recent_topics_baskets.size > 0.
            Open

                        disabled_recent_topics_baskets = nil unless disabled_recent_topics_baskets.size > 0

            This cop checks for usage of comparison operators (==, >, <) to test numbers as zero, positive, or negative. These can be replaced by their respective predicate methods. The cop can also be configured to do the reverse.

            The cop disregards #nonzero? as it its value is truthy or falsey, but not true and false, and thus not always interchangeable with != 0.

            The cop ignores comparisons to global variables, since they are often populated with objects which can be compared with integers, but are not themselves Interger polymorphic.

            Example: EnforcedStyle: predicate (default)

            # bad
            
            foo == 0
            0 > foo
            bar.baz > 0
            
            # good
            
            foo.zero?
            foo.negative?
            bar.baz.positive?

            Example: EnforcedStyle: comparison

            # bad
            
            foo.zero?
            foo.negative?
            bar.baz.positive?
            
            # good
            
            foo == 0
            0 > foo
            bar.baz > 0

            Pass &:configurable_id as an argument to collect! instead of a block.
            Open

                          disabled_recent_topics_baskets.collect! { |setting| setting.configurable_id }

            Use symbols as procs when possible.

            Example:

            # bad
            something.map { |s| s.upcase }
            
            # good
            something.map(&:upcase)

            There are no issues that match your filters.

            Category
            Status