mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 21:43:21 +00:00
Fixes #20028. There's no reason to have a special `RealmCreationKey` class - the `Confirmation` system already does this job. This is somewhat complicated by the need to write a migration for `RealmCreationKey`->`Confirmation` for pre-existing, valid objects, to avoid breaking realm creation links that haven't been used yet.
41 lines
1.5 KiB
Python
41 lines
1.5 KiB
Python
from typing import Any
|
|
|
|
from django.core.management.base import CommandError
|
|
from django.db import ProgrammingError
|
|
from typing_extensions import override
|
|
|
|
from confirmation.models import generate_realm_creation_url
|
|
from zerver.lib.management import ZulipBaseCommand
|
|
from zerver.models import Realm
|
|
|
|
|
|
class Command(ZulipBaseCommand):
|
|
help = """
|
|
Outputs a randomly generated, 1-time-use link for Organization creation.
|
|
Whoever visits the link can create a new organization on this server, regardless of whether
|
|
settings.OPEN_REALM_CREATION is enabled. The link would expire automatically after
|
|
settings.CAN_CREATE_REALM_LINK_VALIDITY_DAYS.
|
|
|
|
Usage: ./manage.py generate_realm_creation_link """
|
|
|
|
@override
|
|
def handle(self, *args: Any, **options: Any) -> None:
|
|
try:
|
|
# first check if the db has been initialized
|
|
Realm.objects.first()
|
|
except ProgrammingError:
|
|
raise CommandError(
|
|
"The Zulip database does not appear to exist. Have you run initialize-database?"
|
|
)
|
|
|
|
url = generate_realm_creation_url(by_admin=True)
|
|
self.stdout.write(
|
|
self.style.SUCCESS(
|
|
"Please visit the following secure single-use link to register your "
|
|
)
|
|
)
|
|
self.stdout.write(self.style.SUCCESS("new Zulip organization:\033[0m"))
|
|
self.stdout.write("")
|
|
self.stdout.write(self.style.SUCCESS(f" \033[1;92m{url}\033[0m"))
|
|
self.stdout.write("")
|