openSUSE/open-build-service

View on GitHub
src/api/app/controllers/webui/package_controller.rb

Summary

Maintainability
D
1 day
Test Coverage
C
77%

Class PackageController has 37 methods (exceeds 20 allowed). Consider refactoring.
Open

class Webui::PackageController < Webui::WebuiController
  include ParsePackageDiff
  include Webui::PackageHelper
  include Webui::ManageRelationships

Severity: Minor
Found in src/api/app/controllers/webui/package_controller.rb - About 4 hrs to fix

    Method show has 48 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      def show
        # FIXME: Remove this statement when scmsync is fully supported
        if @project.scmsync.present?
          flash[:error] = "Package sources for project #{@project.name} are received through scmsync.
                           This is not yet fully supported by the OBS frontend"
    Severity: Minor
    Found in src/api/app/controllers/webui/package_controller.rb - About 1 hr to fix

      Method set_file_details has a Cognitive Complexity of 17 (exceeds 8 allowed). Consider refactoring.
      Open

        def set_file_details
          @forced_unexpand ||= ''
      
          # check source access
          @files = []
      Severity: Minor
      Found in src/api/app/controllers/webui/package_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 rdiff has a Cognitive Complexity of 15 (exceeds 8 allowed). Consider refactoring.
      Open

        def rdiff
          @last_rev = @package.dir_hash['rev']
          @linkinfo = @package.linkinfo
          if params[:oproject]
            @oproject = ::Project.find_by_name(params[:oproject])
      Severity: Minor
      Found in src/api/app/controllers/webui/package_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 rdiff has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        def rdiff
          @last_rev = @package.dir_hash['rev']
          @linkinfo = @package.linkinfo
          if params[:oproject]
            @oproject = ::Project.find_by_name(params[:oproject])
      Severity: Minor
      Found in src/api/app/controllers/webui/package_controller.rb - About 1 hr to fix

        Method show has a Cognitive Complexity of 13 (exceeds 8 allowed). Consider refactoring.
        Open

          def show
            # FIXME: Remove this statement when scmsync is fully supported
            if @project.scmsync.present?
              flash[:error] = "Package sources for project #{@project.name} are received through scmsync.
                               This is not yet fully supported by the OBS frontend"
        Severity: Minor
        Found in src/api/app/controllers/webui/package_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 rpmlint_result has a Cognitive Complexity of 11 (exceeds 8 allowed). Consider refactoring.
        Confirmed

          def rpmlint_result
            @repo_arch_hash = {}
            @buildresult = Buildresult.find_hashed(project: @project.to_param, package: @package.to_param, view: 'status')
            repos = [] # Temp var
            if @buildresult
        Severity: Minor
        Found in src/api/app/controllers/webui/package_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

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

          def update
            authorize @package, :update?
            respond_to do |format|
              if @package.update(package_details_params)
                format.html do
        Severity: Minor
        Found in src/api/app/controllers/webui/package_controller.rb and 1 other location - About 55 mins to fix
        src/api/app/controllers/webui/project_controller.rb on lines 108..122

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

        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