2019-02-14 13:42:04 +01:00
|
|
|
import logging
|
2019-07-28 01:22:28 +02:00
|
|
|
import multiprocessing
|
2020-06-11 00:54:34 +02:00
|
|
|
import os
|
|
|
|
from mimetypes import guess_type
|
2019-02-14 13:42:04 +01:00
|
|
|
|
|
|
|
from django.conf import settings
|
2020-10-01 00:20:02 +02:00
|
|
|
from django.core.cache import cache
|
2019-02-14 13:42:04 +01:00
|
|
|
from django.db import connection
|
|
|
|
|
|
|
|
from zerver.lib.avatar_hash import user_avatar_path
|
2020-06-11 00:54:34 +02:00
|
|
|
from zerver.lib.upload import S3UploadBackend, upload_image_to_s3
|
|
|
|
from zerver.models import Attachment, RealmEmoji, UserProfile
|
2019-02-14 13:42:04 +01:00
|
|
|
|
|
|
|
s3backend = S3UploadBackend()
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2019-02-14 13:42:04 +01:00
|
|
|
def transfer_uploads_to_s3(processes: int) -> None:
|
|
|
|
# TODO: Eventually, we'll want to add realm icon and logo
|
|
|
|
transfer_avatars_to_s3(processes)
|
|
|
|
transfer_message_files_to_s3(processes)
|
|
|
|
transfer_emoji_to_s3(processes)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2019-07-28 01:22:28 +02:00
|
|
|
def _transfer_avatar_to_s3(user: UserProfile) -> None:
|
|
|
|
avatar_path = user_avatar_path(user)
|
|
|
|
file_path = os.path.join(settings.LOCAL_UPLOADS_DIR, "avatars", avatar_path) + ".original"
|
|
|
|
try:
|
2021-02-12 08:20:45 +01:00
|
|
|
with open(file_path, "rb") as f:
|
2019-07-28 01:22:28 +02:00
|
|
|
s3backend.upload_avatar_image(f, user, user)
|
|
|
|
logging.info("Uploaded avatar for %s in realm %s", user.id, user.realm.name)
|
|
|
|
except FileNotFoundError:
|
|
|
|
pass
|
2019-02-14 13:42:04 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2019-07-28 01:22:28 +02:00
|
|
|
def transfer_avatars_to_s3(processes: int) -> None:
|
2019-02-14 13:42:04 +01:00
|
|
|
users = list(UserProfile.objects.all())
|
|
|
|
if processes == 1:
|
|
|
|
for user in users:
|
|
|
|
_transfer_avatar_to_s3(user)
|
|
|
|
else: # nocoverage
|
|
|
|
connection.close()
|
2020-10-01 00:20:02 +02:00
|
|
|
cache._cache.disconnect_all()
|
2019-07-28 01:22:28 +02:00
|
|
|
with multiprocessing.Pool(processes) as p:
|
|
|
|
for out in p.imap_unordered(_transfer_avatar_to_s3, users):
|
|
|
|
pass
|
2019-02-14 13:42:04 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2019-07-28 01:22:28 +02:00
|
|
|
def _transfer_message_files_to_s3(attachment: Attachment) -> None:
|
|
|
|
file_path = os.path.join(settings.LOCAL_UPLOADS_DIR, "files", attachment.path_id)
|
|
|
|
try:
|
2021-02-12 08:20:45 +01:00
|
|
|
with open(file_path, "rb") as f:
|
2019-07-28 01:22:28 +02:00
|
|
|
guessed_type = guess_type(attachment.file_name)[0]
|
2021-02-12 08:19:30 +01:00
|
|
|
upload_image_to_s3(
|
|
|
|
s3backend.uploads_bucket,
|
|
|
|
attachment.path_id,
|
|
|
|
guessed_type,
|
|
|
|
attachment.owner,
|
|
|
|
f.read(),
|
|
|
|
)
|
2019-07-28 01:22:28 +02:00
|
|
|
logging.info("Uploaded message file in path %s", file_path)
|
|
|
|
except FileNotFoundError: # nocoverage
|
|
|
|
pass
|
2019-02-14 13:42:04 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2019-07-28 01:22:28 +02:00
|
|
|
def transfer_message_files_to_s3(processes: int) -> None:
|
2019-02-14 13:42:04 +01:00
|
|
|
attachments = list(Attachment.objects.all())
|
|
|
|
if processes == 1:
|
|
|
|
for attachment in attachments:
|
|
|
|
_transfer_message_files_to_s3(attachment)
|
|
|
|
else: # nocoverage
|
|
|
|
connection.close()
|
2020-10-01 00:20:02 +02:00
|
|
|
cache._cache.disconnect_all()
|
2019-07-28 01:22:28 +02:00
|
|
|
with multiprocessing.Pool(processes) as p:
|
|
|
|
for out in p.imap_unordered(_transfer_message_files_to_s3, attachments):
|
|
|
|
pass
|
2019-02-14 13:42:04 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2019-07-28 01:22:28 +02:00
|
|
|
def _transfer_emoji_to_s3(realm_emoji: RealmEmoji) -> None:
|
|
|
|
if not realm_emoji.file_name or not realm_emoji.author:
|
|
|
|
return # nocoverage
|
|
|
|
emoji_path = RealmEmoji.PATH_ID_TEMPLATE.format(
|
|
|
|
realm_id=realm_emoji.realm.id,
|
|
|
|
emoji_file_name=realm_emoji.file_name,
|
|
|
|
)
|
|
|
|
emoji_path = os.path.join(settings.LOCAL_UPLOADS_DIR, "avatars", emoji_path) + ".original"
|
|
|
|
try:
|
2021-02-12 08:20:45 +01:00
|
|
|
with open(emoji_path, "rb") as f:
|
2019-07-28 01:22:28 +02:00
|
|
|
s3backend.upload_emoji_image(f, realm_emoji.file_name, realm_emoji.author)
|
|
|
|
logging.info("Uploaded emoji file in path %s", emoji_path)
|
|
|
|
except FileNotFoundError: # nocoverage
|
|
|
|
pass
|
2019-02-14 13:42:04 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2019-07-28 01:22:28 +02:00
|
|
|
def transfer_emoji_to_s3(processes: int) -> None:
|
2019-02-14 13:42:04 +01:00
|
|
|
realm_emojis = list(RealmEmoji.objects.filter())
|
|
|
|
if processes == 1:
|
|
|
|
for realm_emoji in realm_emojis:
|
|
|
|
_transfer_emoji_to_s3(realm_emoji)
|
|
|
|
else: # nocoverage
|
|
|
|
connection.close()
|
2020-10-01 00:20:02 +02:00
|
|
|
cache._cache.disconnect_all()
|
2019-07-28 01:22:28 +02:00
|
|
|
with multiprocessing.Pool(processes) as p:
|
|
|
|
for out in p.imap_unordered(_transfer_emoji_to_s3, realm_emojis):
|
|
|
|
pass
|