rDrama/files/helpers/cron.py

23 lines
623 B
Python
Raw Normal View History

from files.cli import g, app, db_session
import click
import files.helpers.const as const
2022-06-07 11:36:55 +00:00
import files.helpers.lottery as lottery
import files.helpers.stats as stats
@app.cli.command('cron', help='Run scheduled tasks.')
@click.option('--every-5m', is_flag=True, help='Call every 5 minutes.')
@click.option('--every-1h', is_flag=True, help='Call every 1 hour.')
@click.option('--every-1d', is_flag=True, help='Call every 1 day.')
def cron(every_5m, every_1h, every_1d):
g.db = db_session()
if every_5m:
2022-06-07 11:36:55 +00:00
lottery.check_if_end_lottery_task()
if every_1h:
pass
if every_1d:
stats.generate_charts_task(const.SITE)