2012-09-20 16:06:27 +04:00
|
|
|
"""
|
|
|
|
Settings for REST framework are all namespaced in the REST_FRAMEWORK setting.
|
|
|
|
For example your project's `settings.py` file might look like this:
|
|
|
|
|
|
|
|
REST_FRAMEWORK = {
|
2012-10-18 02:09:11 +04:00
|
|
|
'DEFAULT_RENDERER_CLASSES': (
|
2012-09-20 16:06:27 +04:00
|
|
|
'rest_framework.renderers.JSONRenderer',
|
|
|
|
'rest_framework.renderers.YAMLRenderer',
|
|
|
|
)
|
2012-10-18 02:09:11 +04:00
|
|
|
'DEFAULT_PARSER_CLASSES': (
|
2012-09-20 16:06:27 +04:00
|
|
|
'rest_framework.parsers.JSONParser',
|
|
|
|
'rest_framework.parsers.YAMLParser',
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
This module provides the `api_setting` object, that is used to access
|
|
|
|
REST framework settings, checking for user settings first, then falling
|
|
|
|
back to the defaults.
|
|
|
|
"""
|
2013-02-05 00:55:35 +04:00
|
|
|
from __future__ import unicode_literals
|
2013-03-01 19:24:25 +04:00
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
from django.conf import settings
|
|
|
|
from django.utils import importlib
|
2013-03-01 19:24:25 +04:00
|
|
|
|
2013-03-06 16:19:39 +04:00
|
|
|
from rest_framework import ISO_8601
|
2013-01-03 14:41:07 +04:00
|
|
|
from rest_framework.compat import six
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
|
2012-10-10 15:54:40 +04:00
|
|
|
USER_SETTINGS = getattr(settings, 'REST_FRAMEWORK', None)
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
DEFAULTS = {
|
2013-05-07 16:00:44 +04:00
|
|
|
# Base API policies
|
2012-10-18 02:09:11 +04:00
|
|
|
'DEFAULT_RENDERER_CLASSES': (
|
2012-09-20 16:06:27 +04:00
|
|
|
'rest_framework.renderers.JSONRenderer',
|
2012-10-09 18:58:48 +04:00
|
|
|
'rest_framework.renderers.BrowsableAPIRenderer',
|
2012-09-20 16:06:27 +04:00
|
|
|
),
|
2012-10-18 02:09:11 +04:00
|
|
|
'DEFAULT_PARSER_CLASSES': (
|
2012-09-20 16:06:27 +04:00
|
|
|
'rest_framework.parsers.JSONParser',
|
2012-09-26 16:09:20 +04:00
|
|
|
'rest_framework.parsers.FormParser',
|
2012-09-26 15:40:11 +04:00
|
|
|
'rest_framework.parsers.MultiPartParser'
|
2012-09-20 16:06:27 +04:00
|
|
|
),
|
2012-10-18 02:09:11 +04:00
|
|
|
'DEFAULT_AUTHENTICATION_CLASSES': (
|
2012-09-20 16:06:27 +04:00
|
|
|
'rest_framework.authentication.SessionAuthentication',
|
2012-10-15 16:27:50 +04:00
|
|
|
'rest_framework.authentication.BasicAuthentication'
|
2012-09-20 16:06:27 +04:00
|
|
|
),
|
2012-10-27 23:04:33 +04:00
|
|
|
'DEFAULT_PERMISSION_CLASSES': (
|
|
|
|
'rest_framework.permissions.AllowAny',
|
|
|
|
),
|
|
|
|
'DEFAULT_THROTTLE_CLASSES': (
|
|
|
|
),
|
|
|
|
|
2012-10-18 02:09:11 +04:00
|
|
|
'DEFAULT_CONTENT_NEGOTIATION_CLASS':
|
2012-09-20 20:44:34 +04:00
|
|
|
'rest_framework.negotiation.DefaultContentNegotiation',
|
2013-05-07 16:00:44 +04:00
|
|
|
|
|
|
|
# Genric view behavior
|
2012-10-18 02:09:11 +04:00
|
|
|
'DEFAULT_MODEL_SERIALIZER_CLASS':
|
|
|
|
'rest_framework.serializers.ModelSerializer',
|
|
|
|
'DEFAULT_PAGINATION_SERIALIZER_CLASS':
|
|
|
|
'rest_framework.pagination.PaginationSerializer',
|
2013-05-07 16:00:44 +04:00
|
|
|
'DEFAULT_FILTER_BACKENDS': (),
|
2012-10-18 02:09:11 +04:00
|
|
|
|
2013-05-07 16:00:44 +04:00
|
|
|
# Throttling
|
2012-09-27 00:47:19 +04:00
|
|
|
'DEFAULT_THROTTLE_RATES': {
|
|
|
|
'user': None,
|
|
|
|
'anon': None,
|
|
|
|
},
|
2012-11-17 02:45:57 +04:00
|
|
|
|
|
|
|
# Pagination
|
2012-10-04 14:26:41 +04:00
|
|
|
'PAGINATE_BY': None,
|
2012-11-17 02:45:57 +04:00
|
|
|
'PAGINATE_BY_PARAM': None,
|
|
|
|
|
|
|
|
# Authentication
|
2012-09-20 16:06:27 +04:00
|
|
|
'UNAUTHENTICATED_USER': 'django.contrib.auth.models.AnonymousUser',
|
|
|
|
'UNAUTHENTICATED_TOKEN': None,
|
|
|
|
|
2012-11-17 02:45:57 +04:00
|
|
|
# Browser enhancements
|
2012-09-20 16:06:27 +04:00
|
|
|
'FORM_METHOD_OVERRIDE': '_method',
|
|
|
|
'FORM_CONTENT_OVERRIDE': '_content',
|
|
|
|
'FORM_CONTENTTYPE_OVERRIDE': '_content_type',
|
2012-10-02 18:24:42 +04:00
|
|
|
'URL_ACCEPT_OVERRIDE': 'accept',
|
2012-09-20 16:06:27 +04:00
|
|
|
'URL_FORMAT_OVERRIDE': 'format',
|
|
|
|
|
2012-11-15 14:15:05 +04:00
|
|
|
'FORMAT_SUFFIX_KWARG': 'format',
|
2013-03-01 16:16:00 +04:00
|
|
|
|
|
|
|
# Input and output formats
|
|
|
|
'DATE_INPUT_FORMATS': (
|
2013-03-06 16:19:39 +04:00
|
|
|
ISO_8601,
|
2013-03-01 16:16:00 +04:00
|
|
|
),
|
2013-03-06 16:19:39 +04:00
|
|
|
'DATE_FORMAT': ISO_8601,
|
2013-03-01 16:16:00 +04:00
|
|
|
|
|
|
|
'DATETIME_INPUT_FORMATS': (
|
2013-03-06 16:19:39 +04:00
|
|
|
ISO_8601,
|
2013-03-01 16:16:00 +04:00
|
|
|
),
|
2013-03-06 16:19:39 +04:00
|
|
|
'DATETIME_FORMAT': ISO_8601,
|
2013-03-01 16:16:00 +04:00
|
|
|
|
|
|
|
'TIME_INPUT_FORMATS': (
|
2013-03-06 16:19:39 +04:00
|
|
|
ISO_8601,
|
2013-03-01 16:16:00 +04:00
|
|
|
),
|
2013-03-06 16:19:39 +04:00
|
|
|
'TIME_FORMAT': ISO_8601,
|
2013-05-07 16:00:44 +04:00
|
|
|
|
|
|
|
# Pending deprecation
|
|
|
|
'FILTER_BACKEND': None,
|
2012-09-20 16:06:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# List of settings that may be in string import notation.
|
|
|
|
IMPORT_STRINGS = (
|
2012-10-18 02:09:11 +04:00
|
|
|
'DEFAULT_RENDERER_CLASSES',
|
|
|
|
'DEFAULT_PARSER_CLASSES',
|
|
|
|
'DEFAULT_AUTHENTICATION_CLASSES',
|
|
|
|
'DEFAULT_PERMISSION_CLASSES',
|
|
|
|
'DEFAULT_THROTTLE_CLASSES',
|
|
|
|
'DEFAULT_CONTENT_NEGOTIATION_CLASS',
|
|
|
|
'DEFAULT_MODEL_SERIALIZER_CLASS',
|
|
|
|
'DEFAULT_PAGINATION_SERIALIZER_CLASS',
|
2013-05-07 16:00:44 +04:00
|
|
|
'DEFAULT_FILTER_BACKENDS',
|
2012-11-08 01:07:24 +04:00
|
|
|
'FILTER_BACKEND',
|
2012-09-20 16:06:27 +04:00
|
|
|
'UNAUTHENTICATED_USER',
|
|
|
|
'UNAUTHENTICATED_TOKEN',
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2012-10-10 15:54:40 +04:00
|
|
|
def perform_import(val, setting_name):
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
|
|
|
If the given setting is a string import notation,
|
|
|
|
then perform the necessary import or imports.
|
|
|
|
"""
|
2013-01-03 14:41:07 +04:00
|
|
|
if isinstance(val, six.string_types):
|
2012-10-10 15:54:40 +04:00
|
|
|
return import_from_string(val, setting_name)
|
2012-09-20 16:06:27 +04:00
|
|
|
elif isinstance(val, (list, tuple)):
|
2012-10-10 15:54:40 +04:00
|
|
|
return [import_from_string(item, setting_name) for item in val]
|
2012-09-20 16:06:27 +04:00
|
|
|
return val
|
|
|
|
|
|
|
|
|
2012-10-10 15:54:40 +04:00
|
|
|
def import_from_string(val, setting_name):
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
|
|
|
Attempt to import a class from a string representation.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
# Nod to tastypie's use of importlib.
|
|
|
|
parts = val.split('.')
|
|
|
|
module_path, class_name = '.'.join(parts[:-1]), parts[-1]
|
|
|
|
module = importlib.import_module(module_path)
|
|
|
|
return getattr(module, class_name)
|
2013-01-07 16:52:20 +04:00
|
|
|
except ImportError as e:
|
|
|
|
msg = "Could not import '%s' for API setting '%s'. %s: %s." % (val, setting_name, e.__class__.__name__, e)
|
2012-09-20 16:06:27 +04:00
|
|
|
raise ImportError(msg)
|
|
|
|
|
|
|
|
|
|
|
|
class APISettings(object):
|
|
|
|
"""
|
|
|
|
A settings object, that allows API settings to be accessed as properties.
|
|
|
|
For example:
|
|
|
|
|
|
|
|
from rest_framework.settings import api_settings
|
2012-10-18 02:09:11 +04:00
|
|
|
print api_settings.DEFAULT_RENDERER_CLASSES
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
Any setting with string import paths will be automatically resolved
|
|
|
|
and return the class, rather than the string literal.
|
|
|
|
"""
|
2012-10-10 15:54:40 +04:00
|
|
|
def __init__(self, user_settings=None, defaults=None, import_strings=None):
|
|
|
|
self.user_settings = user_settings or {}
|
|
|
|
self.defaults = defaults or {}
|
|
|
|
self.import_strings = import_strings or ()
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
def __getattr__(self, attr):
|
2012-10-10 15:54:40 +04:00
|
|
|
if attr not in self.defaults.keys():
|
2012-09-20 16:06:27 +04:00
|
|
|
raise AttributeError("Invalid API setting: '%s'" % attr)
|
|
|
|
|
|
|
|
try:
|
|
|
|
# Check if present in user settings
|
2012-10-10 15:54:40 +04:00
|
|
|
val = self.user_settings[attr]
|
|
|
|
except KeyError:
|
2012-09-20 16:06:27 +04:00
|
|
|
# Fall back to defaults
|
2012-10-10 15:54:40 +04:00
|
|
|
val = self.defaults[attr]
|
|
|
|
|
|
|
|
# Coerce import strings into classes
|
|
|
|
if val and attr in self.import_strings:
|
|
|
|
val = perform_import(val, attr)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2012-11-09 01:46:53 +04:00
|
|
|
self.validate_setting(attr, val)
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
# Cache the result
|
|
|
|
setattr(self, attr, val)
|
|
|
|
return val
|
|
|
|
|
2012-11-09 01:46:53 +04:00
|
|
|
def validate_setting(self, attr, val):
|
|
|
|
if attr == 'FILTER_BACKEND' and val is not None:
|
2012-11-14 22:36:29 +04:00
|
|
|
# Make sure we can initialize the class
|
2012-11-09 01:46:53 +04:00
|
|
|
val()
|
|
|
|
|
2012-10-10 15:54:40 +04:00
|
|
|
api_settings = APISettings(USER_SETTINGS, DEFAULTS, IMPORT_STRINGS)
|