2016-04-05 00:27:37 +02:00
|
|
|
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
2019-01-08 00:15:56 +01:00
|
|
|
import sys
|
2016-04-05 00:27:37 +02:00
|
|
|
import tempfile
|
2019-01-09 19:39:29 +01:00
|
|
|
from argparse import ArgumentParser
|
2017-11-16 00:43:27 +01:00
|
|
|
from typing import Any
|
|
|
|
|
2019-01-08 00:15:56 +01:00
|
|
|
from django.conf import settings
|
2017-11-16 00:43:27 +01:00
|
|
|
from django.core.management.base import CommandError
|
2016-04-05 00:27:37 +02:00
|
|
|
|
2017-11-16 00:43:27 +01:00
|
|
|
from zerver.lib.export import do_export_realm, \
|
|
|
|
do_write_stats_file_for_realm_export
|
2017-08-07 17:46:32 +02:00
|
|
|
from zerver.lib.management import ZulipBaseCommand
|
2019-01-08 00:15:56 +01:00
|
|
|
from zerver.lib.utils import generate_random_token
|
2016-04-05 00:27:37 +02:00
|
|
|
|
2017-08-07 17:46:32 +02:00
|
|
|
class Command(ZulipBaseCommand):
|
2016-04-05 00:27:37 +02:00
|
|
|
help = """Exports all data from a Zulip realm
|
|
|
|
|
|
|
|
This command exports all significant data from a Zulip realm. The
|
|
|
|
result can be imported using the `./manage.py import` command.
|
|
|
|
|
|
|
|
Things that are exported:
|
|
|
|
* All user-accessible data in the Zulip database (Messages,
|
|
|
|
Streams, UserMessages, RealmEmoji, etc.)
|
|
|
|
* Copies of all uploaded files and avatar images along with
|
|
|
|
metadata needed to restore them even in the ab
|
|
|
|
|
|
|
|
Things that are not exported:
|
2017-07-07 10:03:18 +02:00
|
|
|
* Confirmation and PreregistrationUser (transient tables)
|
2016-04-05 00:27:37 +02:00
|
|
|
* Sessions (everyone will need to login again post-export)
|
|
|
|
* Users' passwords and API keys (users will need to use SSO or reset password)
|
|
|
|
* Mobile tokens for APNS/GCM (users will need to reconnect their mobile devices)
|
2017-07-02 21:10:41 +02:00
|
|
|
* ScheduledEmail (Not relevant on a new server)
|
2017-10-12 08:26:54 +02:00
|
|
|
* RemoteZulipServer (Unlikely to be migrated)
|
2016-04-05 00:27:37 +02:00
|
|
|
* third_party_api_results cache (this means rerending all old
|
|
|
|
messages could be expensive)
|
|
|
|
|
|
|
|
Things that will break as a result of the export:
|
|
|
|
* Passwords will not be transferred. They will all need to go
|
|
|
|
through the password reset flow to obtain a new password (unless
|
|
|
|
they intend to only use e.g. Google Auth).
|
|
|
|
* Users will need to logout and re-login to the Zulip desktop and
|
|
|
|
mobile apps. The apps now all have an option on the login page
|
|
|
|
where you can specify which Zulip server to use; your users
|
|
|
|
should enter <domain name>.
|
|
|
|
* All bots will stop working since they will be pointing to the
|
|
|
|
wrong server URL, and all users' API keys have been rotated as
|
|
|
|
part of the migration. So to re-enable your integrations, you
|
|
|
|
will need to direct your integrations at the new server.
|
|
|
|
Usually this means updating the URL and the bots' API keys. You
|
|
|
|
can see a list of all the bots that have been configured for
|
2017-04-07 21:39:58 +02:00
|
|
|
your realm on the `/#organization` page, and use that list to
|
2016-04-05 00:27:37 +02:00
|
|
|
make sure you migrate them all.
|
|
|
|
|
|
|
|
The proper procedure for using this to export a realm is as follows:
|
|
|
|
|
|
|
|
* Use `./manage.py deactivate_realm` to deactivate the realm, so
|
|
|
|
nothing happens in the realm being exported during the export
|
|
|
|
process.
|
|
|
|
|
|
|
|
* Use `./manage.py export` to export the realm, producing a data
|
|
|
|
tarball.
|
|
|
|
|
|
|
|
* Transfer the tarball to the new server and unpack it.
|
|
|
|
|
|
|
|
* Use `./manage.py import` to import the realm
|
|
|
|
|
|
|
|
* Use `./manage.py reactivate_realm` to reactivate the realm, so
|
|
|
|
users can login again.
|
|
|
|
|
|
|
|
* Inform the users about the things broken above.
|
|
|
|
|
|
|
|
We recommend testing by exporting without having deactivated the
|
|
|
|
realm first, to make sure you have the procedure right and
|
|
|
|
minimize downtime.
|
|
|
|
|
|
|
|
Performance: In one test, the tool exported a realm with hundreds
|
|
|
|
of users and ~1M messages of history with --threads=1 in about 3
|
|
|
|
hours of serial runtime (goes down to ~50m with --threads=6 on a
|
|
|
|
machine with 8 CPUs). Importing that same data set took about 30
|
|
|
|
minutes. But this will vary a lot depending on the average number
|
|
|
|
of recipients of messages in the realm, hardware, etc."""
|
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def add_arguments(self, parser: ArgumentParser) -> None:
|
2016-04-05 00:27:37 +02:00
|
|
|
parser.add_argument('--output',
|
|
|
|
dest='output_dir',
|
|
|
|
action="store",
|
|
|
|
default=None,
|
|
|
|
help='Directory to write exported data to.')
|
|
|
|
parser.add_argument('--threads',
|
|
|
|
dest='threads',
|
|
|
|
action="store",
|
|
|
|
default=6,
|
|
|
|
help='Threads to use in exporting UserMessage objects in parallel')
|
2019-01-08 01:51:11 +01:00
|
|
|
parser.add_argument('--public-only',
|
|
|
|
action="store_true",
|
|
|
|
help='Export only public stream messages and associated attachments')
|
2019-01-08 00:15:56 +01:00
|
|
|
parser.add_argument('--upload-to-s3',
|
|
|
|
action="store_true",
|
|
|
|
help="Whether to upload resulting tarball to s3")
|
2017-08-07 17:46:32 +02:00
|
|
|
self.add_realm_args(parser, True)
|
2016-04-05 00:27:37 +02:00
|
|
|
|
2017-10-26 11:35:57 +02:00
|
|
|
def handle(self, *args: Any, **options: Any) -> None:
|
2017-08-07 17:46:32 +02:00
|
|
|
realm = self.get_realm(options)
|
2017-09-26 01:25:39 +02:00
|
|
|
assert realm is not None # Should be ensured by parser
|
|
|
|
|
2016-04-05 00:27:37 +02:00
|
|
|
output_dir = options["output_dir"]
|
|
|
|
if output_dir is None:
|
2019-01-15 03:02:06 +01:00
|
|
|
output_dir = tempfile.mkdtemp(prefix="zulip-export-")
|
2017-10-18 05:47:29 +02:00
|
|
|
else:
|
2018-08-13 22:30:43 +02:00
|
|
|
output_dir = os.path.realpath(os.path.expanduser(output_dir))
|
2016-04-05 00:27:37 +02:00
|
|
|
if os.path.exists(output_dir):
|
|
|
|
shutil.rmtree(output_dir)
|
|
|
|
os.makedirs(output_dir)
|
2017-03-13 17:44:32 +01:00
|
|
|
print("Exporting realm %s" % (realm.string_id,))
|
2016-08-10 02:32:02 +02:00
|
|
|
num_threads = int(options['threads'])
|
|
|
|
if num_threads < 1:
|
|
|
|
raise CommandError('You must have at least one thread.')
|
|
|
|
|
2019-01-08 01:51:11 +01:00
|
|
|
do_export_realm(realm, output_dir, threads=num_threads, public_only=options["public_only"])
|
2016-04-05 00:27:37 +02:00
|
|
|
print("Finished exporting to %s; tarring" % (output_dir,))
|
2016-08-12 02:38:19 +02:00
|
|
|
|
|
|
|
do_write_stats_file_for_realm_export(output_dir)
|
|
|
|
|
2016-04-05 00:27:37 +02:00
|
|
|
tarball_path = output_dir.rstrip('/') + '.tar.gz'
|
|
|
|
os.chdir(os.path.dirname(output_dir))
|
|
|
|
subprocess.check_call(["tar", "-czf", tarball_path, os.path.basename(output_dir)])
|
|
|
|
print("Tarball written to %s" % (tarball_path,))
|
2019-01-08 00:15:56 +01:00
|
|
|
|
|
|
|
if not options["upload_to_s3"]:
|
|
|
|
return
|
|
|
|
|
|
|
|
def percent_callback(complete: Any, total: Any) -> None:
|
|
|
|
sys.stdout.write('.')
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
|
|
|
if settings.LOCAL_UPLOADS_DIR is not None:
|
|
|
|
raise CommandError("S3 backend must be configured to upload to S3")
|
|
|
|
|
|
|
|
print("Uploading export tarball to S3")
|
|
|
|
|
|
|
|
from zerver.lib.upload import S3Connection, get_bucket, Key
|
|
|
|
conn = S3Connection(settings.S3_KEY, settings.S3_SECRET_KEY)
|
|
|
|
# We use the avatar bucket, because it's world-readable.
|
|
|
|
bucket = get_bucket(conn, settings.S3_AVATAR_BUCKET)
|
|
|
|
key = Key(bucket)
|
|
|
|
key.key = os.path.join("exports", generate_random_token(32), os.path.basename(tarball_path))
|
|
|
|
key.set_contents_from_filename(tarball_path, cb=percent_callback, num_cb=40)
|
|
|
|
|
|
|
|
public_url = 'https://{bucket}.{host}/{key}'.format(
|
|
|
|
host=conn.server_name(),
|
|
|
|
bucket=bucket.name,
|
|
|
|
key=key.key)
|
|
|
|
print("Uploaded to %s" % (public_url,))
|