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
- Mobile browser detection middleware by pavl 3 years ago
- iPhoneMiddleware by henriklied 4 years, 7 months ago
- Detect iPhone & Switch Template via render_to_response by bryanhelmig 2 years, 12 months ago
- Simple Mobile Support by bahoo 2 years, 7 months ago
- A templatetag to insert the output of another view (or local URL) by jamesgpearce 3 years, 11 months ago
Comments