2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2012-10-27 13:32:49 +04:00
|
|
|
The `compat` module provides support for backwards compatibility with older
|
2015-08-07 00:51:35 +03:00
|
|
|
versions of Django/Python, and compatibility wrappers around optional packages.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2013-06-27 00:18:13 +04:00
|
|
|
|
2012-10-27 13:32:49 +04:00
|
|
|
# flake8: noqa
|
2012-11-22 03:20:49 +04:00
|
|
|
from __future__ import unicode_literals
|
2015-06-18 16:38:29 +03:00
|
|
|
|
2016-06-02 16:39:10 +03:00
|
|
|
import inspect
|
|
|
|
|
2015-06-18 16:38:29 +03:00
|
|
|
import django
|
2016-06-02 16:39:10 +03:00
|
|
|
from django.apps import apps
|
2014-12-16 19:37:32 +03:00
|
|
|
from django.conf import settings
|
2016-06-02 16:39:10 +03:00
|
|
|
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
from django.db import connection, models, transaction
|
2015-11-18 17:25:58 +03:00
|
|
|
from django.template import Context, RequestContext, Template
|
2015-06-25 23:55:51 +03:00
|
|
|
from django.utils import six
|
2015-08-07 00:51:35 +03:00
|
|
|
from django.views.generic import View
|
2015-06-18 16:38:29 +03:00
|
|
|
|
2013-01-03 14:41:07 +04:00
|
|
|
|
2016-10-10 15:03:46 +03:00
|
|
|
try:
|
|
|
|
from django.urls import (
|
|
|
|
NoReverseMatch, RegexURLPattern, RegexURLResolver, ResolverMatch, Resolver404, get_script_prefix, reverse, reverse_lazy, resolve
|
|
|
|
)
|
|
|
|
except ImportError:
|
|
|
|
from django.core.urlresolvers import ( # Will be removed in Django 2.0
|
|
|
|
NoReverseMatch, RegexURLPattern, RegexURLResolver, ResolverMatch, Resolver404, get_script_prefix, reverse, reverse_lazy, resolve
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2016-07-28 14:08:34 +03:00
|
|
|
try:
|
|
|
|
import urlparse # Python 2.x
|
|
|
|
except ImportError:
|
|
|
|
import urllib.parse as urlparse
|
|
|
|
|
|
|
|
|
2014-12-15 14:55:17 +03:00
|
|
|
def unicode_repr(instance):
|
|
|
|
# Get the repr of an instance, but ensure it is a unicode string
|
|
|
|
# on both python 3 (already the case) and 2 (not the case).
|
|
|
|
if six.PY2:
|
2015-01-21 16:03:37 +03:00
|
|
|
return repr(instance).decode('utf-8')
|
2014-12-15 14:55:17 +03:00
|
|
|
return repr(instance)
|
|
|
|
|
|
|
|
|
|
|
|
def unicode_to_repr(value):
|
|
|
|
# Coerce a unicode string to the correct repr return type, depending on
|
|
|
|
# the Python version. We wrap all our `__repr__` implementations with
|
|
|
|
# this and then use unicode throughout internally.
|
|
|
|
if six.PY2:
|
|
|
|
return value.encode('utf-8')
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
2014-12-16 19:37:32 +03:00
|
|
|
def unicode_http_header(value):
|
|
|
|
# Coerce HTTP header value to unicode.
|
|
|
|
if isinstance(value, six.binary_type):
|
|
|
|
return value.decode('iso-8859-1')
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
2015-01-19 12:57:26 +03:00
|
|
|
def total_seconds(timedelta):
|
|
|
|
# TimeDelta.total_seconds() is only available in Python 2.7
|
|
|
|
if hasattr(timedelta, 'total_seconds'):
|
|
|
|
return timedelta.total_seconds()
|
|
|
|
else:
|
|
|
|
return (timedelta.days * 86400.0) + float(timedelta.seconds) + (timedelta.microseconds / 1000000.0)
|
|
|
|
|
|
|
|
|
2015-08-20 13:35:32 +03:00
|
|
|
def distinct(queryset, base):
|
|
|
|
if settings.DATABASES[queryset.db]["ENGINE"] == "django.db.backends.oracle":
|
|
|
|
# distinct analogue for Oracle users
|
|
|
|
return base.filter(pk__in=set(queryset.values_list('pk', flat=True)))
|
|
|
|
return queryset.distinct()
|
|
|
|
|
|
|
|
|
2016-06-02 16:39:10 +03:00
|
|
|
# Obtaining manager instances and names from model options differs after 1.10.
|
2016-06-01 17:31:00 +03:00
|
|
|
def get_names_and_managers(options):
|
|
|
|
if django.VERSION >= (1, 10):
|
|
|
|
# Django 1.10 onwards provides a `.managers` property on the Options.
|
|
|
|
return [
|
|
|
|
(manager.name, manager)
|
|
|
|
for manager
|
|
|
|
in options.managers
|
|
|
|
]
|
|
|
|
# For Django 1.8 and 1.9, use the three-tuple information provided
|
|
|
|
# by .concrete_managers and .abstract_managers
|
|
|
|
return [
|
|
|
|
(manager_info[1], manager_info[2])
|
|
|
|
for manager_info
|
|
|
|
in (options.concrete_managers + options.abstract_managers)
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2016-06-02 16:39:10 +03:00
|
|
|
# field.rel is deprecated from 1.9 onwards
|
|
|
|
def get_remote_field(field, **kwargs):
|
|
|
|
if 'default' in kwargs:
|
|
|
|
if django.VERSION < (1, 9):
|
|
|
|
return getattr(field, 'rel', kwargs['default'])
|
|
|
|
return getattr(field, 'remote_field', kwargs['default'])
|
|
|
|
|
|
|
|
if django.VERSION < (1, 9):
|
|
|
|
return field.rel
|
|
|
|
return field.remote_field
|
|
|
|
|
|
|
|
|
|
|
|
def _resolve_model(obj):
|
|
|
|
"""
|
|
|
|
Resolve supplied `obj` to a Django model class.
|
|
|
|
|
|
|
|
`obj` must be a Django model class itself, or a string
|
|
|
|
representation of one. Useful in situations like GH #1225 where
|
|
|
|
Django may not have resolved a string-based reference to a model in
|
|
|
|
another model's foreign key definition.
|
|
|
|
|
|
|
|
String representations should have the format:
|
|
|
|
'appname.ModelName'
|
|
|
|
"""
|
|
|
|
if isinstance(obj, six.string_types) and len(obj.split('.')) == 2:
|
|
|
|
app_name, model_name = obj.split('.')
|
|
|
|
resolved_model = apps.get_model(app_name, model_name)
|
|
|
|
if resolved_model is None:
|
|
|
|
msg = "Django did not return a model for {0}.{1}"
|
|
|
|
raise ImproperlyConfigured(msg.format(app_name, model_name))
|
|
|
|
return resolved_model
|
|
|
|
elif inspect.isclass(obj) and issubclass(obj, models.Model):
|
|
|
|
return obj
|
|
|
|
raise ValueError("{0} is not a Django model".format(obj))
|
|
|
|
|
|
|
|
|
2016-08-05 13:04:01 +03:00
|
|
|
def is_authenticated(user):
|
|
|
|
if django.VERSION < (1, 10):
|
|
|
|
return user.is_authenticated()
|
|
|
|
return user.is_authenticated
|
|
|
|
|
|
|
|
|
2016-10-10 15:03:46 +03:00
|
|
|
def is_anonymous(user):
|
|
|
|
if django.VERSION < (1, 10):
|
|
|
|
return user.is_anonymous()
|
|
|
|
return user.is_anonymous
|
|
|
|
|
|
|
|
|
2016-06-02 16:39:10 +03:00
|
|
|
def get_related_model(field):
|
|
|
|
if django.VERSION < (1, 9):
|
|
|
|
return _resolve_model(field.rel.to)
|
|
|
|
return field.remote_field.model
|
|
|
|
|
|
|
|
|
|
|
|
def value_from_object(field, obj):
|
|
|
|
if django.VERSION < (1, 9):
|
|
|
|
return field._get_val_from_obj(obj)
|
2016-07-16 23:44:49 +03:00
|
|
|
return field.value_from_object(obj)
|
2016-06-02 16:39:10 +03:00
|
|
|
|
|
|
|
|
2015-01-23 19:27:23 +03:00
|
|
|
# contrib.postgres only supported from 1.8 onwards.
|
2014-11-06 15:00:30 +03:00
|
|
|
try:
|
2015-01-23 19:27:23 +03:00
|
|
|
from django.contrib.postgres import fields as postgres_fields
|
2014-12-04 05:11:42 +03:00
|
|
|
except ImportError:
|
2015-01-23 19:27:23 +03:00
|
|
|
postgres_fields = None
|
2014-11-06 15:00:30 +03:00
|
|
|
|
|
|
|
|
2015-09-28 19:25:52 +03:00
|
|
|
# JSONField is only supported from 1.9 onwards
|
2015-01-23 19:27:23 +03:00
|
|
|
try:
|
2015-09-28 19:25:52 +03:00
|
|
|
from django.contrib.postgres.fields import JSONField
|
2015-01-23 19:27:23 +03:00
|
|
|
except ImportError:
|
2015-09-28 19:25:52 +03:00
|
|
|
JSONField = None
|
2015-01-23 19:27:23 +03:00
|
|
|
|
|
|
|
|
2016-10-21 17:00:25 +03:00
|
|
|
# coreapi is optional (Note that uritemplate is a dependency of coreapi)
|
|
|
|
try:
|
|
|
|
import coreapi
|
|
|
|
import uritemplate
|
|
|
|
except (ImportError, SyntaxError):
|
|
|
|
# SyntaxError is possible under python 3.2
|
|
|
|
coreapi = None
|
|
|
|
uritemplate = None
|
|
|
|
|
|
|
|
|
2012-11-08 01:07:24 +04:00
|
|
|
# django-filter is optional
|
|
|
|
try:
|
|
|
|
import django_filters
|
2013-02-06 17:05:17 +04:00
|
|
|
except ImportError:
|
2012-11-08 01:07:24 +04:00
|
|
|
django_filters = None
|
|
|
|
|
2015-08-27 16:25:44 +03:00
|
|
|
|
|
|
|
# django-crispy-forms is optional
|
|
|
|
try:
|
|
|
|
import crispy_forms
|
|
|
|
except ImportError:
|
|
|
|
crispy_forms = None
|
|
|
|
|
|
|
|
|
2016-10-10 15:03:46 +03:00
|
|
|
# requests is optional
|
|
|
|
try:
|
|
|
|
import requests
|
|
|
|
except ImportError:
|
|
|
|
requests = None
|
|
|
|
|
|
|
|
|
2014-07-28 09:37:30 +04:00
|
|
|
# Django-guardian is optional. Import only if guardian is in INSTALLED_APPS
|
|
|
|
# Fixes (#1712). We keep the try/except for the test suite.
|
|
|
|
guardian = None
|
2015-09-03 16:22:13 +03:00
|
|
|
try:
|
2015-10-09 06:03:19 +03:00
|
|
|
if 'guardian' in settings.INSTALLED_APPS:
|
2014-07-28 09:37:30 +04:00
|
|
|
import guardian
|
2015-09-03 16:22:13 +03:00
|
|
|
except ImportError:
|
|
|
|
pass
|
2013-09-23 19:48:25 +04:00
|
|
|
|
|
|
|
|
2013-04-09 21:22:39 +04:00
|
|
|
# PATCH method is not implemented by Django
|
|
|
|
if 'patch' not in View.http_method_names:
|
|
|
|
View.http_method_names = View.http_method_names + ['patch']
|
|
|
|
|
2012-12-16 22:11:59 +04:00
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
# Markdown is optional
|
|
|
|
try:
|
|
|
|
import markdown
|
|
|
|
|
2015-11-09 20:47:00 +03:00
|
|
|
if markdown.version <= '2.2':
|
|
|
|
HEADERID_EXT_PATH = 'headerid'
|
2016-10-10 15:03:46 +03:00
|
|
|
LEVEL_PARAM = 'level'
|
|
|
|
elif markdown.version < '2.6':
|
2015-11-09 20:47:00 +03:00
|
|
|
HEADERID_EXT_PATH = 'markdown.extensions.headerid'
|
2016-10-10 15:03:46 +03:00
|
|
|
LEVEL_PARAM = 'level'
|
|
|
|
else:
|
|
|
|
HEADERID_EXT_PATH = 'markdown.extensions.toc'
|
|
|
|
LEVEL_PARAM = 'baselevel'
|
2015-08-07 00:51:35 +03:00
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
def apply_markdown(text):
|
|
|
|
"""
|
|
|
|
Simple wrapper around :func:`markdown.markdown` to set the base level
|
|
|
|
of '#' style headers to <h2>.
|
|
|
|
"""
|
2015-11-09 20:47:00 +03:00
|
|
|
extensions = [HEADERID_EXT_PATH]
|
2015-11-05 19:52:31 +03:00
|
|
|
extension_configs = {
|
2015-11-09 20:47:00 +03:00
|
|
|
HEADERID_EXT_PATH: {
|
2016-10-10 15:03:46 +03:00
|
|
|
LEVEL_PARAM: '2'
|
2015-11-05 19:52:31 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
md = markdown.Markdown(
|
|
|
|
extensions=extensions, extension_configs=extension_configs
|
|
|
|
)
|
2012-09-20 16:06:27 +04:00
|
|
|
return md.convert(text)
|
|
|
|
except ImportError:
|
|
|
|
apply_markdown = None
|
|
|
|
|
|
|
|
|
2014-12-04 04:50:25 +03:00
|
|
|
# `separators` argument to `json.dumps()` differs between 2.x and 3.x
|
2014-10-30 19:53:12 +03:00
|
|
|
# See: http://bugs.python.org/issue22767
|
|
|
|
if six.PY3:
|
|
|
|
SHORT_SEPARATORS = (',', ':')
|
|
|
|
LONG_SEPARATORS = (', ', ': ')
|
2015-01-19 17:41:10 +03:00
|
|
|
INDENT_SEPARATORS = (',', ': ')
|
2014-10-30 19:53:12 +03:00
|
|
|
else:
|
|
|
|
SHORT_SEPARATORS = (b',', b':')
|
|
|
|
LONG_SEPARATORS = (b', ', b': ')
|
2015-01-19 17:41:10 +03:00
|
|
|
INDENT_SEPARATORS = (b',', b': ')
|
2015-06-01 19:20:53 +03:00
|
|
|
|
2015-10-29 13:42:16 +03:00
|
|
|
try:
|
|
|
|
# DecimalValidator is unavailable in Django < 1.9
|
|
|
|
from django.core.validators import DecimalValidator
|
|
|
|
except ImportError:
|
|
|
|
DecimalValidator = None
|
2015-04-29 16:08:52 +03:00
|
|
|
|
2015-11-18 17:25:58 +03:00
|
|
|
|
2015-04-29 16:08:52 +03:00
|
|
|
def set_rollback():
|
|
|
|
if hasattr(transaction, 'set_rollback'):
|
|
|
|
if connection.settings_dict.get('ATOMIC_REQUESTS', False):
|
|
|
|
# If running in >=1.6 then mark a rollback as required,
|
|
|
|
# and allow it to be handled by Django.
|
2015-06-08 07:10:57 +03:00
|
|
|
if connection.in_atomic_block:
|
|
|
|
transaction.set_rollback(True)
|
2015-04-29 16:08:52 +03:00
|
|
|
elif transaction.is_managed():
|
|
|
|
# Otherwise handle it explicitly if in managed mode.
|
|
|
|
if transaction.is_dirty():
|
|
|
|
transaction.rollback()
|
|
|
|
transaction.leave_transaction_management()
|
|
|
|
else:
|
|
|
|
# transaction not managed
|
|
|
|
pass
|
2015-11-18 17:25:58 +03:00
|
|
|
|
|
|
|
|
|
|
|
def template_render(template, context=None, request=None):
|
|
|
|
"""
|
|
|
|
Passing Context or RequestContext to Template.render is deprecated in 1.9+,
|
|
|
|
see https://github.com/django/django/pull/3883 and
|
2016-02-18 22:35:45 +03:00
|
|
|
https://github.com/django/django/blob/1.9/django/template/backends/django.py#L82-L84
|
2015-11-18 17:25:58 +03:00
|
|
|
|
|
|
|
:param template: Template instance
|
|
|
|
:param context: dict
|
|
|
|
:param request: Request instance
|
|
|
|
:return: rendered template as SafeText instance
|
|
|
|
"""
|
2016-02-18 22:35:45 +03:00
|
|
|
if isinstance(template, Template):
|
2015-11-18 17:25:58 +03:00
|
|
|
if request:
|
|
|
|
context = RequestContext(request, context)
|
|
|
|
else:
|
|
|
|
context = Context(context)
|
|
|
|
return template.render(context)
|
|
|
|
# backends template, e.g. django.template.backends.django.Template
|
|
|
|
else:
|
|
|
|
return template.render(context, request=request)
|
2016-10-10 15:03:46 +03:00
|
|
|
|
|
|
|
|
|
|
|
def set_many(instance, field, value):
|
|
|
|
if django.VERSION < (1, 10):
|
|
|
|
setattr(instance, field, value)
|
|
|
|
else:
|
|
|
|
field = getattr(instance, field)
|
|
|
|
field.set(value)
|