Files
zulip/zerver/management/commands/deactivate_realm.py
Mateusz Mandera 27c4e46b30 do_deactivate_realm: Add deactivation_reason kwarg.
It's going to be helpful in the future to record the reason for realm
deactivation.
- For information tracking
- For making a distinction between cases where we can allow realm owners
  to reactivate their realm via a self-serve flow (e.g.
  "owner_request") vs where we can't (ToS abuse).
2024-05-19 23:07:28 -07:00

46 lines
1.5 KiB
Python

from argparse import ArgumentParser
from typing import Any, cast
from typing_extensions import override
from zerver.actions.realm_settings import do_add_deactivated_redirect, do_deactivate_realm
from zerver.lib.management import ZulipBaseCommand
class Command(ZulipBaseCommand):
help = """Script to deactivate a realm."""
@override
def add_arguments(self, parser: ArgumentParser) -> None:
parser.add_argument(
"--redirect_url", metavar="<redirect_url>", help="URL to which the realm has moved"
)
parser.add_argument(
"--deactivation_reason",
metavar="<deactivation_reason>",
help="Reason for deactivation",
required=True,
)
self.add_realm_args(parser, required=True)
@override
def handle(self, *args: Any, **options: str) -> None:
realm = self.get_realm(options)
deactivation_reason = options["deactivation_reason"]
assert realm is not None # Should be ensured by parser
if options["redirect_url"]:
print("Setting the redirect URL to", options["redirect_url"])
do_add_deactivated_redirect(realm, options["redirect_url"])
if realm.deactivated:
print("The realm", options["realm_id"], "is already deactivated.")
return
print("Deactivating", options["realm_id"])
do_deactivate_realm(
realm, acting_user=None, deactivation_reason=cast(Any, deactivation_reason)
)
print("Done!")