This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/lib/utils/reflection.py

44 lines
1.3 KiB
Python
Raw Normal View History

2018-11-14 18:14:14 +00:00
"""passbook lib reflection utilities"""
from importlib import import_module
from django.conf import settings
2018-11-14 18:14:14 +00:00
2020-05-13 09:57:19 +00:00
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)
2020-05-13 09:57:19 +00:00
if sort:
return sorted(classes, key=lambda x: x.__name__)
return classes
2018-11-14 18:14:14 +00:00
def class_to_path(cls):
"""Turn Class (Class or instance) into module path"""
2020-05-13 09:57:19 +00:00
return f"{cls.__module__}.{cls.__name__}"
2018-11-14 18:14:14 +00:00
def path_to_class(path):
"""Import module and return class"""
if not path:
return None
2019-12-31 11:51:16 +00:00
parts = path.split(".")
package = ".".join(parts[:-1])
2018-11-14 18:14:14 +00:00
_class = getattr(import_module(package), parts[-1])
return _class
def get_apps():
"""Get list of all passbook apps"""
from django.apps.registry import apps
2019-12-31 11:51:16 +00:00
for _app in apps.get_app_configs():
2019-12-31 11:51:16 +00:00
if _app.name.startswith("passbook"):
yield _app