Login

Ignore HTTP Accept-Language headers

Author:
fonso
Posted:
May 7, 2007
Language:
Python
Version:
.96
Score:
0 (after 0 ratings)

A little tiny middleware that, when used in multilingual sites, will make Django I18N ignore any Accept-Language headers in the request, thus ensuring that every first-time visitor (with no explicit language preference set via session or cookie) will see the site in the language specified by settings.LANGUAGE_CODE.

(Please note that I think that overriding user preferences is generally a bad practice, but I had my reasons to use it :) )

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
class ForceDefaultLanguageMiddleware(object):
    """
    Ignore Accept-Language HTTP headers
    
    This will force the I18N machinery to always choose settings.LANGUAGE_CODE
    as the default initial language, unless another one is set via sessions or cookies
    
    Should be installed *before* any middleware that checks request.META['HTTP_ACCEPT_LANGUAGE'],
    namely django.middleware.locale.LocaleMiddleware
    """
    def process_request(self, request):
        if request.META.has_key('HTTP_ACCEPT_LANGUAGE'):
            del request.META['HTTP_ACCEPT_LANGUAGE']

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

ubernostrum (on May 7, 2007):

You could just disable the LocaleMiddleware... :)

#

jefferson (on May 8, 2007):

hi fonso,

i see the same problem as you do.

i´ve changed the locale middleware to this to have my default language set:

def process_request(self, request):
    if request.session.get('django_language'):
        language = translation.get_language_from_request(request)
    elif request.COOKIES.get('django_language'):
        language = translation.get_language_from_request(request)
    else:
        language = 'de'
    #language = translation.get_language_from_request(request)
    translation.activate(language)
    request.LANGUAGE_CODE = translation.get_language()


# not changed
def process_response(self, request, response):
    ...

#

fonso (on May 9, 2007):

hi jefferson,

Yes, AFAIK, if your settings.LANGUAGE_CODE is 'de', the posted middleware would have exactly the same effect your changes do.

#

dariusdamalakas (on February 1, 2011):

Disabling LocaleMiddleware does not help. The goal here is to ignore HTTP Accept-Language headers, and choose the default language which is defined in settings.py After that user should be able to still change his language, if he wants to

This middle ware does exactly what we need. Thanks alot!

#

charlesoliveros (on September 18, 2015):

thanks ubernostrum!, your solution worked for me :)

#

Please login first before commenting.