mirror of https://github.com/zulip/zulip.git
41 lines
1.4 KiB
Python
41 lines
1.4 KiB
Python
from __future__ import absolute_import
|
|
from __future__ import print_function
|
|
|
|
from typing import Any
|
|
|
|
from argparse import ArgumentParser
|
|
from django.core.management.base import BaseCommand
|
|
|
|
from zerver.lib.actions import do_rename_stream
|
|
from zerver.lib.str_utils import force_text
|
|
from zerver.models import Realm, get_realm
|
|
|
|
import sys
|
|
|
|
class Command(BaseCommand):
|
|
help = """Change the stream name for a realm."""
|
|
|
|
def add_arguments(self, parser):
|
|
# type: (ArgumentParser) -> None
|
|
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')
|
|
|
|
def handle(self, *args, **options):
|
|
# type: (*Any, **str) -> None
|
|
domain = options['domain']
|
|
old_name = options['old_name']
|
|
new_name = options['new_name']
|
|
encoding = sys.getfilesystemencoding()
|
|
|
|
realm = get_realm(force_text(domain, encoding))
|
|
if realm is None:
|
|
print("Unknown domain %s" % (domain,))
|
|
exit(1)
|
|
|
|
do_rename_stream(realm, force_text(old_name, encoding),
|
|
force_text(new_name, encoding))
|