openSUSE/open-build-service

View on GitHub

Showing 341 of 435 total issues

Method create_expand_package has a Cognitive Complexity of 176 (exceeds 8 allowed). Consider refactoring.
Open

  def create_expand_package(packages, opts = {})
    newactions = []
    incident_suffix = ''

    # The maintenance ID is always the sub project name of the maintenance project
Severity: Minor
Found in src/api/app/models/bs_request_action.rb - About 3 days 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

Class Project has 122 methods (exceeds 20 allowed). Consider refactoring.
Open

class Project < ApplicationRecord
  include FlagHelper
  include FlagValidations
  include CanRenderModel
  include HasRelationships
Severity: Major
Found in src/api/app/models/project.rb - About 2 days to fix

    Class Package has 119 methods (exceeds 20 allowed). Consider refactoring.
    Open

    class Package < ApplicationRecord
      include FlagHelper
      include FlagValidations
      include CanRenderModel
      include HasRelationships
    Severity: Major
    Found in src/api/app/models/package.rb - About 2 days to fix

      Class User has 92 methods (exceeds 20 allowed). Consider refactoring.
      Open

      class User < ApplicationRecord
        include CanRenderModel
        include Flipper::Identifier
      
        # Keep in sync with states defined in db/schema.rb
      Severity: Major
      Found in src/api/app/models/user.rb - About 1 day to fix

        Class SourceController has 81 methods (exceeds 20 allowed). Consider refactoring.
        Open

        class SourceController < ApplicationController
          include Source::Errors
        
          SOURCE_UNTOUCHED_COMMANDS = %w[branch diff linkdiff servicediff showlinked rebuild wipe
                                         waitservice remove_flag set_flag getprojectservices fork].freeze
        Severity: Major
        Found in src/api/app/controllers/source_controller.rb - About 1 day to fix

          Class BsRequest has 77 methods (exceeds 20 allowed). Consider refactoring.
          Open

          class BsRequest < ApplicationRecord
            include BsRequest::Errors
            SEARCHABLE_FIELDS = [
              'bs_requests.creator',
              'bs_requests.priority',
          Severity: Major
          Found in src/api/app/models/bs_request.rb - About 1 day to fix

            Method create_branch_packages has a Cognitive Complexity of 67 (exceeds 8 allowed). Consider refactoring.
            Open

              def create_branch_packages(tprj)
                # collect also the needed repositories here
                response = nil
                @packages.each do |p|
                  raise CanNotBranchPackage, "project is developed at #{p[:link_target_project].scmsync}. Fork it instead." if p[:link_target_project].try(:scmsync).present?
            Severity: Minor
            Found in src/api/app/models/branch_package.rb - About 1 day 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 initialize has 230 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              def initialize
                @lexer = REXML::Parsers::XPathParser.new
            
                @tables = {
                  'attribute' => 'attribs',
            Severity: Major
            Found in src/api/lib/xpath_engine.rb - About 1 day to fix

              Class BsRequestAction has 61 methods (exceeds 20 allowed). Consider refactoring.
              Open

              class BsRequestAction < ApplicationRecord
                #### Includes and extends
                include ParsePackageDiff
                include BsRequestAction::Errors
                #### Constants
              Severity: Major
              Found in src/api/app/models/bs_request_action.rb - About 1 day to fix

                Method update_binary_releases_via_json has a Cognitive Complexity of 53 (exceeds 8 allowed). Consider refactoring.
                Open

                  def self.update_binary_releases_via_json(repository, json, time = Time.now)
                    # building a hash to avoid single SQL select calls slowing us down too much
                    oldhash = {}
                    BinaryRelease.transaction do
                      where(repository: repository, obsolete_time: nil).each do |binary|
                Severity: Minor
                Found in src/api/app/models/binary_release.rb - About 7 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 action_details has a Cognitive Complexity of 52 (exceeds 8 allowed). Consider refactoring.
                Open

                  def action_details(opts = {}, xml:)
                    with_diff = opts.delete(:diffs)
                    action = { type: xml.action_type }
                    action[:id] = xml.id
                    action[:number] = xml.bs_request.number
                Severity: Minor
                Found in src/api/app/models/bs_request.rb - About 7 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 cmd_changestate_permissions has a Cognitive Complexity of 49 (exceeds 8 allowed). Consider refactoring.
                Open

                  def cmd_changestate_permissions(opts)
                    # We do not support to revert changes from accepted requests (yet)
                    raise PostRequestNoPermission, 'change state from an accepted state is not allowed.' if req.state == :accepted
                
                    # need to check for accept permissions
                Severity: Minor
                Found in src/api/app/models/bs_request_permission_check.rb - About 7 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

                Class Base has 49 methods (exceeds 20 allowed). Consider refactoring.
                Open

                  class Base < ApplicationRecord
                    self.inheritance_column = 'eventtype'
                    self.table_name = 'events'
                
                    after_create :create_project_log_entry_job, if: -> { (PROJECT_CLASSES | PACKAGE_CLASSES).include?(self.class.name) }
                Severity: Minor
                Found in src/api/app/models/event/base.rb - About 6 hrs to fix

                  Method determine_details_about_package_to_branch has a Cognitive Complexity of 46 (exceeds 8 allowed). Consider refactoring.
                  Open

                    def determine_details_about_package_to_branch(p)
                      return unless p[:link_target_project].is_a?(Project) # only for local source projects
                  
                      check_for_update_project(p) unless params[:ignoredevel]
                  
                  
                  Severity: Minor
                  Found in src/api/app/models/branch_package.rb - About 6 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 branch_local_repositories has a Cognitive Complexity of 45 (exceeds 8 allowed). Consider refactoring.
                  Open

                    def branch_local_repositories(project, pkg_to_enable, opts = {})
                      # shall we use the repositories from a different project?
                      project = project.update_instance_or_self('OBS', 'BranchRepositoriesFromProject')
                      skip_repos = []
                      a = project.find_attribute('OBS', 'BranchSkipRepositories')
                  Severity: Minor
                  Found in src/api/app/models/project.rb - About 6 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 create_expand_package has 160 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    def create_expand_package(packages, opts = {})
                      newactions = []
                      incident_suffix = ''
                  
                      # The maintenance ID is always the sub project name of the maintenance project
                  Severity: Major
                  Found in src/api/app/models/bs_request_action.rb - About 6 hrs to fix

                    Method project_index has a Cognitive Complexity of 44 (exceeds 8 allowed). Consider refactoring.
                    Open

                      def project_index
                        prj = nil
                        prj = Project.get_by_name(params[:project]) unless params[:project] == '_dispatchprios'
                    
                        if request.get?
                    Severity: Minor
                    Found in src/api/app/controllers/build_controller.rb - About 6 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

                    Class RequestController has 43 methods (exceeds 20 allowed). Consider refactoring.
                    Open

                    class Webui::RequestController < Webui::WebuiController
                      helper 'webui/package'
                    
                      before_action :require_login,
                                    except: %i[show sourcediff diff request_action request_action_changes inline_comment build_results rpm_lint changes mentioned_issues]
                    Severity: Minor
                    Found in src/api/app/controllers/webui/request_controller.rb - About 5 hrs to fix

                      Method subscriptions has a Cognitive Complexity of 41 (exceeds 8 allowed). Consider refactoring.
                      Open

                          def subscriptions(channel = :instant_email)
                            receivers_and_subscriptions = {}
                      
                            event.class.receiver_roles.each do |receiver_role|
                              # Find the users/groups who are receivers for this event
                      Severity: Minor
                      Found in src/api/app/models/event_subscription/find_for_event.rb - About 5 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 check_action_permission! has a Cognitive Complexity of 41 (exceeds 8 allowed). Consider refactoring.
                      Open

                        def check_action_permission!(skip_source = nil)
                          # find objects if specified or report error
                          role = nil
                          sprj = nil
                          if person_name
                      Severity: Minor
                      Found in src/api/app/models/bs_request_action.rb - About 5 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

                      Severity
                      Category
                      Status
                      Source
                      Language