This middleware redirects the request for yoursite.com/feed/whatever/onefeed to your feedburner onefeed feed.
Having
FEEDBURNER = ('SomeName', ('blog', 'comments', 'tag1'))
will use the feedburner feeds at
http://feedproxy.google.com/SomeName/blog
http://feedproxy.google.com/SomeName/comments
http://feedproxy.google.com/SomeName/tag/tag1
you can add more tags, or even intersection and union of them the same way
(thanks to piranha for the idea of a middleware)
Update: now it works for tags as well
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | from django.http import HttpResponseRedirect
import settings
class FeedburnerMiddleware(object):
'''
Redirect the user to a feedburner feed for basic feeds
'''
def process_request(self, request):
r = request.path.split('/')
if not settings.FEEDBURNER or\
not r[1] == 'feeds' or \
not r[-2] in settings.FEEDBURNER[1]:
return None
if request.META['HTTP_USER_AGENT'].startswith('FeedBurner'):
return None
else:
return HttpResponseRedirect('/'.join((
'http://feedproxy.google.com',
settings.FEEDBURNER[0],
'/'.join(r[3:-1]))
))
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 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
This is great! Thank you for sharing it!
#
Please login first before commenting.