jbox-web/redmine_git_hosting

View on GitHub

Showing 61 of 72 total issues

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

        def valid_name?(name)
          return false unless name.is_a? String

          return false if name.start_with? '-', '/', 'refs/heads/', 'refs/remotes/'
          return false if name == 'HEAD'
Severity: Minor
Found in lib/redmine/scm/adapters/xitolite_adapter.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 git_config has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    def git_config
      repo_conf = {}

      # This is needed for all Redmine repositories
      repo_conf['redminegitolite.projectid']     = project.identifier.to_s
Severity: Minor
Found in app/models/concerns/gitolitable/config.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 initialize has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

        def initialize(url, root_url = nil, login = nil, password = nil, path_encoding = nil)
Severity: Minor
Found in lib/redmine/scm/adapters/xitolite_adapter.rb - About 35 mins to fix

    Method destroy has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def destroy
        return unless request.delete?
    
        if @gitolite_public_key.user == @user || @user.admin?
          if @gitolite_public_key.destroy
    Severity: Minor
    Found in app/controllers/gitolite_public_keys_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 move_physical_repo has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

            def move_physical_repo(old_path, new_path, new_parent_path)
              ## CASE 0
              if old_path == new_path
                logger.info "#{context} : old repository and new repository are identical '#{old_path}', nothing to do, exit !"
                return true

    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_repo_hierarchy has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def check_repo_hierarchy
          ## Storage infos has changed, move repositories!
          if value_has_changed?(:gitolite_global_storage_dir)  ||
             value_has_changed?(:gitolite_redmine_storage_dir) ||
             value_has_changed?(:hierarchical_organisation)
    Severity: Minor
    Found in app/use_cases/settings/apply.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 build_new_credential has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def build_new_credential
        credential = @repository.deployment_credentials.new
        credential.safe_attributes = params[:repository_deployment_credential]
        key = GitolitePublicKey.find_by id: params[:repository_deployment_credential][:gitolite_public_key_id]
    
    
    Severity: Minor
    Found in app/controllers/repository_deployment_credentials_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 git_config_as_hash has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

          def git_config_as_hash(namespace, params)
            value_hash = {}
    
            params.each do |value_pair|
              next if value_pair.empty?
    Severity: Minor
    Found in lib/redmine_git_hosting/commands/git.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 get_hour_from_date has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def get_hour_from_date(date)
        return unless date
    
        time = date.to_time
        zone = User.current.time_zone
    Severity: Minor
    Found in app/reports/report_helper.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 default_repository_has_identifier has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

        def default_repository_has_identifier
          return unless project && (is_default? || set_as_default?)
    
          possibles = Repository.where project_id: project.id
          possibles = possibles.where(identifier: nil).or(possibles.where(identifier: ''))
    Severity: Minor
    Found in app/models/concerns/gitolitable/validations.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 key_uniqueness has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

      def key_uniqueness
        return unless new_record?
    
        existing = GitolitePublicKey.find_by fingerprint: fingerprint
        return unless existing
    Severity: Minor
    Found in app/models/gitolite_public_key.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 find_deployment_credential has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

      def find_deployment_credential
        credential = @repository.deployment_credentials.find params[:id]
      rescue ActiveRecord::RecordNotFound
        render_404
      else
    Severity: Minor
    Found in app/controllers/repository_deployment_credentials_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 entry has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

            def entry(path = nil, identifier = nil)
              parts = path.to_s.split(%r{[/\\]}).select(&:present?)
              search_path = parts[0..-2].join('/')
              search_name = parts[-1]
              if search_path.blank? && search_name.blank?
    Severity: Minor
    Found in lib/redmine/scm/adapters/xitolite_adapter.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 add_redmine_key has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

            def add_redmine_key
              # RedmineGitHosting key must be in RW+ group
              # If not create the RW+ group and add the key
              if perms.empty?
                logger.info "#{context} : No permissions set for '@all' repository, add RedmineGitHosting key"
    Severity: Minor
    Found in lib/redmine_git_hosting/gitolite_wrappers/global/enable_rw_access.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 install! has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def install!
          if !file_exists?
            logger.info "Hook '#{name}' does not exist, installing it ..."
            install_hook
          elsif hook_file_has_changed?
    Severity: Minor
    Found in lib/redmine_git_hosting/gitolite_hook.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 do_reload_config has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def do_reload_config(default_hash)
            ## Refresh Settings cache
            Setting.check_cache
    
            ## Get actual values
    Severity: Minor
    Found in lib/redmine_git_hosting/config/base.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 build_permissions has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def build_permissions
          @permissions['RW+'][''] = gitolite_users[:rewind_users] unless no_users? :rewind_users
          @permissions['RW']['']  = gitolite_users[:write_users]  unless no_users? :write_users
          @permissions['R']['']   = gitolite_users[:read_users]   unless no_users? :read_users
        end
    Severity: Minor
    Found in app/services/permissions_builder/standard.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 method_missing has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def method_missing(method, *args, &block)
          return super(method, *args, &block) unless io_method? method
    
          # Shouldn't happen, but might be problem
          if @read_stream.nil?
    Severity: Minor
    Found in lib/redmine_git_hosting/shell_redirector.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 parse_refspec has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def parse_refspec(spec)
            parsed_refspec = spec.match REF_COMPONENT_REGEX
            return if parsed_refspec.nil?
    
            if parsed_refspec[1]
    Severity: Minor
    Found in lib/redmine_git_hosting/utils/git.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 smart_http_enabled_for_download? has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

        def smart_http_enabled_for_download?(repository, ssl: false)
          # SmartHTTP is disabled
          return false unless repository.smart_http_enabled?
          # HTTPS only but no SSL
          return false if repository.only_https_access_enabled? && !ssl
    Severity: Minor
    Found in lib/redmine_git_hosting/git_access.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

    Severity
    Category
    Status
    Source
    Language