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

34 lines
813 B
Python
Raw Normal View History

2018-11-14 18:14:14 +00:00
"""passbook lib reflection utilities"""
from importlib import import_module
def class_to_path(cls):
"""Turn Class (Class or instance) into module path"""
2019-12-31 11:51:16 +00:00
return "%s.%s" % (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
2018-11-22 12:12:36 +00:00
2019-12-31 11:51:16 +00:00
2018-11-22 12:12:36 +00:00
def app(name):
"""Return true if app with `name` is enabled"""
from django.conf import settings
2019-12-31 11:51:16 +00:00
2018-11-22 12:12:36 +00:00
return name in settings.INSTALLED_APPS