Peter-Slump/python-keycloak-client

View on GitHub

Showing 6 of 49 total issues

File openid_connect.py has 255 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from keycloak.mixins import WellKnownMixin

try:
    from urllib.parse import urlencode  # noqa: F041
except ImportError:
Severity: Minor
Found in src/keycloak/openid_connect.py - About 2 hrs to fix

    Function __init__ has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def __init__(self, server_url, *, headers, logger=None, loop=None,
    Severity: Major
    Found in src/keycloak/aio/client.py - About 50 mins to fix

      Function resource_associate_permission has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def resource_associate_permission(self, token, id, name, scopes, **kwargs):
      Severity: Minor
      Found in src/keycloak/uma.py - About 35 mins to fix

        Function __init__ has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def __init__(self, realm_name, client_id, role_name, *args, **kwargs):
        Severity: Minor
        Found in src/keycloak/admin/clientroles.py - About 35 mins to fix

          Function get_permissions has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              def get_permissions(self, token, resource_scopes_tuples=None,
                                  submit_request=False, ticket=None):
                  """
                  Request permissions for user from keycloak server.
          
          
          Severity: Minor
          Found in src/keycloak/authz.py - 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

          Function eval_permissions has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              def eval_permissions(self, token, resource_scopes_tuples=None,
                                   submit_request=False):
                  """
                  Evaluates if user has permission for all the resource scope
                  combinations.
          Severity: Minor
          Found in src/keycloak/authz.py - 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