fog/fog-radosgw

View on GitHub

Showing 6 of 12 total issues

Method signature has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

      def signature(params, expires)
        headers = params[:headers] || {}

        string_to_sign = [
          params[:method].to_s.upcase,
Severity: Minor
Found in lib/fog/radosgw/utils.rb - About 2 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 signature has 46 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def signature(params, expires)
        headers = params[:headers] || {}

        string_to_sign = [
          params[:method].to_s.upcase,
Severity: Minor
Found in lib/fog/radosgw/utils.rb - About 1 hr to fix

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

            def create_user(user_id, display_name, email, options = {})
              if user_exists?(user_id)
                raise Fog::Radosgw::Provisioning::UserAlreadyExists, "User with user_id #{user_id} already exists."
              end
    
    
    Severity: Minor
    Found in lib/fog/radosgw/requests/provisioning/create_user.rb - About 1 hr to fix

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

              def create_user(user_id, display_name, email, options = {})
                if get_user(user_id).status != 404
                  raise Fog::Radosgw::Provisioning::UserAlreadyExists, "User with user_id #{user_id} already exists."
                end
      
      
      Severity: Minor
      Found in lib/fog/radosgw/requests/provisioning/create_user.rb - About 1 hr to fix

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

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

                def get_usage(access_key_id, options = {})
                  path = "admin/usage"
                  t_now = Fog::Time.now
                  start_time  = sanitize_and_convert_time(options[:start_time] || t_now - 86400)
                  end_time    = sanitize_and_convert_time(options[:end_time]   || t_now)
        Severity: Minor
        Found in lib/fog/radosgw/requests/usage/get_usage.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