inertia186/drotto

View on GitHub
lib/drotto/bounce_job.rb

Summary

Maintainability
F
1 wk
Test Coverage

Method stream has a Cognitive Complexity of 122 (exceeds 5 allowed). Consider refactoring.
Open

    def stream(max_ops = -1)
      @limit ||= 200
      stream = Radiator::Stream.new(chain_options)
      count = 0
      
Severity: Minor
Found in lib/drotto/bounce_job.rb - About 2 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

Method perform has a Cognitive Complexity of 64 (exceeds 5 allowed). Consider refactoring.
Open

    def perform(pretend = false)
      
      if voting_in_progress? && !pretend
        debug "Voting in progress, bounce suspended ..."
        sleep 120
Severity: Minor
Found in lib/drotto/bounce_job.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 force_bounce! has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
Open

    def force_bounce!(trx_id)
      if trx_id.to_s.size == 0
        warning "Empty transaction id."
        return
      end
Severity: Minor
Found in lib/drotto/bounce_job.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

File bounce_job.rb has 382 lines of code (exceeds 250 allowed). Consider refactoring.
Open

module DrOtto
  class BounceJob
    include Chain
    
    VIRTUAL_OP_TRANSACTION_ID = '0000000000000000000000000000000000000000'
Severity: Minor
Found in lib/drotto/bounce_job.rb - About 5 hrs to fix

    Method stream has 91 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        def stream(max_ops = -1)
          @limit ||= 200
          stream = Radiator::Stream.new(chain_options)
          count = 0
          
    Severity: Major
    Found in lib/drotto/bounce_job.rb - About 3 hrs to fix

      Method perform has 71 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          def perform(pretend = false)
            
            if voting_in_progress? && !pretend
              debug "Voting in progress, bounce suspended ..."
              sleep 120
      Severity: Major
      Found in lib/drotto/bounce_job.rb - About 2 hrs to fix

        Method force_bounce! has 68 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            def force_bounce!(trx_id)
              if trx_id.to_s.size == 0
                warning "Empty transaction id."
                return
              end
        Severity: Major
        Found in lib/drotto/bounce_job.rb - About 2 hrs to fix

          Method init_transactions has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
          Open

              def init_transactions
                return unless @transactions.nil?
                
                response = nil
                
          Severity: Minor
          Found in lib/drotto/bounce_job.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 init_transactions has 30 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              def init_transactions
                return unless @transactions.nil?
                
                response = nil
                
          Severity: Minor
          Found in lib/drotto/bounce_job.rb - About 1 hr to fix

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

                def already_voted?(author, permlink, options = {})
                  if !!options[:use_api]
                    comment = find_comment(author, permlink)
                    
                    if comment.nil?
            Severity: Minor
            Found in lib/drotto/bounce_job.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

            Avoid too many return statements within this method.
            Open

                      return false
            Severity: Major
            Found in lib/drotto/bounce_job.rb - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                        return false
              Severity: Major
              Found in lib/drotto/bounce_job.rb - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                          return false
                Severity: Major
                Found in lib/drotto/bounce_job.rb - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                            return false
                  Severity: Major
                  Found in lib/drotto/bounce_job.rb - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                              return false
                    Severity: Major
                    Found in lib/drotto/bounce_job.rb - About 30 mins to fix

                      There are no issues that match your filters.

                      Category
                      Status