Katello/katello

View on GitHub
app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb

Summary

Maintainability
C
1 day
Test Coverage

Class HostsBulkActionsController has 28 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Api::V2::HostsBulkActionsController < Api::V2::ApiController
    include ::Api::V2::BulkHostsExtension
    include Katello::Concerns::Api::V2::ContentOverridesController
    include Katello::ContentSourceHelper
    include ::Foreman::Renderer::Scope::Macros::Base
Severity: Minor
Found in app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb - About 3 hrs to fix

    File hosts_bulk_actions_controller.rb has 304 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    module Katello
      # this is Katello's host bulk actions controller, not to be confused with Foreman's
      class Api::V2::HostsBulkActionsController < Api::V2::ApiController
        include ::Api::V2::BulkHostsExtension
        include Katello::Concerns::Api::V2::ContentOverridesController
    Severity: Minor
    Found in app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb - About 3 hrs to fix

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

          def available_incremental_updates
            fail HttpErrors::BadRequest, _("errata_ids is a required parameter") if params[:errata_ids].empty?
            version_environments = {}
            content_facets = Katello::Host::ContentFacet.with_non_installable_errata(@errata, @hosts)
      
      
      Severity: Minor
      Found in app/controllers/katello/api/v2/hosts_bulk_actions_controller.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 change_content_source has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def change_content_source
            hosts = ::Host.where(id: params[:host_ids])
            throw_resource_not_found(name: 'host', id: params[:host_ids]) unless hosts.any?
      
            lifecycle_environment = KTEnvironment.readable.find(params[:environment_id])
      Severity: Minor
      Found in app/controllers/katello/api/v2/hosts_bulk_actions_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

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

          param :content_overrides, Array, :desc => N_("Array of Content override parameters") do
            param :content_label, String, :desc => N_("Label of the content"), :required => true
            param :value, String, :desc => N_("Override value. Provide a boolean value if name is 'enabled'"), :required => false
            param :name, String, :desc => N_("Override key or name. Note if name is not provided the default name will be 'enabled'"), :required => false
            param :remove, :bool, :desc => N_("Set true to remove an override and reset it to 'default'"), :required => false
      app/controllers/katello/api/v2/activation_keys_controller.rb on lines 208..213
      app/controllers/katello/api/v2/host_subscriptions_controller.rb on lines 172..177

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

      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

            pool_id_quantities = params.require(:subscriptions).inject({}) do |new_hash, subscription|
              new_hash[subscription['id']] ||= PoolWithQuantities.new(Pool.find(subscription['id']))
              new_hash[subscription['id']].quantities << subscription['quantity']
              new_hash
      Severity: Minor
      Found in app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb and 1 other location - About 30 mins to fix
      app/controllers/katello/api/v2/host_subscriptions_controller.rb on lines 129..132

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

      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

          param :subscriptions, Array, :desc => N_("Array of subscriptions to add"), :required => true do
            param :id, String, :desc => N_("Subscription Pool id"), :required => true
            param :quantity, :number, :desc => N_("Quantity of this subscriptions to add"), :required => true
          end
      app/controllers/katello/api/v2/host_subscriptions_controller.rb on lines 141..144
      app/controllers/katello/api/v2/upstream_subscriptions_controller.rb on lines 61..64

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

      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

            param :included, Hash, :required => true, :action_aware => true do
              param :search, String, :required => false, :desc => N_("Search string for hosts to perform an action on")
              param :ids, Array, :required => false, :desc => N_("List of host ids to perform an action on")
            end
      Severity: Minor
      Found in app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb and 1 other location - About 20 mins to fix
      app/controllers/katello/api/v2/content_view_versions_controller.rb on lines 118..121

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

      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

          param :subscriptions, Array, :desc => N_("Array of subscriptions to remove") do
            param :id, String, :desc => N_("Subscription Pool id"), :required => true
            param :quantity, Integer, :desc => N_("Quantity of specified subscription to remove"), :required => false
          end
      Severity: Minor
      Found in app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb and 1 other location - About 20 mins to fix
      app/controllers/katello/api/v2/host_subscriptions_controller.rb on lines 122..125

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

      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