fog/fog-riakcs

View on GitHub

Showing 4 of 6 total issues

Method create_user has 26 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        def create_user(email, name, options = {})
          payload = Fog::JSON.encode({ :email => email, :name => name })
          headers = { 'Content-Type' => 'application/json' }

          if(options[:anonymous])
Severity: Minor
Found in lib/fog/riakcs/provisioning/create_user.rb - About 1 hr to fix

    Method create_user has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

            def create_user(email, name, options = {})
              payload = Fog::JSON.encode({ :email => email, :name => name })
              headers = { 'Content-Type' => 'application/json' }
    
              if(options[:anonymous])
    Severity: Minor
    Found in lib/fog/riakcs/provisioning/create_user.rb - About 55 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 request has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

            def request(params, parse_response = true, &block)
              begin
                response = @raw_connection.request(params.merge({
                  :host     => @host,
                  :path     => "#{@path}/#{params[:path]}",
    Severity: Minor
    Found in lib/fog/riakcs/provisioning.rb - About 55 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 update_mock_user has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def update_mock_user(key_id, user)
            if data[key_id]
              if status = user[:status]
                data[key_id][:status] = status
              end
    Severity: Minor
    Found in lib/fog/riakcs/user_utils.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