middleware.py 2.62 KB
Newer Older
1 2 3 4 5 6 7 8 9
#   Copyright (c) 2008 Mikeal Rogers
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
10
#   distributed under the License is distributed on an "AS IS" BASIS,
11 12 13 14
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.

15
import threading
16
from django.conf import settings
Piotr Mitros committed
17
from django.template import RequestContext
18 19
from django.template.context import _builtin_context_processors
from django.utils.module_loading import import_string
20
from util.request import safe_get_host
21

22 23
from request_cache.middleware import RequestCache

24
REQUEST_CONTEXT = threading.local()
25

26

27
class MakoMiddleware(object):
Piotr Mitros committed
28

29
    def process_request(self, request):
30 31
        """ Process the middleware request. """
        REQUEST_CONTEXT.request = request
32

33 34 35
    def process_response(self, __, response):
        """ Process the middleware response. """
        REQUEST_CONTEXT.request = None
36
        return response
37 38


39 40 41 42 43 44 45 46 47
def get_template_context_processors():
    """
    Returns the context processors defined in settings.TEMPLATES.
    """
    context_processors = _builtin_context_processors
    context_processors += tuple(settings.DEFAULT_TEMPLATE_ENGINE['OPTIONS']['context_processors'])
    return tuple(import_string(path) for path in context_processors)


48 49 50 51 52 53 54 55
def get_template_request_context():
    """
    Returns the template processing context to use for the current request,
    or returns None if there is not a current request.
    """
    request = getattr(REQUEST_CONTEXT, "request", None)
    if not request:
        return None
56 57 58 59 60 61

    request_cache_dict = RequestCache.get_request_cache().data
    cache_key = "edxmako_request_context"
    if cache_key in request_cache_dict:
        return request_cache_dict[cache_key]

62 63 64
    context = RequestContext(request)
    context['is_secure'] = request.is_secure()
    context['site'] = safe_get_host(request)
65 66 67 68 69 70 71 72

    # This used to happen when a RequestContext object was initialized but was
    # moved to a different part of the logic when template engines were introduced.
    # Since we are not using template engines we do this here.
    # https://github.com/django/django/commit/37505b6397058bcc3460f23d48a7de9641cd6ef0
    for processor in get_template_context_processors():
        context.update(processor(request))

73 74
    request_cache_dict[cache_key] = context

75
    return context