CartoDB/cartodb20

View on GitHub
app/controllers/home_controller.rb

Summary

Maintainability
C
1 day
Test Coverage

Class HomeController has 25 methods (exceeds 20 allowed). Consider refactoring.
Open

class HomeController < ApplicationController
  layout 'frontend'

  STATUS = Hash.new('warning')
  STATUS[true] = 'ok'
Severity: Minor
Found in app/controllers/home_controller.rb - About 2 hrs to fix

    Method status_and_messages has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
    Open

      def status_and_messages(version, messages, supported_version, latest_version, minor_version: nil)
        valid = if minor_version.present?
                  Gem::Version.new(version.delete('v')) >= Gem::Version.new(minor_version.delete('v'))
                else
                  version =~ /\A#{supported_version}/ ? true : false
    Severity: Minor
    Found in app/controllers/home_controller.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 api_service_diagnosis has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

      def api_service_diagnosis(config, url_config_key, supported_version, latest_version, endpoint_prefix, version_key)
        service_url = configuration_url(config[url_config_key])
        info = safe_json_get("#{service_url}/#{endpoint_prefix}version")
    
        version = info[version_key]
    Severity: Minor
    Found in app/controllers/home_controller.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 api_service_diagnosis has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

      def api_service_diagnosis(config, url_config_key, supported_version, latest_version, endpoint_prefix, version_key)
    Severity: Minor
    Found in app/controllers/home_controller.rb - About 45 mins to fix

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

        def app_status
          return head(503) if Cartodb.config[:disable_file] && File.exists?(File.expand_path(Cartodb.config[:disable_file]))
          db_ok    = check_db
          redis_ok = check_redis
          api_ok   = true
      Severity: Minor
      Found in app/controllers/home_controller.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 running_import_ids has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

        def running_import_ids
          Resque::Worker.all.map do |worker|
            next unless worker.job['queue'] == 'imports'
            worker.job['payload']['args'].first['job_id'] rescue nil
          end.compact
      Severity: Minor
      Found in app/controllers/home_controller.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 valid? has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

        def valid?(supported_version, latest_version, version)
          if (version =~ /\A#{latest_version}/ ? true : nil)
            true
          else
            version =~ /\A#{supported_version}/ ? nil : false
      Severity: Minor
      Found in app/controllers/home_controller.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

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

        def running_import_ids
          Resque::Worker.all.map do |worker|
            next unless worker.job['queue'] == 'imports'
            worker.job['payload']['args'].first['job_id'] rescue nil
          end.compact
      Severity: Minor
      Found in app/controllers/home_controller.rb and 1 other location - About 25 mins to fix
      app/models/data_import.rb on lines 356..360

      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