nbulaj/doorkeeper-sequel

View on GitHub

Showing 5 of 5 total issues

Method validates_redirect_uri has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
Open

      def validates_redirect_uri(attribute)
        value = self[attribute]

        # Allow nil? but do not allow empty string
        if value.blank?
Severity: Minor
Found in lib/doorkeeper-sequel/validators/redirect_uri_validator.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 find_or_create_for has 27 lines of code (exceeds 25 allowed). Consider refactoring.
Open

      def find_or_create_for(*args)
         attributes = if args.size > 1
                         {
                           application: args[0],
                           resource_owner: args[1],
Severity: Minor
Found in lib/doorkeeper-sequel/mixins/access_token_mixin.rb - About 1 hr to fix

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

          def validate
            super
            validates_presence %i[name secret uid]
            validates_unique [:uid]
            validates_redirect_uri :redirect_uri
    Severity: Minor
    Found in lib/doorkeeper-sequel/mixins/application_mixin.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 as_json has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
    Open

          def as_json(options = {})
            if (respond_to?(:owner) && owner && owner == options[:current_resource_owner]) ||
               options[:as_owner]
              hash = JSON.parse(to_json, symbolize_names: false)
            else
    Severity: Minor
    Found in lib/doorkeeper-sequel/mixins/application_mixin.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 by_uid_and_secret has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

          def by_uid_and_secret(uid, secret)
            app = by_uid(uid)
            return unless app
            return app if secret.blank? && !app.confidential?
            return unless app.secret_matches?(secret)
    Severity: Minor
    Found in lib/doorkeeper-sequel/mixins/application_mixin.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