123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- import os
- import threading
- import time
- import warnings
-
- from django.apps import apps
- from django.core.exceptions import ImproperlyConfigured
- from django.core.signals import setting_changed
- from django.db import connections, router
- from django.db.utils import ConnectionRouter
- from django.dispatch import Signal, receiver
- from django.utils import timezone
- from django.utils.formats import FORMAT_SETTINGS, reset_format_cache
- from django.utils.functional import empty
-
- template_rendered = Signal(providing_args=["template", "context"])
-
- # Most setting_changed receivers are supposed to be added below,
- # except for cases where the receiver is related to a contrib app.
-
- # Settings that may not work well when using 'override_settings' (#19031)
- COMPLEX_OVERRIDE_SETTINGS = {'DATABASES'}
-
-
- @receiver(setting_changed)
- def clear_cache_handlers(**kwargs):
- if kwargs['setting'] == 'CACHES':
- from django.core.cache import caches
- caches._caches = threading.local()
-
-
- @receiver(setting_changed)
- def update_installed_apps(**kwargs):
- if kwargs['setting'] == 'INSTALLED_APPS':
- # Rebuild any AppDirectoriesFinder instance.
- from django.contrib.staticfiles.finders import get_finder
- get_finder.cache_clear()
- # Rebuild management commands cache
- from django.core.management import get_commands
- get_commands.cache_clear()
- # Rebuild get_app_template_dirs cache.
- from django.template.utils import get_app_template_dirs
- get_app_template_dirs.cache_clear()
- # Rebuild translations cache.
- from django.utils.translation import trans_real
- trans_real._translations = {}
-
-
- @receiver(setting_changed)
- def update_connections_time_zone(**kwargs):
- if kwargs['setting'] == 'TIME_ZONE':
- # Reset process time zone
- if hasattr(time, 'tzset'):
- if kwargs['value']:
- os.environ['TZ'] = kwargs['value']
- else:
- os.environ.pop('TZ', None)
- time.tzset()
-
- # Reset local time zone cache
- timezone.get_default_timezone.cache_clear()
-
- # Reset the database connections' time zone
- if kwargs['setting'] in {'TIME_ZONE', 'USE_TZ'}:
- for conn in connections.all():
- try:
- del conn.timezone
- except AttributeError:
- pass
- try:
- del conn.timezone_name
- except AttributeError:
- pass
- conn.ensure_timezone()
-
-
- @receiver(setting_changed)
- def clear_routers_cache(**kwargs):
- if kwargs['setting'] == 'DATABASE_ROUTERS':
- router.routers = ConnectionRouter().routers
-
-
- @receiver(setting_changed)
- def reset_template_engines(**kwargs):
- if kwargs['setting'] in {
- 'TEMPLATES',
- 'DEBUG',
- 'FILE_CHARSET',
- 'INSTALLED_APPS',
- }:
- from django.template import engines
- try:
- del engines.templates
- except AttributeError:
- pass
- engines._templates = None
- engines._engines = {}
- from django.template.engine import Engine
- Engine.get_default.cache_clear()
- from django.forms.renderers import get_default_renderer
- get_default_renderer.cache_clear()
-
-
- @receiver(setting_changed)
- def clear_serializers_cache(**kwargs):
- if kwargs['setting'] == 'SERIALIZATION_MODULES':
- from django.core import serializers
- serializers._serializers = {}
-
-
- @receiver(setting_changed)
- def language_changed(**kwargs):
- if kwargs['setting'] in {'LANGUAGES', 'LANGUAGE_CODE', 'LOCALE_PATHS'}:
- from django.utils.translation import trans_real
- trans_real._default = None
- trans_real._active = threading.local()
- if kwargs['setting'] in {'LANGUAGES', 'LOCALE_PATHS'}:
- from django.utils.translation import trans_real
- trans_real._translations = {}
- trans_real.check_for_language.cache_clear()
-
-
- @receiver(setting_changed)
- def localize_settings_changed(**kwargs):
- if kwargs['setting'] in FORMAT_SETTINGS or kwargs['setting'] == 'USE_THOUSAND_SEPARATOR':
- reset_format_cache()
-
-
- @receiver(setting_changed)
- def file_storage_changed(**kwargs):
- if kwargs['setting'] == 'DEFAULT_FILE_STORAGE':
- from django.core.files.storage import default_storage
- default_storage._wrapped = empty
-
-
- @receiver(setting_changed)
- def complex_setting_changed(**kwargs):
- if kwargs['enter'] and kwargs['setting'] in COMPLEX_OVERRIDE_SETTINGS:
- # Considering the current implementation of the signals framework,
- # this stacklevel shows the line containing the override_settings call.
- warnings.warn("Overriding setting %s can lead to unexpected behavior."
- % kwargs['setting'], stacklevel=6)
-
-
- @receiver(setting_changed)
- def root_urlconf_changed(**kwargs):
- if kwargs['setting'] == 'ROOT_URLCONF':
- from django.urls import clear_url_caches, set_urlconf
- clear_url_caches()
- set_urlconf(None)
-
-
- @receiver(setting_changed)
- def static_storage_changed(**kwargs):
- if kwargs['setting'] in {
- 'STATICFILES_STORAGE',
- 'STATIC_ROOT',
- 'STATIC_URL',
- }:
- from django.contrib.staticfiles.storage import staticfiles_storage
- staticfiles_storage._wrapped = empty
-
-
- @receiver(setting_changed)
- def static_finders_changed(**kwargs):
- if kwargs['setting'] in {
- 'STATICFILES_DIRS',
- 'STATIC_ROOT',
- }:
- from django.contrib.staticfiles.finders import get_finder
- get_finder.cache_clear()
-
-
- @receiver(setting_changed)
- def auth_password_validators_changed(**kwargs):
- if kwargs['setting'] == 'AUTH_PASSWORD_VALIDATORS':
- from django.contrib.auth.password_validation import get_default_password_validators
- get_default_password_validators.cache_clear()
-
-
- @receiver(setting_changed)
- def user_model_swapped(**kwargs):
- if kwargs['setting'] == 'AUTH_USER_MODEL':
- apps.clear_cache()
- try:
- from django.contrib.auth import get_user_model
- UserModel = get_user_model()
- except ImproperlyConfigured:
- # Some tests set an invalid AUTH_USER_MODEL.
- pass
- else:
- from django.contrib.auth import backends
- backends.UserModel = UserModel
-
- from django.contrib.auth import forms
- forms.UserModel = UserModel
-
- from django.contrib.auth.handlers import modwsgi
- modwsgi.UserModel = UserModel
-
- from django.contrib.auth.management.commands import changepassword
- changepassword.UserModel = UserModel
-
- from django.contrib.auth import views
- views.UserModel = UserModel
|