1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-06 01:12:03 +00:00
Files
seahub/thirdpart/captcha/management/commands/captcha_clean.py

26 lines
862 B
Python
Raw Normal View History

2013-11-09 10:42:06 +08:00
from django.core.management.base import BaseCommand
from captcha.models import get_safe_now
import sys
class Command(BaseCommand):
help = "Clean up expired captcha hashkeys."
def handle(self, **options):
from captcha.models import CaptchaStore
verbose = int(options.get('verbosity'))
expired_keys = CaptchaStore.objects.filter(expiration__lte=get_safe_now()).count()
if verbose >= 1:
print "Currently %d expired hashkeys" % expired_keys
try:
CaptchaStore.remove_expired()
except:
if verbose >= 1:
print "Unable to delete expired hashkeys."
sys.exit(1)
if verbose >= 1:
if expired_keys > 0:
print "%d expired hashkeys removed." % expired_keys
else:
print "No keys to remove."