canaille-globuzma/canaille/commands.py
2020-10-23 12:25:42 +02:00

25 lines
540 B
Python

from flask import Blueprint, current_app
from canaille.models import AuthorizationCode, Token
bp = Blueprint("commands", __name__, cli_group=None)
@bp.cli.command("clean")
def clean():
"""
Remove expired tokens and authorization codes.
"""
from canaille import setup_ldap, teardown_ldap
setup_ldap(current_app)
for t in Token.filter():
if t.is_expired():
t.delete()
for a in AuthorizationCode.filter():
if a.is_expired():
a.delete()
teardown_ldap(current_app)