tim-vandecasteele/grape-swagger

View on GitHub
lib/grape-swagger/endpoint.rb

Summary

Maintainability
D
1 day
Test Coverage

Class Endpoint has 27 methods (exceeds 20 allowed). Consider refactoring.
Open

  class Endpoint
    def content_types_for(target_class)
      content_types = (target_class.content_types || {}).values

      if content_types.empty?
Severity: Minor
Found in lib/grape-swagger/endpoint.rb - About 3 hrs to fix

    Method response_object has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

        def response_object(route, markdown)
          codes = (route.http_codes || route.options[:failure] || [])
    
          codes = apply_success_codes(route) + codes
          codes.map! { |x| x.is_a?(Array) ? { code: x[0], message: x[1], model: x[2] } : x }
    Severity: Minor
    Found in lib/grape-swagger/endpoint.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

    File endpoint.rb has 269 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    require 'active_support'
    require 'active_support/core_ext/string/inflections.rb'
    
    module Grape
      class Endpoint
    Severity: Minor
    Found in lib/grape-swagger/endpoint.rb - About 2 hrs to fix

      Method parse_request_params has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
      Open

          def parse_request_params(params)
            array_key = nil
            params.select { |param| public_parameter?(param) }.each_with_object({}) do |param, memo|
              name, options = *param
              param_type = options[:type]
      Severity: Minor
      Found in lib/grape-swagger/endpoint.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 apply_success_codes has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def apply_success_codes(route)
            default_code = GrapeSwagger::DocMethods::StatusCodes.get[route.request_method.downcase.to_sym]
            if @entity.is_a?(Hash)
              default_code[:code] = @entity[:code] if @entity[:code].present?
              default_code[:model] = @entity[:model] if @entity[:model].present?
      Severity: Minor
      Found in lib/grape-swagger/endpoint.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 partition_params has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
      Open

          def partition_params(route)
            declared_params = route.settings[:declared_params] if route.settings[:declared_params].present?
            required, exposed = route.params.partition { |x| x.first.is_a? String }
            required = GrapeSwagger::DocMethods::Headers.parse(route) + required unless route.headers.nil?
      
      
      Severity: Minor
      Found in lib/grape-swagger/endpoint.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 expose_params_from_model has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def expose_params_from_model(model)
            model = model.is_a?(String) ? model.constantize : model
            model_name = model_name(model)
      
            return model_name if @definitions.key?(model_name)
      Severity: Minor
      Found in lib/grape-swagger/endpoint.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

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

          def params_object(route)
            parameters = partition_params(route).map do |param, value|
              value = { required: false }.merge(value) if value.is_a?(Hash)
              _, value = default_type([[param, value]]).first if value == ''
              if value[:type]
      Severity: Minor
      Found in lib/grape-swagger/endpoint.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

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

          def path_item(routes, options)
            routes.each do |route|
              next if hidden?(route, options)
      
              @item, path = GrapeSwagger::DocMethods::PathString.build(route, options)
      Severity: Minor
      Found in lib/grape-swagger/endpoint.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 param_type_is_array? has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def param_type_is_array?(param_type)
            return false unless param_type
            return true if param_type == 'Array'
            param_types = param_type.match(/\[(.*)\]$/)
            return false unless param_types
      Severity: Minor
      Found in lib/grape-swagger/endpoint.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

      Method expose_params has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          def expose_params(value)
            if value.is_a?(Class) && GrapeSwagger.model_parsers.find(value)
              expose_params_from_model(value)
            elsif value.is_a?(String)
              begin
      Severity: Minor
      Found in lib/grape-swagger/endpoint.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

      There are no issues that match your filters.

      Category
      Status