2013-04-23 18:51:17 +02:00
|
|
|
from __future__ import absolute_import
|
2015-11-01 17:11:06 +01:00
|
|
|
from __future__ import print_function
|
2013-04-23 18:51:17 +02:00
|
|
|
|
2013-01-09 17:00:17 +01:00
|
|
|
from optparse import make_option
|
|
|
|
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
|
2013-07-29 23:03:31 +02:00
|
|
|
from zerver.lib.actions import create_stream_if_needed, do_add_subscription
|
2015-10-13 22:54:35 +02:00
|
|
|
from zerver.models import UserProfile, get_realm, get_user_profile_by_email
|
2013-01-09 17:00:17 +01:00
|
|
|
|
|
|
|
class Command(BaseCommand):
|
|
|
|
help = """Add some or all users in a realm to a set of streams."""
|
|
|
|
|
|
|
|
option_list = BaseCommand.option_list + (
|
|
|
|
make_option('-d', '--domain',
|
|
|
|
dest='domain',
|
|
|
|
type='str',
|
|
|
|
help='The name of the realm in which you are adding people to streams.'),
|
|
|
|
make_option('-s', '--streams',
|
|
|
|
dest='streams',
|
|
|
|
type='str',
|
|
|
|
help='A comma-separated list of stream names.'),
|
|
|
|
make_option('-u', '--users',
|
|
|
|
dest='users',
|
|
|
|
type='str',
|
|
|
|
help='A comma-separated list of email addresses.'),
|
|
|
|
make_option('-a', '--all-users',
|
|
|
|
dest='all_users',
|
|
|
|
action="store_true",
|
|
|
|
default=False,
|
|
|
|
help='Add all users in this realm to these streams.'),
|
|
|
|
)
|
|
|
|
|
|
|
|
def handle(self, **options):
|
|
|
|
if options["domain"] is None or options["streams"] is None or \
|
|
|
|
(options["users"] is None and options["all_users"] is None):
|
|
|
|
self.print_help("python manage.py", "add_users_to_streams")
|
|
|
|
exit(1)
|
|
|
|
|
|
|
|
stream_names = set([stream.strip() for stream in options["streams"].split(",")])
|
2015-10-13 22:54:35 +02:00
|
|
|
realm = get_realm(options["domain"])
|
2013-01-09 17:00:17 +01:00
|
|
|
|
|
|
|
if options["all_users"]:
|
|
|
|
user_profiles = UserProfile.objects.filter(realm=realm)
|
|
|
|
else:
|
|
|
|
emails = set([email.strip() for email in options["users"].split(",")])
|
|
|
|
user_profiles = []
|
|
|
|
for email in emails:
|
2013-03-28 20:20:31 +01:00
|
|
|
user_profiles.append(get_user_profile_by_email(email))
|
2013-01-09 17:00:17 +01:00
|
|
|
|
|
|
|
for stream_name in set(stream_names):
|
|
|
|
for user_profile in user_profiles:
|
2013-02-12 16:56:37 +01:00
|
|
|
stream, _ = create_stream_if_needed(user_profile.realm, stream_name)
|
2013-01-09 17:00:17 +01:00
|
|
|
did_subscribe = do_add_subscription(user_profile, stream)
|
2015-11-01 17:11:06 +01:00
|
|
|
print("%s %s to %s" % (
|
2013-01-09 17:00:17 +01:00
|
|
|
"Subscribed" if did_subscribe else "Already subscribed",
|
2015-11-01 17:11:06 +01:00
|
|
|
user_profile.email, stream_name))
|