everydayhero/edh

View on GitHub

Showing 8 of 8 total issues

Method initialize has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
Open

      def initialize(http_status, response_body, error_info = nil)
        if response_body
          self.response_body = response_body.strip
        else
          self.response_body = ''
Severity: Minor
Found in lib/edh/errors.rb - About 3 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 api has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

      def api(path, args = {}, verb = "get", options = {}, &error_checking_block)
        # If a access token is explicitly provided, use that
        # This is explicitly needed in batch requests so GraphCollection
        # results preserve any specific access tokens provided
        args["access_token"] ||= @access_token || @app_access_token if @access_token || @app_access_token
Severity: Minor
Found in lib/edh/api.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 initialize has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def initialize(http_status, response_body, error_info = nil)
        if response_body
          self.response_body = response_body.strip
        else
          self.response_body = ''
Severity: Minor
Found in lib/edh/errors.rb - About 1 hr to fix

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

          def rest_call(pp_method, args = {}, options = {}, verb = "get")
            args = MultiJson.load(args) if args.is_a?(String)
            api("#{pp_method}", args.merge('format' => 'json'), verb, options) do |response|
              # check for REST API-specific errors
              if response.status >= 400
    Severity: Minor
    Found in lib/edh/api/rest_api.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 make_request has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        def self.make_request(path, args, verb, options = {})
          # if the verb isn't get or post, send it as a post argument
          args.merge!({:method => verb}) && verb = "post" if verb != "get" && verb != "post"
    
          # turn all the keys to strings (Faraday has issues with symbols under 1.8.7)
    Severity: Minor
    Found in lib/edh/http_service.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 api has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

          def api(path, args = {}, verb = "get", options = {}, &error_checking_block)
    Severity: Minor
    Found in lib/edh/api.rb - About 35 mins to fix

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

            def process_params(params, prefix = nil, pieces = nil, &block)
              params.inject(pieces || []) do |all, (key, value)|
                key = "#{prefix}%5B#{key}%5D" if prefix
      
                case value
      Severity: Minor
      Found in lib/edh/http_service/multipart_request.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 initialize has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

            def initialize(options = {})
              @app_id = options[:app_id]
              @app_access_token = options[:app_access_token]
              @secret = options[:secret]
              unless @app_id && (@app_access_token || @secret) # make sure we have what we need
      Severity: Minor
      Found in lib/edh/test_users.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