rkokkelk/siso

View on GitHub

Showing 22 of 22 total issues

Assignment Branch Condition size for create is too high. [26.27/20]
Open

  def create
    file = params[:file]
    verify_file_type file

    key = session_key @repository

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Assignment Branch Condition size for authentication is too high. [20.42/20]
Open

  def authentication
    repo = Repository.find_by(token: params[:id])

    # Verify if the use can access the requested repository
    if repo.nil? || session[repo.token].nil?

This cop checks that the ABC size of methods is not higher than the configured maximum. The ABC size is based on assignments, branches (method calls), and conditions. See http://c2.com/cgi/wiki?AbcMetric

Method decrypt_aes_256 has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

  def decrypt_aes_256(iv, key, data, encode = true, auth_data = '')
Severity: Minor
Found in app/helpers/crypto_helper.rb - About 35 mins to fix

    Method encrypt_aes_256 has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

      def encrypt_aes_256(iv, key, data, encode = true, auth_data = '')
    Severity: Minor
    Found in app/helpers/crypto_helper.rb - About 35 mins to fix

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

        def verifyIP(ip)
          unless @@ranges
            Rails.logger.error { "Cannot verify IP, @ranges(#{@@ranges})" }
            return false
          end
      Severity: Minor
      Found in app/helpers/ip_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 clear_old_repositories has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        def clear_old_repositories
          repositories = Repository.all
      
          repositories.each do |repository|
            next unless repository.deleted_at.past?
      Severity: Minor
      Found in app/helpers/repositories_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

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

        def read_record(token)
          raise IOError, "Unable to read record (#{token}), does not exist" unless exists_token? token
      
          if Rails.env.heroku?
            brick = Brick.find_by(token: token)
      Severity: Minor
      Found in app/helpers/records_helper.rb and 1 other location - About 25 mins to fix
      app/helpers/records_helper.rb on lines 29..37

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

      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

        def remove_record(token)
          raise IOError, "Unable to delete record (#{token}), does not exist" unless exists_token? token
      
          if Rails.env.heroku?
            brick = Brick.find_by(token: token)
      Severity: Minor
      Found in app/helpers/records_helper.rb and 1 other location - About 25 mins to fix
      app/helpers/records_helper.rb on lines 17..25

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

      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

      Use next to skip iteration.
      Open

            if params[token] && /\A[\da-f]{32}\z/ !~ params[token]

      Use next to skip iteration instead of a condition at the end.

      Example: EnforcedStyle: skipmodifierifs (default)

      # bad
      [1, 2].each do |a|
        if a == 1
          puts a
        end
      end
      
      # good
      [1, 2].each do |a|
        next unless a == 1
        puts a
      end
      
      # good
      [1, 2].each do |o|
        puts o unless o == 1
      end

      Example: EnforcedStyle: always

      # With `always` all conditions at the end of an iteration needs to be
      # replaced by next - with `skip_modifier_ifs` the modifier if like
      # this one are ignored: `[1, 2].each { |a| return 'yes' if a == 1 }`
      
      # bad
      [1, 2].each do |o|
        puts o unless o == 1
      end
      
      # bad
      [1, 2].each do |a|
        if a == 1
          puts a
        end
      end
      
      # good
      [1, 2].each do |a|
        next unless a == 1
        puts a
      end

      Use a guard clause instead of wrapping the code inside a conditional expression.
      Open

          if params[:record_id] && !Record.exists?(repositories_id: repo.id, token: params[:record_id])

      Use a guard clause instead of wrapping the code inside a conditional expression

      Example:

      # bad
      def test
        if something
          work
        end
      end
      
      # good
      def test
        return unless something
        work
      end
      
      # also good
      def test
        work if something
      end
      
      # bad
      if something
        raise 'exception'
      else
        ok
      end
      
      # good
      raise 'exception' if something
      ok

      Use a guard clause instead of wrapping the code inside a conditional expression.
      Open

          if @repository.days_to_deletion <= 7

      Use a guard clause instead of wrapping the code inside a conditional expression

      Example:

      # bad
      def test
        if something
          work
        end
      end
      
      # good
      def test
        return unless something
        work
      end
      
      # also good
      def test
        work if something
      end
      
      # bad
      if something
        raise 'exception'
      else
        ok
      end
      
      # good
      raise 'exception' if something
      ok

      Use snake_case for method names.
      Open

        def verifyIP(ip)
      Severity: Minor
      Found in app/helpers/ip_helper.rb by rubocop

      This cop makes sure that all methods use the configured style, snake_case or camelCase, for their names.

      Example: EnforcedStyle: snake_case (default)

      # bad
      def fooBar; end
      
      # good
      def foo_bar; end

      Example: EnforcedStyle: camelCase

      # bad
      def foo_bar; end
      
      # good
      def fooBar; end

      Use snake_case for method names.
      Open

        def create_CIDR(config_range)
      Severity: Minor
      Found in app/helpers/ip_helper.rb by rubocop

      This cop makes sure that all methods use the configured style, snake_case or camelCase, for their names.

      Example: EnforcedStyle: snake_case (default)

      # bad
      def fooBar; end
      
      # good
      def foo_bar; end

      Example: EnforcedStyle: camelCase

      # bad
      def foo_bar; end
      
      # good
      def fooBar; end

      Replace class var @@ranges with a class instance var.
      Open

        @@ranges ||= []
      Severity: Minor
      Found in app/helpers/ip_helper.rb by rubocop

      This cop checks for uses of class variables. Offenses are signaled only on assignment to class variables to reduce the number of offenses that would be reported.

      Replace class var @@files with a class instance var.
      Open

            @@files = Dir[Rails.root.join('data', '*')]
      Severity: Minor
      Found in test/test_helper.rb by rubocop

      This cop checks for uses of class variables. Offenses are signaled only on assignment to class variables to reduce the number of offenses that would be reported.

      Redundant self detected.
      Open

            generate_password if self.password.nil?
      Severity: Minor
      Found in app/models/repository.rb by rubocop

      This cop checks for redundant uses of self.

      The usage of self is only needed when:

      • Sending a message to same object with zero arguments in presence of a method name clash with an argument or a local variable.

      • Calling an attribute writer to prevent an local variable assignment.

      Note, with using explicit self you can only send messages with public or protected scope, you cannot send private messages this way.

      Note we allow uses of self with operators because it would be awkward otherwise.

      Example:

      # bad
      def foo(bar)
        self.baz
      end
      
      # good
      def foo(bar)
        self.bar  # Resolves name clash with the argument.
      end
      
      def foo
        bar = 1
        self.bar  # Resolves name clash with the local variable.
      end
      
      def foo
        %w[x y z].select do |bar|
          self.bar == bar  # Resolves name clash with argument of the block.
        end
      end

      Use a guard clause instead of wrapping the code inside a conditional expression.
      Open

          unless IpHelper.verifyIP request.remote_ip

      Use a guard clause instead of wrapping the code inside a conditional expression

      Example:

      # bad
      def test
        if something
          work
        end
      end
      
      # good
      def test
        return unless something
        work
      end
      
      # also good
      def test
        work if something
      end
      
      # bad
      if something
        raise 'exception'
      else
        ok
      end
      
      # good
      raise 'exception' if something
      ok

      Space inside parentheses detected.
      Open

            redirect_to( controller: :repositories, action: :new)
      Severity: Minor
      Found in app/controllers/main_controller.rb by rubocop

      Checks for spaces inside ordinary round parentheses.

      Example:

      # bad
      f( 3)
      g = (a + 3 )
      
      # good
      f(3)
      g = (a + 3)

      Non-local exit from iterator, without return value. next, break, Array#find, Array#any?, etc. is preferred.
      Open

              return

      This cop checks for non-local exits from iterators without a return value. It registers an offense under these conditions:

      • No value is returned,
      • the block is preceded by a method chain,
      • the block has arguments,
      • the method which receives the block is not define_method or define_singleton_method,
      • the return is not contained in an inner scope, e.g. a lambda or a method definition.

      Example:

      class ItemApi
        rescue_from ValidationError do |e| # non-iteration block with arg
          return { message: 'validation error' } unless e.errors # allowed
          error_array = e.errors.map do |error| # block with method chain
            return if error.suppress? # warned
            return "#{error.param}: invalid" unless error.message # allowed
            "#{error.param}: #{error.message}"
          end
          { message: 'validation error', errors: error_array }
        end
      
        def update_items
          transaction do # block without arguments
            return unless update_necessary? # allowed
            find_each do |item| # block without method chain
              return if item.stock == 0 # false-negative...
              item.update!(foobar: true)
            end
          end
        end
      end

      Extra empty line detected at method body beginning.
      Open

      
          if token.nil?
      Severity: Minor
      Found in app/models/record.rb by rubocop

      This cops checks if empty lines exist around the bodies of methods.

      Example:

      # good
      
      def foo
        # ...
      end
      
      # bad
      
      def bar
      
        # ...
      
      end
      Severity
      Category
      Status
      Source
      Language