mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			922 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			922 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from argparse import ArgumentParser
 | 
						|
from typing import Any
 | 
						|
 | 
						|
from django.core.management.base import BaseCommand, CommandError
 | 
						|
 | 
						|
from analytics.lib.counts import COUNT_STATS, do_drop_single_stat
 | 
						|
 | 
						|
 | 
						|
class Command(BaseCommand):
 | 
						|
    help = """Clear analytics tables."""
 | 
						|
 | 
						|
    def add_arguments(self, parser: ArgumentParser) -> None:
 | 
						|
        parser.add_argument('--force',
 | 
						|
                            action='store_true',
 | 
						|
                            help="Actually do it.")
 | 
						|
        parser.add_argument('--property',
 | 
						|
                            help="The property of the stat to be cleared.")
 | 
						|
 | 
						|
    def handle(self, *args: Any, **options: Any) -> None:
 | 
						|
        property = options['property']
 | 
						|
        if property not in COUNT_STATS:
 | 
						|
            raise CommandError(f"Invalid property: {property}")
 | 
						|
        if not options['force']:
 | 
						|
            raise CommandError("No action taken. Use --force.")
 | 
						|
 | 
						|
        do_drop_single_stat(property)
 |