gitcoinco/code_fund_ads

View on GitHub
app/models/campaign.rb

Summary

Maintainability
D
2 days
Test Coverage

Class Campaign has 51 methods (exceeds 20 allowed). Consider refactoring.
Open

class Campaign < ApplicationRecord
  # extends ...................................................................
  # includes ..................................................................
  include Campaigns::Budgetable
  include Campaigns::Impressionable
Severity: Major
Found in app/models/campaign.rb - About 7 hrs to fix

    File campaign.rb has 426 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    class Campaign < ApplicationRecord
      # extends ...................................................................
      # includes ..................................................................
      include Campaigns::Budgetable
      include Campaigns::Impressionable
    Severity: Minor
    Found in app/models/campaign.rb - About 6 hrs to fix

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

        def validate_assigned_properties
          return unless sponsor?
          return unless active?
          return if fallback?
          return if paid_fallback?
      Severity: Minor
      Found in app/models/campaign.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 adjusted_ecpm has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        def adjusted_ecpm(country_code)
          return ecpm if fixed_ecpm?
      
          adjusted = ecpm * Country::UNKNOWN_CPM_MULTIPLER
          country = Country.find(country_code)
      Severity: Minor
      Found in app/models/campaign.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 assign_keywords(force_audience_keywords: false)
          return unless audiences.exists?
      
          original_keywords = keywords
          audience_keywords = audiences.map(&:keywords).flatten.uniq
      Severity: Minor
      Found in app/models/campaign.rb and 1 other location - About 35 mins to fix
      app/models/campaign.rb on lines 514..524

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

      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 assign_country_codes(force_region_country_codes: false)
          return unless regions.exists?
      
          original_country_codes = country_codes
          region_country_codes = regions.map(&:country_codes).flatten.uniq
      Severity: Minor
      Found in app/models/campaign.rb and 1 other location - About 35 mins to fix
      app/models/campaign.rb on lines 500..510

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

      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 3 locations. Consider refactoring.
      Open

        scope :order_by_status, -> {
                                  order_by = ["CASE"]
                                  ENUMS::CAMPAIGN_STATUSES.values.each_with_index do |status, index|
                                    order_by << "WHEN status='#{status}' THEN #{index}"
                                  end
      Severity: Minor
      Found in app/models/campaign.rb and 2 other locations - About 25 mins to fix
      app/models/creative.rb on lines 68..75
      app/models/property.rb on lines 116..123

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

      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 displaying_properties(start_date = nil, end_date = nil)
          subquery = daily_summaries.displayed.where(scoped_by_type: "Property")
          subquery = subquery.between(start_date, end_date) if start_date
          Property.where id: subquery.distinct.pluck(:scoped_by_id).map(&:to_i)
        end
      Severity: Minor
      Found in app/models/campaign.rb and 1 other location - About 25 mins to fix
      app/models/property.rb on lines 232..236

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

      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