2016-06-22 21:16:02 +02:00
|
|
|
from typing import Any
|
2017-11-16 00:43:27 +01:00
|
|
|
|
2017-03-01 03:25:59 +01:00
|
|
|
from django.db import ProgrammingError
|
2017-11-16 00:43:27 +01:00
|
|
|
|
2016-06-22 21:16:02 +02:00
|
|
|
from confirmation.models import generate_realm_creation_url
|
2020-01-14 21:59:46 +01:00
|
|
|
from zerver.lib.management import CommandError, ZulipBaseCommand
|
2017-03-01 03:25:59 +01:00
|
|
|
from zerver.models import Realm
|
2016-06-22 21:16:02 +02:00
|
|
|
|
2020-01-14 21:59:46 +01:00
|
|
|
|
2019-01-09 19:39:29 +01:00
|
|
|
class Command(ZulipBaseCommand):
|
2017-03-05 04:00:44 +01:00
|
|
|
help = """
|
|
|
|
Outputs a randomly generated, 1-time-use link for Organization creation.
|
2016-06-22 21:16:02 +02:00
|
|
|
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.REALM_CREATION_LINK_VALIDITY_DAYS.
|
|
|
|
|
2016-11-22 01:44:16 +01:00
|
|
|
Usage: ./manage.py generate_realm_creation_link """
|
2016-06-22 21:16:02 +02:00
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def handle(self, *args: Any, **options: Any) -> None:
|
2017-03-01 03:25:59 +01:00
|
|
|
try:
|
2020-03-28 01:25:56 +01:00
|
|
|
# first check if the db has been initialized
|
2017-03-01 03:25:59 +01:00
|
|
|
Realm.objects.first()
|
|
|
|
except ProgrammingError:
|
2021-02-12 03:52:14 +01:00
|
|
|
raise CommandError("The Zulip database does not appear to exist. Have you run initialize-database?")
|
2017-03-01 03:25:59 +01:00
|
|
|
|
2018-01-29 19:58:52 +01:00
|
|
|
url = generate_realm_creation_url(by_admin=True)
|
2021-02-12 03:52:14 +01:00
|
|
|
self.stdout.write(self.style.SUCCESS("Please visit the following secure single-use link to register your "))
|
2017-08-19 22:15:52 +02:00
|
|
|
self.stdout.write(self.style.SUCCESS("new Zulip organization:\033[0m"))
|
2017-02-22 05:18:09 +01:00
|
|
|
self.stdout.write("")
|
2020-06-10 06:41:04 +02:00
|
|
|
self.stdout.write(self.style.SUCCESS(f" \033[1;92m{url}\033[0m"))
|
2017-02-22 05:18:09 +01:00
|
|
|
self.stdout.write("")
|