songkick/oauth2-provider

View on GitHub
lib/songkick/oauth2/provider/authorization.rb

Summary

Maintainability
B
6 hrs
Test Coverage

Method validate! has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

        def validate!
          if @transport_error
            @error = @transport_error.error
            @error_description = @transport_error.error_description
            return
Severity: Minor
Found in lib/songkick/oauth2/provider/authorization.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 redirect_uri has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
Open

        def redirect_uri
          return nil unless @client
          redirect_uris = @client.redirect_uri.split(';')
          base_redirect_uri = if redirect_uris.count > 1
                                @params[REDIRECT_URI]
Severity: Minor
Found in lib/songkick/oauth2/provider/authorization.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 validate! has 36 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        def validate!
          if @transport_error
            @error = @transport_error.error
            @error_description = @transport_error.error_description
            return
Severity: Minor
Found in lib/songkick/oauth2/provider/authorization.rb - About 1 hr to fix

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

            def initialize(resource_owner, params, transport_error = nil)
              @owner  = resource_owner
              @params = params
              @scope  = params[SCOPE]
              @state  = params[STATE]
    Severity: Minor
    Found in lib/songkick/oauth2/provider/authorization.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

    There are no issues that match your filters.

    Category
    Status