Skip to content

Instantly share code, notes, and snippets.

@ashwoods
Created July 24, 2012 13:20
Show Gist options
  • Save ashwoods/3169878 to your computer and use it in GitHub Desktop.
Save ashwoods/3169878 to your computer and use it in GitHub Desktop.
import re
from django.utils.cache import patch_vary_headers
from django import http
from django.conf import settings
from django.utils.cache import patch_vary_headers
from django.utils import translation
class SessionBasedLocaleMiddleware(object):
"""
This Middleware saves the desired content language in the user session.
The SessionMiddleware has to be activated.
"""
def process_request(self, request):
if request.method == 'GET' and 'lang' in request.GET:
language = request.GET['lang']
request.session['language'] = language
elif 'language' in request.session:
language = request.session['language']
else:
language = translation.get_language_from_request(request)
for lang in settings.LANGUAGES:
if lang[0] == language:
translation.activate(language)
request.LANGUAGE_CODE = translation.get_language()
def process_response(self, request, response):
patch_vary_headers(response, ('Accept-Language',))
if 'Content-Language' not in response:
response['Content-Language'] = translation.get_language()
translation.deactivate()
return response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment