2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
Settings and configuration for Django.
|
|
|
|
|
|
|
|
Values will be read from the module specified by the DJANGO_SETTINGS_MODULE environment
|
|
|
|
variable, and then from django.conf.global_settings; see the global settings file for
|
|
|
|
a list of all possible variables.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
2009-03-18 08:59:40 +08:00
|
|
|
import re
|
2007-02-12 08:10:09 +08:00
|
|
|
import time # Needed for Windows
|
2009-03-02 12:48:22 +08:00
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.conf import global_settings
|
2009-03-02 12:48:22 +08:00
|
|
|
from django.utils.functional import LazyObject
|
2009-03-19 00:55:59 +08:00
|
|
|
from django.utils import importlib
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
ENVIRONMENT_VARIABLE = "DJANGO_SETTINGS_MODULE"
|
|
|
|
|
2009-03-02 12:48:22 +08:00
|
|
|
class LazySettings(LazyObject):
|
2006-05-17 05:28:06 +08:00
|
|
|
"""
|
|
|
|
A lazy proxy for either global Django settings or a custom settings object.
|
|
|
|
The user can manually configure settings prior to using them. Otherwise,
|
|
|
|
Django uses the settings module pointed to by DJANGO_SETTINGS_MODULE.
|
|
|
|
"""
|
2009-03-02 12:48:22 +08:00
|
|
|
def _setup(self):
|
2006-05-17 05:28:06 +08:00
|
|
|
"""
|
|
|
|
Load the settings module pointed to by the environment variable. This
|
|
|
|
is used the first time we need any settings at all, if the user has not
|
|
|
|
previously configured the settings manually.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
settings_module = os.environ[ENVIRONMENT_VARIABLE]
|
|
|
|
if not settings_module: # If it's set but is an empty string.
|
|
|
|
raise KeyError
|
|
|
|
except KeyError:
|
2007-12-19 11:31:26 +08:00
|
|
|
# NOTE: This is arguably an EnvironmentError, but that causes
|
|
|
|
# problems with Python's interactive help.
|
|
|
|
raise ImportError("Settings cannot be imported, because environment variable %s is undefined." % ENVIRONMENT_VARIABLE)
|
2006-05-17 05:28:06 +08:00
|
|
|
|
2009-03-02 12:48:22 +08:00
|
|
|
self._wrapped = Settings(settings_module)
|
2006-05-17 05:28:06 +08:00
|
|
|
|
|
|
|
def configure(self, default_settings=global_settings, **options):
|
|
|
|
"""
|
|
|
|
Called to manually configure the settings. The 'default_settings'
|
|
|
|
parameter sets where to retrieve any unspecified values from (its
|
|
|
|
argument must support attribute access (__getattr__)).
|
|
|
|
"""
|
2009-03-02 16:24:14 +08:00
|
|
|
if self._wrapped != None:
|
2010-01-11 02:36:20 +08:00
|
|
|
raise RuntimeError('Settings already configured.')
|
2006-05-17 05:28:06 +08:00
|
|
|
holder = UserSettingsHolder(default_settings)
|
|
|
|
for name, value in options.items():
|
|
|
|
setattr(holder, name, value)
|
2009-03-02 12:48:22 +08:00
|
|
|
self._wrapped = holder
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2008-07-06 20:55:24 +08:00
|
|
|
def configured(self):
|
|
|
|
"""
|
|
|
|
Returns True if the settings have already been configured.
|
|
|
|
"""
|
2009-03-02 12:48:22 +08:00
|
|
|
return bool(self._wrapped)
|
2008-07-06 20:55:24 +08:00
|
|
|
configured = property(configured)
|
|
|
|
|
2006-06-08 13:00:13 +08:00
|
|
|
class Settings(object):
|
2006-05-02 09:31:56 +08:00
|
|
|
def __init__(self, settings_module):
|
|
|
|
# update this dict from global settings (but only for ALL_CAPS settings)
|
|
|
|
for setting in dir(global_settings):
|
|
|
|
if setting == setting.upper():
|
|
|
|
setattr(self, setting, getattr(global_settings, setting))
|
|
|
|
|
|
|
|
# store the settings module in case someone later cares
|
|
|
|
self.SETTINGS_MODULE = settings_module
|
|
|
|
|
|
|
|
try:
|
2009-03-19 00:55:59 +08:00
|
|
|
mod = importlib.import_module(self.SETTINGS_MODULE)
|
2006-05-02 09:31:56 +08:00
|
|
|
except ImportError, e:
|
2010-01-11 02:36:20 +08:00
|
|
|
raise ImportError("Could not import settings '%s' (Is it on sys.path? Does it have syntax errors?): %s" % (self.SETTINGS_MODULE, e))
|
2006-05-02 09:31:56 +08:00
|
|
|
|
|
|
|
# Settings that should be converted into tuples if they're mistakenly entered
|
|
|
|
# as strings.
|
|
|
|
tuple_settings = ("INSTALLED_APPS", "TEMPLATE_DIRS")
|
|
|
|
|
|
|
|
for setting in dir(mod):
|
|
|
|
if setting == setting.upper():
|
|
|
|
setting_value = getattr(mod, setting)
|
|
|
|
if setting in tuple_settings and type(setting_value) == str:
|
|
|
|
setting_value = (setting_value,) # In case the user forgot the comma.
|
|
|
|
setattr(self, setting, setting_value)
|
|
|
|
|
|
|
|
# Expand entries in INSTALLED_APPS like "django.contrib.*" to a list
|
|
|
|
# of all those apps.
|
|
|
|
new_installed_apps = []
|
|
|
|
for app in self.INSTALLED_APPS:
|
|
|
|
if app.endswith('.*'):
|
2009-03-19 00:55:59 +08:00
|
|
|
app_mod = importlib.import_module(app[:-2])
|
|
|
|
appdir = os.path.dirname(app_mod.__file__)
|
2008-08-25 20:58:18 +08:00
|
|
|
app_subdirs = os.listdir(appdir)
|
|
|
|
app_subdirs.sort()
|
2009-03-18 08:59:40 +08:00
|
|
|
name_pattern = re.compile(r'[a-zA-Z]\w*')
|
2008-08-25 20:58:18 +08:00
|
|
|
for d in app_subdirs:
|
2009-03-18 08:59:40 +08:00
|
|
|
if name_pattern.match(d) and os.path.isdir(os.path.join(appdir, d)):
|
2006-05-02 09:31:56 +08:00
|
|
|
new_installed_apps.append('%s.%s' % (app[:-2], d))
|
|
|
|
else:
|
|
|
|
new_installed_apps.append(app)
|
|
|
|
self.INSTALLED_APPS = new_installed_apps
|
|
|
|
|
2010-09-27 05:36:22 +08:00
|
|
|
if hasattr(time, 'tzset') and self.TIME_ZONE:
|
2010-09-11 03:36:51 +08:00
|
|
|
# When we can, attempt to validate the timezone. If we can't find
|
|
|
|
# this file, no check happens and it's harmless.
|
|
|
|
zoneinfo_root = '/usr/share/zoneinfo'
|
|
|
|
if (os.path.exists(zoneinfo_root) and not
|
|
|
|
os.path.exists(os.path.join(zoneinfo_root, *(self.TIME_ZONE.split('/'))))):
|
|
|
|
raise ValueError("Incorrect timezone setting: %s" % self.TIME_ZONE)
|
2007-02-12 08:10:09 +08:00
|
|
|
# Move the time zone info into os.environ. See ticket #2315 for why
|
|
|
|
# we don't do this unconditionally (breaks Windows).
|
|
|
|
os.environ['TZ'] = self.TIME_ZONE
|
2007-09-16 02:11:43 +08:00
|
|
|
time.tzset()
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2006-06-08 13:00:13 +08:00
|
|
|
class UserSettingsHolder(object):
|
2006-05-17 05:28:06 +08:00
|
|
|
"""
|
|
|
|
Holder for user configured settings.
|
|
|
|
"""
|
2006-07-04 11:58:45 +08:00
|
|
|
# SETTINGS_MODULE doesn't make much sense in the manually configured
|
2006-05-17 05:28:06 +08:00
|
|
|
# (standalone) case.
|
|
|
|
SETTINGS_MODULE = None
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2006-05-17 05:28:06 +08:00
|
|
|
def __init__(self, default_settings):
|
|
|
|
"""
|
|
|
|
Requests for configuration variables not in this class are satisfied
|
|
|
|
from the module specified in default_settings (if possible).
|
|
|
|
"""
|
|
|
|
self.default_settings = default_settings
|
|
|
|
|
|
|
|
def __getattr__(self, name):
|
|
|
|
return getattr(self.default_settings, name)
|
|
|
|
|
2009-10-20 05:48:06 +08:00
|
|
|
def __dir__(self):
|
2009-12-09 09:34:47 +08:00
|
|
|
return self.__dict__.keys() + dir(self.default_settings)
|
2006-05-17 05:28:06 +08:00
|
|
|
|
2009-10-20 05:48:06 +08:00
|
|
|
# For Python < 2.6:
|
|
|
|
__members__ = property(lambda self: self.__dir__())
|
|
|
|
|
2006-05-17 05:28:06 +08:00
|
|
|
settings = LazySettings()
|
2006-05-02 09:31:56 +08:00
|
|
|
|