I didn't really like the current state of iPhone/Mobile redirect middleware mainly because I wanted something that was closer to twitters use case. So I came up with this. I don't think it a great snippet and I will probably fix it in the near future. But it works.
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
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.