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
|
2013-08-21 23:22:10 +02:00
|
|
|
from zerver.models import Realm, get_realm
|
|
|
|
|
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
|
2015-08-21 02:10:41 +02:00
|
|
|
parser.add_argument('domain', metavar='<domain>', type=str,
|
|
|
|
help="domain to operate on")
|
|
|
|
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
|
2015-08-21 02:10:41 +02:00
|
|
|
domain = options['domain']
|
|
|
|
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
|
|
|
|
2016-07-05 04:20:18 +02:00
|
|
|
realm = get_realm(force_text(domain, encoding))
|
|
|
|
if realm is None:
|
2015-11-01 17:11:06 +01:00
|
|
|
print("Unknown domain %s" % (domain,))
|
2013-08-21 23:22:10 +02:00
|
|
|
exit(1)
|
|
|
|
|
2016-07-05 04:20:18 +02:00
|
|
|
do_rename_stream(realm, force_text(old_name, encoding),
|
|
|
|
force_text(new_name, encoding))
|