mirror of
https://github.com/zulip/zulip.git
synced 2025-11-11 01:16:19 +00:00
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.
44 lines
1.6 KiB
Python
44 lines
1.6 KiB
Python
from argparse import ArgumentParser
|
|
from typing import Any, List
|
|
|
|
from zerver.lib.actions import do_create_multiuse_invite_link, ensure_stream
|
|
from zerver.lib.management import ZulipBaseCommand
|
|
from zerver.models import PreregistrationUser, Stream
|
|
|
|
|
|
class Command(ZulipBaseCommand):
|
|
help = "Generates invite link that can be used for inviting multiple users"
|
|
|
|
def add_arguments(self, parser: ArgumentParser) -> None:
|
|
self.add_realm_args(parser, True)
|
|
|
|
parser.add_argument(
|
|
'-s', '--streams',
|
|
dest='streams',
|
|
type=str,
|
|
help='A comma-separated list of stream names.')
|
|
|
|
parser.add_argument(
|
|
'--referred-by',
|
|
dest='referred_by',
|
|
type=str,
|
|
help='Email of referrer',
|
|
required=True,
|
|
)
|
|
|
|
def handle(self, *args: Any, **options: Any) -> None:
|
|
realm = self.get_realm(options)
|
|
assert realm is not None # Should be ensured by parser
|
|
|
|
streams = [] # type: List[Stream]
|
|
if options["streams"]:
|
|
stream_names = set([stream.strip() for stream in options["streams"].split(",")])
|
|
for stream_name in set(stream_names):
|
|
stream = ensure_stream(realm, stream_name)
|
|
streams.append(stream)
|
|
|
|
referred_by = self.get_user(options['referred_by'], realm)
|
|
invite_as = PreregistrationUser.INVITE_AS['MEMBER']
|
|
invite_link = do_create_multiuse_invite_link(referred_by, invite_as, streams)
|
|
print("You can use %s to invite as many number of people to the organization." % (invite_link,))
|