1 2 3 4 5 6 7 8 9 10 11 12 | import re
from django.http import HttpResponseRedirect
class DiggBarMiddleware(object):
diggbar_regex = re.compile("http://digg.com/\w{1,8}/?")
rickroll = "http://www.youtube.com/watch?v=oHg5SJYRHA0"
def process_request(self, request):
if self.diggbar_regex.match(request.META.get('HTTP_REFERER', '')):
return HttpResponseRedirect(self.rickroll)
|
More like this
- Transparent encryption for model fields by shadfc 4 years, 11 months ago
- manage.py for eclipse with pydev debugging by nickvlku 3 years, 11 months ago
- Mobilize your Django site by stevena0 4 years, 1 month ago
- BeforeFilter Middleware by david 4 years, 3 months ago
- encode_mailto by santuri 6 years ago
Comments
Fantastic idea!
#
diggbar is a kinda "back to the future", it just sucks.
Nice snippet but what the hell is this song ! lol
#
The code is wrong!
Line 11 should be:
#
nice catch izibi, thanks. fixed
#