Problem: you want to limit posts to a view
This can be accomplished with a view decorator that stores hits by IP in memcached, incrementing the cached value and returning 403's when the cached value exceeds a certain threshold for a given IP.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | from django.utils.cache import cache
from django.http import HttpResponseForbidden
def throttle_post(func, duration=15):
def inner(request, *args, **kwargs):
if request.method == 'POST':
remote_addr = request.META.get('HTTP_X_FORWARDED_FOR') or \
request.META.get('REMOTE_ADDR')
key = '%s.%s' % (remote_addr, request.get_full_path())
if cache.get(key):
return HttpResponseForbidden('Try slowing down a little.')
else:
cache.set(key, 1, duration)
return func(request, *args, **kwargs)
return inner
|
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, 7 months ago
Comments
I think the first line should be:
from django.core.cache import cache
#
Please login first before commenting.