
* root: move database calls from ready() to dedicated startup signal Signed-off-by: Jens Langhammer <jens@goauthentik.io> * optimise gunicorn startup to only do DB code in one worker Signed-off-by: Jens Langhammer <jens@goauthentik.io> * always use 2 workers in compose Signed-off-by: Jens Langhammer <jens@goauthentik.io> * send startup signals for test runner Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove k8s import that isn't really needed Signed-off-by: Jens Langhammer <jens@goauthentik.io> * ci: bump nested actions Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix @reconcile_app not triggering reconcile due to changed functions Signed-off-by: Jens Langhammer <jens@goauthentik.io> * connect startup with uid Signed-off-by: Jens Langhammer <jens@goauthentik.io> * adjust some log levels Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove internal healthcheck we didn't really use it to do anything, and we shouldn't have to since the live/ready probes are handled by django anyways and so the container runtime will restart the server if needed Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add setproctitle for gunicorn and celery process titles Signed-off-by: Jens Langhammer <jens@goauthentik.io> * configure structlog early to use it Signed-off-by: Jens Langhammer <jens@goauthentik.io> * Revert "configure structlog early to use it" This reverts commit 16778fdbbca0f5c474d376c2f85c6f8032c06044. * Revert "adjust some log levels" This reverts commit a129f7ab6aecf27f1206aea1ad8384ce897b74ad. Signed-off-by: Jens Langhammer <jens@goauthentik.io> # Conflicts: # authentik/root/settings.py * optimize startup to not spawn a bunch of one-off processes Signed-off-by: Jens Langhammer <jens@goauthentik.io> * idk why this shows up Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
65 lines
1.9 KiB
Python
65 lines
1.9 KiB
Python
"""authentik lib reflection utilities"""
|
|
|
|
import os
|
|
from importlib import import_module
|
|
from pathlib import Path
|
|
from tempfile import gettempdir
|
|
|
|
from django.conf import settings
|
|
|
|
from authentik.lib.config import CONFIG
|
|
|
|
SERVICE_HOST_ENV_NAME = "KUBERNETES_SERVICE_HOST"
|
|
|
|
|
|
def all_subclasses(cls, sort=True):
|
|
"""Recursively return all subclassess of cls"""
|
|
classes = set(cls.__subclasses__()).union(
|
|
[s for c in cls.__subclasses__() for s in all_subclasses(c, sort=sort)]
|
|
)
|
|
# Check if we're in debug mode, if not exclude classes which have `__debug_only__`
|
|
if not settings.DEBUG:
|
|
# Filter class out when __debug_only__ is not False
|
|
classes = [x for x in classes if not getattr(x, "__debug_only__", False)]
|
|
# classes = filter(lambda x: not getattr(x, "__debug_only__", False), classes)
|
|
if sort:
|
|
return sorted(classes, key=lambda x: x.__name__)
|
|
return classes
|
|
|
|
|
|
def class_to_path(cls: type) -> str:
|
|
"""Turn Class (Class or instance) into module path"""
|
|
return f"{cls.__module__}.{cls.__name__}"
|
|
|
|
|
|
def path_to_class(path: str = "") -> type:
|
|
"""Import module and return class"""
|
|
parts = path.split(".")
|
|
package = ".".join(parts[:-1])
|
|
_class = getattr(import_module(package), parts[-1])
|
|
return _class
|
|
|
|
|
|
def get_apps():
|
|
"""Get list of all authentik apps"""
|
|
from django.apps.registry import apps
|
|
|
|
for _app in apps.get_app_configs():
|
|
if _app.name.startswith("authentik"):
|
|
yield _app
|
|
|
|
|
|
def get_env() -> str:
|
|
"""Get environment in which authentik is currently running"""
|
|
if "CI" in os.environ:
|
|
return "ci"
|
|
if CONFIG.get_bool("debug"):
|
|
return "dev"
|
|
if SERVICE_HOST_ENV_NAME in os.environ:
|
|
return "kubernetes"
|
|
if (Path(gettempdir()) / "authentik-mode").exists():
|
|
return "compose"
|
|
if "AK_APPLIANCE" in os.environ:
|
|
return os.environ["AK_APPLIANCE"]
|
|
return "custom"
|