Katello/katello

View on GitHub
app/controllers/katello/api/registry/registry_proxies_controller.rb

Summary

Maintainability
D
2 days
Test Coverage

Class RegistryProxiesController has 41 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Api::Registry::RegistryProxiesController < Api::V2::ApiController
    before_action :disable_strong_params
    before_action :confirm_settings
    before_action :confirm_push_settings, only: [:start_upload_blob, :upload_blob, :finish_upload_blob,
                                                 :push_manifest]
Severity: Minor
Found in app/controllers/katello/api/registry/registry_proxies_controller.rb - About 5 hrs to fix

    File registry_proxies_controller.rb has 379 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    module Katello
      # rubocop:disable Metrics/ClassLength
      class Api::Registry::RegistryProxiesController < Api::V2::ApiController
        before_action :disable_strong_params
        before_action :confirm_settings
    Severity: Minor
    Found in app/controllers/katello/api/registry/registry_proxies_controller.rb - About 5 hrs to fix

      Method set_user_by_token has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

          def set_user_by_token(token, redirect_on_failure = true)
            if token
              token_type, token = token.split
              if token_type == 'Bearer' && token
                personal_token = PersonalAccessToken.find_by_token(token)
      Severity: Minor
      Found in app/controllers/katello/api/registry/registry_proxies_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 authorize_repository_read has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          def authorize_repository_read
            @repository = find_readable_repository
            return item_not_found(params[:repository]) unless @repository
      
            if params[:tag]
      Severity: Minor
      Found in app/controllers/katello/api/registry/registry_proxies_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 get_manifest_files has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          def get_manifest_files(repository, manifest)
            files = ['manifest.json']
            if manifest['schemaVersion'] == 1
              if manifest['fsLayers']
                files += manifest['fsLayers'].collect do |layer|
      Severity: Minor
      Found in app/controllers/katello/api/registry/registry_proxies_controller.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

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

          def optional_authorize
            @repository = find_scope_repository
            if @repository && (@repository.environment.registry_unauthenticated_pull || ssl_client_authorized?(@repository.organization.label))
              true
            elsif params['action'] == 'catalog'
      Severity: Minor
      Found in app/controllers/katello/api/registry/registry_proxies_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 token has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def token
            if !require_user_authorization?
              personal_token = OpenStruct.new(token: 'unauthenticated', issued_at: Time.now, expires_at: 3.minutes.from_now)
            else
              personal_token = PersonalAccessToken.where(user_id: User.current.id, name: 'registry').first
      Severity: Minor
      Found in app/controllers/katello/api/registry/registry_proxies_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 2 locations. Consider refactoring.
      Open

              if manifest['fsLayers']
                files += manifest['fsLayers'].collect do |layer|
                  layerfile = "#{layer['blobSum'][7..-1]}.tar"
                  force_include_layer(repository, layer['blobSum'], layerfile)
                  layerfile
      app/controllers/katello/api/registry/registry_proxies_controller.rb on lines 355..361

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

      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

              if manifest['layers']
                files += manifest['layers'].collect do |layer|
                  layerfile = "#{layer['digest'][7..-1]}.tar"
                  force_include_layer(repository, layer['digest'], layerfile)
                  layerfile
      app/controllers/katello/api/registry/registry_proxies_controller.rb on lines 347..353

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

      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