1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
from django.apps import apps
class AppSettings:
def __init__(self, prefix):
self.prefix = prefix
def _setting(self, name, dflt):
from allauth.utils import get_setting
return get_setting(self.prefix + name, dflt)
@property
def SITES_ENABLED(self):
return apps.is_installed("django.contrib.sites")
@property
def SOCIALACCOUNT_ENABLED(self):
return apps.is_installed("allauth.socialaccount")
@property
def SOCIALACCOUNT_ONLY(self) -> bool:
from allauth.utils import get_setting
return get_setting("SOCIALACCOUNT_ONLY", False)
@property
def MFA_ENABLED(self):
return apps.is_installed("allauth.mfa")
@property
def USERSESSIONS_ENABLED(self):
return apps.is_installed("allauth.usersessions")
@property
def HEADLESS_ENABLED(self):
return apps.is_installed("allauth.headless")
@property
def HEADLESS_ONLY(self) -> bool:
from allauth.utils import get_setting
return get_setting("HEADLESS_ONLY", False)
@property
def DEFAULT_AUTO_FIELD(self):
return self._setting("DEFAULT_AUTO_FIELD", None)
_app_settings = AppSettings("ALLAUTH_")
def __getattr__(name):
# See https://peps.python.org/pep-0562/
return getattr(_app_settings, name)
|