root: reformat to 100 line width

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-08-03 17:45:16 +02:00
parent b87903a209
commit 77ed25ae34
272 changed files with 825 additions and 2590 deletions

View File

@ -11,12 +11,7 @@ from sentry_sdk.tracing import Span
from structlog.stdlib import BoundLogger, get_logger
from authentik.core.models import User
from authentik.policies.models import (
Policy,
PolicyBinding,
PolicyBindingModel,
PolicyEngineMode,
)
from authentik.policies.models import Policy, PolicyBinding, PolicyBindingModel, PolicyEngineMode
from authentik.policies.process import PolicyProcess, cache_key
from authentik.policies.types import PolicyRequest, PolicyResult
from authentik.root.monitoring import UpdatingGauge
@ -42,9 +37,7 @@ class PolicyProcessInfo:
result: Optional[PolicyResult]
binding: PolicyBinding
def __init__(
self, process: PolicyProcess, connection: Connection, binding: PolicyBinding
):
def __init__(self, process: PolicyProcess, connection: Connection, binding: PolicyBinding):
self.process = process
self.connection = connection
self.binding = binding
@ -62,9 +55,7 @@ class PolicyEngine:
# Allow objects with no policies attached to pass
empty_result: bool
def __init__(
self, pbm: PolicyBindingModel, user: User, request: HttpRequest = None
):
def __init__(self, pbm: PolicyBindingModel, user: User, request: HttpRequest = None):
self.logger = get_logger().bind()
self.mode = pbm.policy_engine_mode
# For backwards compatibility, set empty_result to true
@ -123,15 +114,11 @@ class PolicyEngine:
)
self.__cached_policies.append(cached_policy)
continue
self.logger.debug(
"P_ENG: Evaluating policy", binding=binding, request=self.request
)
self.logger.debug("P_ENG: Evaluating policy", binding=binding, request=self.request)
our_end, task_end = Pipe(False)
task = PolicyProcess(binding, self.request, task_end)
task.daemon = False
self.logger.debug(
"P_ENG: Starting Process", binding=binding, request=self.request
)
self.logger.debug("P_ENG: Starting Process", binding=binding, request=self.request)
if not CURRENT_PROCESS._config.get("daemon"):
task.run()
else:
@ -151,9 +138,7 @@ class PolicyEngine:
@property
def result(self) -> PolicyResult:
"""Get policy-checking result"""
process_results: list[PolicyResult] = [
x.result for x in self.__processes if x.result
]
process_results: list[PolicyResult] = [x.result for x in self.__processes if x.result]
all_results = list(process_results + self.__cached_policies)
if len(all_results) < self.__expected_result_count: # pragma: no cover
raise AssertionError("Got less results than polices")