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,
- Read upRead up
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,
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
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
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]}",
- Read upRead up
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)
- Read upRead up
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"