2016-10-06 00:42:56 +02:00
|
|
|
from argparse import ArgumentParser
|
2017-11-16 00:55:49 +01:00
|
|
|
from typing import Any
|
|
|
|
|
2019-05-03 23:20:39 +02:00
|
|
|
from django.core.management.base import BaseCommand, CommandError
|
2016-10-06 00:42:56 +02:00
|
|
|
|
2017-01-07 03:23:44 +01:00
|
|
|
from analytics.lib.counts import do_drop_all_analytics_tables
|
2016-10-06 00:42:56 +02:00
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2016-10-06 00:42:56 +02:00
|
|
|
class Command(BaseCommand):
|
2017-01-07 03:23:44 +01:00
|
|
|
help = """Clear analytics tables."""
|
2016-10-06 00:42:56 +02:00
|
|
|
|
2017-11-05 06:54:00 +01:00
|
|
|
def add_arguments(self, parser: ArgumentParser) -> None:
|
2016-10-06 00:42:56 +02:00
|
|
|
parser.add_argument('--force',
|
|
|
|
action='store_true',
|
2017-01-07 03:23:44 +01:00
|
|
|
help="Clear analytics tables.")
|
2016-10-06 00:42:56 +02:00
|
|
|
|
2017-11-05 06:54:00 +01:00
|
|
|
def handle(self, *args: Any, **options: Any) -> None:
|
2016-10-06 00:42:56 +02:00
|
|
|
if options['force']:
|
2017-01-07 03:23:44 +01:00
|
|
|
do_drop_all_analytics_tables()
|
2016-10-06 00:42:56 +02:00
|
|
|
else:
|
2019-05-03 23:20:39 +02:00
|
|
|
raise CommandError("Would delete all data from analytics tables (!); use --force to do so.")
|