loomio/loomio

View on GitHub
app/models/poll.rb

Summary

Maintainability
D
1 day
Test Coverage

Class Poll has 52 methods (exceeds 20 allowed). Consider refactoring.
Open

class Poll < ApplicationRecord
  extend  HasCustomFields
  include CustomCounterCache::Model
  include ReadableUnguessableUrls
  include HasEvents
Severity: Major
Found in app/models/poll.rb - About 7 hrs to fix

    File poll.rb has 440 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    class Poll < ApplicationRecord
      extend  HasCustomFields
      include CustomCounterCache::Model
      include ReadableUnguessableUrls
      include HasEvents
    Severity: Minor
    Found in app/models/poll.rb - About 6 hrs to fix

      Method pg_search_insert_statement has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

        def self.pg_search_insert_statement(id: nil, author_id: nil, discussion_id: nil)
          content_str = "regexp_replace(CONCAT_WS(' ', polls.title, polls.details, users.name), E'<[^>]+>', '', 'gi')"
          <<~SQL.squish
            INSERT INTO pg_search_documents (
              searchable_type,
      Severity: Minor
      Found in app/models/poll.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 poll_option_names= has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

        def poll_option_names=(names)
          names    = Array(names)
          existing = Array(poll_options.pluck(:name))
          names = names.sort if poll_type == 'meeting'
          names.each_with_index do |name, priority|
      Severity: Minor
      Found in app/models/poll.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