2013-08-21 23:22:10 +02:00
|
|
|
from __future__ import absolute_import
|
2015-11-01 17:11:06 +01:00
|
|
|
from __future__ import print_function
|
2013-08-21 23:22:10 +02:00
|
|
|
|
2016-06-04 16:52:18 +02:00
|
|
|
from typing import Any
|
|
|
|
|
|
|
|
from argparse import ArgumentParser
|
2013-08-21 23:22:10 +02:00
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
|
|
|
|
from zerver.lib.actions import do_rename_stream
|
2016-07-05 04:20:18 +02:00
|
|
|
from zerver.lib.str_utils import force_text
|
2017-01-30 04:05:39 +01:00
|
|
|
from zerver.models import Realm, get_realm, get_stream
|
2013-08-21 23:22:10 +02:00
|
|
|
|
2013-08-22 23:29:29 +02:00
|
|
|
import sys
|
|
|
|
|
2013-08-21 23:22:10 +02:00
|
|
|
class Command(BaseCommand):
|
2015-08-21 02:10:41 +02:00
|
|
|
help = """Change the stream name for a realm."""
|
2013-08-21 23:22:10 +02:00
|
|
|
|
2015-08-21 02:10:41 +02:00
|
|
|
def add_arguments(self, parser):
|
2016-06-04 16:52:18 +02:00
|
|
|
# type: (ArgumentParser) -> None
|
2016-11-16 21:16:02 +01:00
|
|
|
parser.add_argument('string_id', metavar='<string_id>', type=str,
|
|
|
|
help="subdomain or string_id to operate on")
|
2015-08-21 02:10:41 +02:00
|
|
|
parser.add_argument('old_name', metavar='<old name>', type=str,
|
|
|
|
help='name of stream to be renamed')
|
|
|
|
parser.add_argument('new_name', metavar='<new name>', type=str,
|
|
|
|
help='new name to rename the stream to')
|
2013-08-21 23:22:10 +02:00
|
|
|
|
|
|
|
def handle(self, *args, **options):
|
2016-06-04 16:52:18 +02:00
|
|
|
# type: (*Any, **str) -> None
|
2016-11-16 21:16:02 +01:00
|
|
|
string_id = options['string_id']
|
2015-08-21 02:10:41 +02:00
|
|
|
old_name = options['old_name']
|
|
|
|
new_name = options['new_name']
|
2013-08-22 23:29:29 +02:00
|
|
|
encoding = sys.getfilesystemencoding()
|
2013-08-21 23:22:10 +02:00
|
|
|
|
2017-01-04 05:30:48 +01:00
|
|
|
realm = get_realm(force_text(string_id, encoding))
|
2016-07-05 04:20:18 +02:00
|
|
|
if realm is None:
|
2016-11-16 21:16:02 +01:00
|
|
|
print("Unknown subdomain or string_id %s" % (string_id,))
|
2013-08-21 23:22:10 +02:00
|
|
|
exit(1)
|
|
|
|
|
2017-01-30 04:05:39 +01:00
|
|
|
stream = get_stream(force_text(old_name, encoding), realm)
|
|
|
|
do_rename_stream(stream, force_text(new_name, encoding))
|