kotti/security.py

Summary

Maintainability
C
1 day
Test Coverage

File security.py has 427 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from collections.abc import MutableMapping
from contextlib import contextmanager
from datetime import datetime
from typing import Dict
from typing import Iterable
Severity: Minor
Found in kotti/security.py - About 6 hrs to fix

    Function list_groups_ext has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

    def list_groups_ext(name, context=None, _seen=None, _inherited=None):
        name = name
        groups = set()
        recursing = _inherited is not None
        _inherited = _inherited or set()
    Severity: Minor
    Found in kotti/security.py - 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

    Function search has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def search(self, match: Optional[str] = "any", **kwargs) -> Query:
            """ Search the principal database.
    
            :param match: ``any`` to return all principals matching any search
                          param, ``all`` to return only principals matching
    Severity: Minor
    Found in kotti/security.py - 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

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

        def __init__(
    Severity: Major
    Found in kotti/security.py - About 50 mins to fix

      There are no issues that match your filters.

      Category
      Status