Files
zulip/zilencer/management/commands/add_remote_server.py
Tim Abbott 8e7ce7cc79 python: Sort migrations/management command imports with isort.
This is a preparatory commit for using isort for sorting all of our
imports, merging changes to files where we can easily review the
changes as something we're happy with.

These are also files with relatively little active development, which
means we don't expect much merge conflict risk from these changes.
2020-01-14 13:07:47 -08:00

26 lines
1.1 KiB
Python

from argparse import ArgumentParser
from typing import Any
from zerver.lib.management import ZulipBaseCommand
from zilencer.models import RemoteZulipServer
class Command(ZulipBaseCommand):
help = """Add a remote Zulip server for push notifications."""
def add_arguments(self, parser: ArgumentParser) -> None:
group = parser.add_argument_group("command-specific arguments")
group.add_argument('uuid', help="the user's `zulip_org_id`")
group.add_argument('key', help="the user's `zulip_org_key`")
group.add_argument('--hostname', '-n', required=True,
help="the hostname, for human identification")
group.add_argument('--email', '-e', required=True,
help="a contact email address")
def handle(self, uuid: str, key: str, hostname: str, email: str,
**options: Any) -> None:
RemoteZulipServer.objects.create(uuid=uuid,
api_key=key,
hostname=hostname,
contact_email=email)