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
|
|
|
|
|
|
|
import django
|
2014-12-16 19:37:32 +03:00
|
|
|
from django.conf import settings
|
2015-04-29 16:08:52 +03:00
|
|
|
from django.db import connection, transaction
|
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
|
|
|
|
2015-02-17 13:55:15 +03:00
|
|
|
try:
|
2015-08-07 00:51:35 +03:00
|
|
|
import importlib # Available in Python 3.1+
|
2015-02-17 13:55:15 +03:00
|
|
|
except ImportError:
|
2015-08-07 00:51:35 +03:00
|
|
|
from django.utils import importlib # Will be removed in Django 1.9
|
|
|
|
|
2013-01-03 14:41:07 +04:00
|
|
|
|
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)
|
|
|
|
|
|
|
|
|
2014-11-06 15:00:30 +03:00
|
|
|
# OrderedDict only available in Python 2.7.
|
|
|
|
# This will always be the case in Django 1.7 and above, as these versions
|
|
|
|
# no longer support Python 2.6.
|
2015-01-07 01:34:36 +03:00
|
|
|
# For Django <= 1.6 and Python 2.6 fall back to SortedDict.
|
2014-11-06 15:00:30 +03:00
|
|
|
try:
|
|
|
|
from collections import OrderedDict
|
2014-12-04 05:11:42 +03:00
|
|
|
except ImportError:
|
2014-11-06 15:00:30 +03:00
|
|
|
from django.utils.datastructures import SortedDict as OrderedDict
|
|
|
|
|
|
|
|
|
2015-01-23 19:27:23 +03:00
|
|
|
# contrib.postgres only supported from 1.8 onwards.
|
|
|
|
try:
|
|
|
|
from django.contrib.postgres import fields as postgres_fields
|
|
|
|
except ImportError:
|
|
|
|
postgres_fields = 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
|
|
|
|
|
2014-09-10 16:52:16 +04:00
|
|
|
if django.VERSION >= (1, 6):
|
|
|
|
def clean_manytomany_helptext(text):
|
|
|
|
return text
|
|
|
|
else:
|
|
|
|
# Up to version 1.5 many to many fields automatically suffix
|
|
|
|
# the `help_text` attribute with hardcoded text.
|
|
|
|
def clean_manytomany_helptext(text):
|
|
|
|
if text.endswith(' Hold down "Control", or "Command" on a Mac, to select more than one.'):
|
|
|
|
text = text[:-69]
|
|
|
|
return text
|
|
|
|
|
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
|
|
|
|
if 'guardian' in settings.INSTALLED_APPS:
|
|
|
|
try:
|
|
|
|
import guardian
|
|
|
|
import guardian.shortcuts # Fixes #1624
|
|
|
|
except ImportError:
|
|
|
|
pass
|
2013-09-06 20:01:31 +04:00
|
|
|
|
2012-11-08 01:07:24 +04:00
|
|
|
|
2013-09-23 19:48:25 +04:00
|
|
|
def get_model_name(model_cls):
|
|
|
|
try:
|
|
|
|
return model_cls._meta.model_name
|
|
|
|
except AttributeError:
|
|
|
|
# < 1.6 used module_name instead of model_name
|
|
|
|
return model_cls._meta.module_name
|
|
|
|
|
|
|
|
|
2014-10-09 18:11:19 +04:00
|
|
|
# MinValueValidator, MaxValueValidator et al. only accept `message` in 1.8+
|
2014-09-22 16:57:45 +04:00
|
|
|
if django.VERSION >= (1, 8):
|
|
|
|
from django.core.validators import MinValueValidator, MaxValueValidator
|
2014-10-09 18:11:19 +04:00
|
|
|
from django.core.validators import MinLengthValidator, MaxLengthValidator
|
2014-09-22 16:57:45 +04:00
|
|
|
else:
|
|
|
|
from django.core.validators import MinValueValidator as DjangoMinValueValidator
|
|
|
|
from django.core.validators import MaxValueValidator as DjangoMaxValueValidator
|
2014-10-09 18:11:19 +04:00
|
|
|
from django.core.validators import MinLengthValidator as DjangoMinLengthValidator
|
|
|
|
from django.core.validators import MaxLengthValidator as DjangoMaxLengthValidator
|
2014-09-22 16:57:45 +04:00
|
|
|
|
2015-08-07 00:51:35 +03:00
|
|
|
|
2014-09-22 16:57:45 +04:00
|
|
|
class MinValueValidator(DjangoMinValueValidator):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.message = kwargs.pop('message', self.message)
|
|
|
|
super(MinValueValidator, self).__init__(*args, **kwargs)
|
|
|
|
|
2015-08-07 00:51:35 +03:00
|
|
|
|
2014-09-22 16:57:45 +04:00
|
|
|
class MaxValueValidator(DjangoMaxValueValidator):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.message = kwargs.pop('message', self.message)
|
|
|
|
super(MaxValueValidator, self).__init__(*args, **kwargs)
|
|
|
|
|
2015-08-07 00:51:35 +03:00
|
|
|
|
2014-10-09 18:11:19 +04:00
|
|
|
class MinLengthValidator(DjangoMinLengthValidator):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.message = kwargs.pop('message', self.message)
|
|
|
|
super(MinLengthValidator, self).__init__(*args, **kwargs)
|
|
|
|
|
2015-08-07 00:51:35 +03:00
|
|
|
|
2014-10-09 18:11:19 +04:00
|
|
|
class MaxLengthValidator(DjangoMaxLengthValidator):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.message = kwargs.pop('message', self.message)
|
|
|
|
super(MaxLengthValidator, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
|
2014-10-02 23:41:18 +04:00
|
|
|
# URLValidator only accepts `message` in 1.6+
|
2014-09-22 19:45:06 +04:00
|
|
|
if django.VERSION >= (1, 6):
|
|
|
|
from django.core.validators import URLValidator
|
|
|
|
else:
|
|
|
|
from django.core.validators import URLValidator as DjangoURLValidator
|
|
|
|
|
2015-08-07 00:51:35 +03:00
|
|
|
|
2014-09-22 19:45:06 +04:00
|
|
|
class URLValidator(DjangoURLValidator):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.message = kwargs.pop('message', self.message)
|
|
|
|
super(URLValidator, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
# EmailValidator requires explicit regex prior to 1.6+
|
|
|
|
if django.VERSION >= (1, 6):
|
|
|
|
from django.core.validators import EmailValidator
|
|
|
|
else:
|
|
|
|
from django.core.validators import EmailValidator as DjangoEmailValidator
|
|
|
|
from django.core.validators import email_re
|
|
|
|
|
2015-08-07 00:51:35 +03:00
|
|
|
|
2014-09-22 19:45:06 +04:00
|
|
|
class EmailValidator(DjangoEmailValidator):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(EmailValidator, self).__init__(email_re, *args, **kwargs)
|
|
|
|
|
2014-09-22 16:57:45 +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-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>.
|
|
|
|
"""
|
|
|
|
|
|
|
|
extensions = ['headerid(level=2)']
|
2012-11-09 19:54:23 +04:00
|
|
|
safe_mode = False
|
2012-09-20 16:06:27 +04:00
|
|
|
md = markdown.Markdown(extensions=extensions, safe_mode=safe_mode)
|
|
|
|
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
|
|
|
|
|
|
|
if django.VERSION >= (1, 8):
|
|
|
|
from django.db.models import DurationField
|
|
|
|
from django.utils.dateparse import parse_duration
|
|
|
|
from django.utils.duration import duration_string
|
|
|
|
else:
|
|
|
|
DurationField = duration_string = parse_duration = None
|
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
|