iPhone Redirect Middleware

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import re

from django.http import HttpResponseRedirect
from django.conf import settings
from django.contrib.sites.models import Site

class iPhoneMiddleware(object):
        def __init__(self):
                self.main_site = Site.objects.get(pk=1)
                self.mobile_site = Site.objects.get(pk=2)

        def process_request(self, request):
                if not request.session.get('mobile'):
                        p = re.compile('iPhone|iPod', re.IGNORECASE)
                        if p.search(request.META['HTTP_USER_AGENT']):
                                request.session['mobile'] = True
                        else:
                                request.session['mobile'] = False

                        return

                if not self.mobile_site == Site.objects.get_current():
                        if request.session.get('mobile'):
                                return HttpResponseRedirect('http://%s%s' % (self.mobile_site.domain, request.path))

More like this

  1. iPhoneMiddleware by henriklied 3 years, 4 months ago
  2. Detect iPhone & Switch Template via render_to_response by bryanhelmig 1 year, 8 months ago
  3. mini_render_to_response by menendez 2 years, 9 months ago
  4. Simple Mobile Support by bahoo 1 year, 4 months ago
  5. Mobile browser detection middleware by pavl 1 year, 9 months ago

Comments

(Forgotten your password?)