canaille-globuzma/canaille/commands.py

26 lines
540 B
Python
Raw Normal View History

from flask import Blueprint, current_app
from canaille.models import AuthorizationCode, Token
2020-10-23 10:24:20 +00:00
bp = Blueprint("commands", __name__, cli_group=None)
@bp.cli.command("clean")
def clean():
2020-10-23 10:25:42 +00:00
"""
Remove expired tokens and authorization codes.
"""
2020-10-23 10:20:27 +00:00
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()
2020-10-23 10:20:49 +00:00
teardown_ldap(current_app)