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
- Ignore Csrf Middleware by coleifer 1 year, 11 months ago
- Cookieless Session Middleware by juliocarlos 3 years, 5 months ago
- Request time logging middleware by mpasternacki 2 years, 5 months ago
- Hours of Operation Middleware by andrew 3 years, 2 months ago
- Subdomain Middleware by xhenxhe 3 years, 7 months 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
#