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
- Generate and render HTML Table by LLyaudet 5 days, 9 hours ago
- My firs Snippets by GutemaG 1 week, 1 day ago
- FileField having auto upload_to path by junaidmgithub 1 month, 2 weeks ago
- LazyPrimaryKeyRelatedField by LLyaudet 1 month, 3 weeks ago
- CacheInDictManager by LLyaudet 1 month, 3 weeks ago
Comments
I think the first line should be:
from django.core.cache import cache
#
Please login first before commenting.