middleware.py 1.46 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
Piotr Mitros committed
16
from django.template import RequestContext
17
from util.request import safe_get_host
18 19

REQUEST_CONTEXT = threading.local()
20

21

22
class MakoMiddleware(object):
Piotr Mitros committed
23

24
    def process_request(self, request):
25 26
        """ Process the middleware request. """
        REQUEST_CONTEXT.request = request
27

28 29 30
    def process_response(self, __, response):
        """ Process the middleware response. """
        REQUEST_CONTEXT.request = None
31
        return response
32 33 34 35 36 37 38 39 40 41 42 43 44 45


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
    context = RequestContext(request)
    context['is_secure'] = request.is_secure()
    context['site'] = safe_get_host(request)
    return context