2017-03-03 19:01:52 +01:00
|
|
|
from typing import Any, Dict, Mapping, Optional, Tuple, Text
|
2013-06-18 20:47:37 +02:00
|
|
|
|
2016-05-25 15:02:02 +02:00
|
|
|
from django.utils.translation import ugettext as _
|
2013-06-18 20:47:37 +02:00
|
|
|
from django.conf import settings
|
|
|
|
from django.template.defaultfilters import slugify
|
2016-06-05 03:54:32 +02:00
|
|
|
from django.core.files import File
|
|
|
|
from django.http import HttpRequest
|
2017-03-02 11:17:10 +01:00
|
|
|
from django.db.models import Sum
|
2016-04-21 08:48:33 +02:00
|
|
|
from jinja2 import Markup as mark_safe
|
2016-03-13 10:29:33 +01:00
|
|
|
import unicodedata
|
2013-06-18 20:47:37 +02:00
|
|
|
|
2017-03-02 23:45:57 +01:00
|
|
|
from zerver.lib.avatar_hash import user_avatar_path
|
2017-07-21 02:18:33 +02:00
|
|
|
from zerver.lib.exceptions import JsonableError, ErrorCode
|
2017-12-21 22:05:14 +01:00
|
|
|
from zerver.lib.str_utils import NonBinaryStr
|
2013-06-18 20:47:37 +02:00
|
|
|
|
2016-06-05 03:54:32 +02:00
|
|
|
from boto.s3.bucket import Bucket
|
2013-06-18 20:47:37 +02:00
|
|
|
from boto.s3.key import Key
|
|
|
|
from boto.s3.connection import S3Connection
|
|
|
|
from mimetypes import guess_type, guess_extension
|
|
|
|
|
2017-05-23 21:17:47 +02:00
|
|
|
from zerver.models import get_user_profile_by_id, RealmEmoji
|
2016-03-24 20:24:01 +01:00
|
|
|
from zerver.models import Attachment
|
2017-03-13 05:45:50 +01:00
|
|
|
from zerver.models import Realm, RealmEmoji, UserProfile, Message
|
2014-05-06 03:48:23 +02:00
|
|
|
|
2017-11-05 05:30:31 +01:00
|
|
|
import urllib
|
2013-06-18 20:47:37 +02:00
|
|
|
import base64
|
|
|
|
import os
|
2016-03-13 10:29:33 +01:00
|
|
|
import re
|
2013-10-28 17:44:09 +01:00
|
|
|
from PIL import Image, ImageOps
|
2016-06-29 17:13:28 +02:00
|
|
|
import io
|
2013-10-28 16:13:53 +01:00
|
|
|
import random
|
2016-03-24 20:24:01 +01:00
|
|
|
import logging
|
2013-06-18 20:47:37 +02:00
|
|
|
|
2016-10-03 06:28:31 +02:00
|
|
|
DEFAULT_AVATAR_SIZE = 100
|
2016-09-20 21:48:48 +02:00
|
|
|
MEDIUM_AVATAR_SIZE = 500
|
2017-03-13 05:45:50 +01:00
|
|
|
DEFAULT_EMOJI_SIZE = 64
|
2016-10-03 06:28:31 +02:00
|
|
|
|
2013-06-18 20:47:37 +02:00
|
|
|
# Performance Note:
|
|
|
|
#
|
|
|
|
# For writing files to S3, the file could either be stored in RAM
|
|
|
|
# (if it is less than 2.5MiB or so) or an actual temporary file on disk.
|
|
|
|
#
|
|
|
|
# Because we set FILE_UPLOAD_MAX_MEMORY_SIZE to 0, only the latter case
|
|
|
|
# should occur in practice.
|
|
|
|
#
|
|
|
|
# This is great, because passing the pseudofile object that Django gives
|
|
|
|
# you to boto would be a pain.
|
|
|
|
|
2016-03-13 10:29:33 +01:00
|
|
|
# To come up with a s3 key we randomly generate a "directory". The
|
|
|
|
# "file name" is the original filename provided by the user run
|
|
|
|
# through a sanitization function.
|
|
|
|
|
2017-11-03 03:12:25 +01:00
|
|
|
attachment_url_re = re.compile('[/\-]user[\-_]uploads[/\.-].*?(?=[ )]|\Z)')
|
2016-07-11 03:04:58 +02:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def attachment_url_to_path_id(attachment_url: Text) -> Text:
|
2017-11-03 03:12:25 +01:00
|
|
|
path_id_raw = re.sub('[/\-]user[\-_]uploads[/\.-]', '', attachment_url)
|
2016-07-11 03:07:37 +02:00
|
|
|
# Remove any extra '.' after file extension. These are probably added by the user
|
2017-11-03 03:12:25 +01:00
|
|
|
return re.sub('[.]+$', '', path_id_raw, re.M)
|
2016-07-11 03:07:37 +02:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def sanitize_name(value: NonBinaryStr) -> Text:
|
2016-03-13 10:29:33 +01:00
|
|
|
"""
|
|
|
|
Sanitizes a value to be safe to store in a Linux filesystem, in
|
|
|
|
S3, and in a URL. So unicode is allowed, but not special
|
|
|
|
characters other than ".", "-", and "_".
|
|
|
|
|
|
|
|
This implementation is based on django.utils.text.slugify; it is
|
|
|
|
modified by:
|
|
|
|
* adding '.' and '_' to the list of allowed characters.
|
|
|
|
* preserving the case of the value.
|
|
|
|
"""
|
|
|
|
value = unicodedata.normalize('NFKC', value)
|
|
|
|
value = re.sub('[^\w\s._-]', '', value, flags=re.U).strip()
|
|
|
|
return mark_safe(re.sub('[-\s]+', '-', value, flags=re.U))
|
2013-06-18 20:47:37 +02:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def random_name(bytes: int=60) -> Text:
|
2016-06-29 17:13:28 +02:00
|
|
|
return base64.urlsafe_b64encode(os.urandom(bytes)).decode('utf-8')
|
2013-06-18 20:47:37 +02:00
|
|
|
|
2016-04-03 08:13:36 +02:00
|
|
|
class BadImageError(JsonableError):
|
2017-07-21 02:18:33 +02:00
|
|
|
code = ErrorCode.BAD_IMAGE
|
2016-04-03 08:13:36 +02:00
|
|
|
|
2017-03-02 11:17:10 +01:00
|
|
|
class ExceededQuotaError(JsonableError):
|
2017-07-21 02:18:33 +02:00
|
|
|
code = ErrorCode.QUOTA_EXCEEDED
|
2017-03-02 11:17:10 +01:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def resize_avatar(image_data: bytes, size: int=DEFAULT_AVATAR_SIZE) -> bytes:
|
2016-04-03 08:13:36 +02:00
|
|
|
try:
|
2016-06-29 17:13:28 +02:00
|
|
|
im = Image.open(io.BytesIO(image_data))
|
2016-10-03 06:28:31 +02:00
|
|
|
im = ImageOps.fit(im, (size, size), Image.ANTIALIAS)
|
2016-04-03 08:13:36 +02:00
|
|
|
except IOError:
|
2017-02-26 20:17:34 +01:00
|
|
|
raise BadImageError("Could not decode image; did you upload an image file?")
|
2016-06-29 17:13:28 +02:00
|
|
|
out = io.BytesIO()
|
2013-10-28 16:13:53 +01:00
|
|
|
im.save(out, format='png')
|
|
|
|
return out.getvalue()
|
|
|
|
|
2017-03-13 05:45:50 +01:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def resize_emoji(image_data: bytes, size: int=DEFAULT_EMOJI_SIZE) -> bytes:
|
2017-03-13 05:45:50 +01:00
|
|
|
try:
|
|
|
|
im = Image.open(io.BytesIO(image_data))
|
|
|
|
image_format = im.format
|
|
|
|
if image_format == 'GIF' and im.is_animated:
|
2017-08-04 16:16:42 +02:00
|
|
|
if im.size[0] != im.size[1]:
|
|
|
|
raise JsonableError(
|
2017-11-24 18:08:38 +01:00
|
|
|
_("Animated emoji must have the same width and height."))
|
2017-08-04 16:16:42 +02:00
|
|
|
elif im.size[0] > size:
|
2017-03-13 05:45:50 +01:00
|
|
|
raise JsonableError(
|
|
|
|
_("Animated emoji can't be larger than 64px in width or height."))
|
|
|
|
else:
|
|
|
|
return image_data
|
|
|
|
im = ImageOps.fit(im, (size, size), Image.ANTIALIAS)
|
|
|
|
except IOError:
|
|
|
|
raise BadImageError("Could not decode image; did you upload an image file?")
|
|
|
|
out = io.BytesIO()
|
|
|
|
im.save(out, format=image_format)
|
|
|
|
return out.getvalue()
|
|
|
|
|
|
|
|
|
2016-06-09 07:53:35 +02:00
|
|
|
### Common
|
|
|
|
|
2017-11-05 11:37:41 +01:00
|
|
|
class ZulipUploadBackend:
|
2017-02-26 11:03:45 +01:00
|
|
|
def upload_message_image(self, uploaded_file_name, uploaded_file_size,
|
|
|
|
content_type, file_data, user_profile, target_realm=None):
|
2017-11-09 09:03:33 +01:00
|
|
|
# type: (Text, int, Optional[Text], bytes, UserProfile, Optional[Realm]) -> Text
|
2016-06-09 07:53:35 +02:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_avatar_image(self, user_file: File,
|
|
|
|
acting_user_profile: UserProfile,
|
|
|
|
target_user_profile: UserProfile) -> None:
|
2016-06-09 07:53:35 +02:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def delete_message_image(self, path_id: Text) -> bool:
|
2016-06-09 07:53:35 +02:00
|
|
|
raise NotImplementedError()
|
2013-10-28 16:13:53 +01:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_avatar_url(self, hash_key: Text, medium: bool=False) -> Text:
|
2016-09-20 21:48:48 +02:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def ensure_medium_avatar_image(self, user_profile: UserProfile) -> None:
|
2016-09-28 00:21:31 +02:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_realm_icon_image(self, icon_file: File, user_profile: UserProfile) -> None:
|
2017-02-21 03:41:20 +01:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_realm_icon_url(self, realm_id: int, version: int) -> Text:
|
2017-02-21 03:41:20 +01:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_emoji_image(self, emoji_file: File, emoji_file_name: Text, user_profile: UserProfile) -> None:
|
2017-03-13 05:45:50 +01:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_emoji_url(self, emoji_file_name: Text, realm_id: int) -> Text:
|
2017-03-13 05:45:50 +01:00
|
|
|
raise NotImplementedError()
|
|
|
|
|
2017-02-21 03:41:20 +01:00
|
|
|
|
2013-10-28 16:13:53 +01:00
|
|
|
### S3
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_bucket(conn: S3Connection, bucket_name: Text) -> Bucket:
|
2014-02-06 18:03:40 +01:00
|
|
|
# Calling get_bucket() with validate=True can apparently lead
|
|
|
|
# to expensive S3 bills:
|
|
|
|
# http://www.appneta.com/blog/s3-list-get-bucket-default/
|
|
|
|
# The benefits of validation aren't completely clear to us, and
|
|
|
|
# we want to save on our bills, so we set the validate flag to False.
|
|
|
|
# (We think setting validate to True would cause us to fail faster
|
|
|
|
# in situations where buckets don't exist, but that shouldn't be
|
|
|
|
# an issue for us.)
|
|
|
|
bucket = conn.get_bucket(bucket_name, validate=False)
|
|
|
|
return bucket
|
|
|
|
|
2013-06-18 20:47:37 +02:00
|
|
|
def upload_image_to_s3(
|
|
|
|
bucket_name,
|
|
|
|
file_name,
|
|
|
|
content_type,
|
2013-10-23 19:31:40 +02:00
|
|
|
user_profile,
|
2016-11-30 21:54:51 +01:00
|
|
|
contents):
|
2017-11-09 09:03:33 +01:00
|
|
|
# type: (NonBinaryStr, Text, Optional[Text], UserProfile, bytes) -> None
|
2013-06-18 20:47:37 +02:00
|
|
|
|
|
|
|
conn = S3Connection(settings.S3_KEY, settings.S3_SECRET_KEY)
|
2017-01-31 11:35:33 +01:00
|
|
|
bucket = get_bucket(conn, bucket_name)
|
2014-02-06 18:03:40 +01:00
|
|
|
key = Key(bucket)
|
2017-11-04 20:01:46 +01:00
|
|
|
key.key = file_name
|
2013-10-23 19:31:40 +02:00
|
|
|
key.set_metadata("user_profile_id", str(user_profile.id))
|
2017-01-03 21:04:55 +01:00
|
|
|
key.set_metadata("realm_id", str(user_profile.realm_id))
|
2013-06-18 20:47:37 +02:00
|
|
|
|
2016-07-13 18:25:40 +02:00
|
|
|
if content_type is not None:
|
2017-11-03 03:12:25 +01:00
|
|
|
headers = {'Content-Type': content_type} # type: Optional[Dict[Text, Text]]
|
2013-06-18 20:47:37 +02:00
|
|
|
else:
|
|
|
|
headers = None
|
|
|
|
|
2017-08-16 16:16:15 +02:00
|
|
|
key.set_contents_from_string(contents, headers=headers) # type: ignore # https://github.com/python/typeshed/issues/1552
|
2013-06-18 20:47:37 +02:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_total_uploads_size_for_user(user: UserProfile) -> int:
|
2017-03-02 11:17:10 +01:00
|
|
|
uploads = Attachment.objects.filter(owner=user)
|
|
|
|
total_quota = uploads.aggregate(Sum('size'))['size__sum']
|
|
|
|
|
|
|
|
# In case user has no uploads
|
|
|
|
if (total_quota is None):
|
|
|
|
total_quota = 0
|
|
|
|
return total_quota
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def within_upload_quota(user: UserProfile, uploaded_file_size: int) -> bool:
|
2017-03-02 11:17:10 +01:00
|
|
|
total_quota = get_total_uploads_size_for_user(user)
|
|
|
|
if (total_quota + uploaded_file_size > user.quota):
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_file_info(request: HttpRequest, user_file: File) -> Tuple[Text, int, Optional[Text]]:
|
2016-06-13 13:24:19 +02:00
|
|
|
|
2016-06-29 17:13:28 +02:00
|
|
|
uploaded_file_name = user_file.name
|
2016-09-19 13:31:40 +02:00
|
|
|
assert isinstance(uploaded_file_name, str)
|
|
|
|
|
2013-06-18 20:47:37 +02:00
|
|
|
content_type = request.GET.get('mimetype')
|
|
|
|
if content_type is None:
|
2016-07-13 18:25:40 +02:00
|
|
|
guessed_type = guess_type(uploaded_file_name)[0]
|
|
|
|
if guessed_type is not None:
|
2017-11-04 19:08:30 +01:00
|
|
|
content_type = guessed_type
|
2013-06-18 20:47:37 +02:00
|
|
|
else:
|
2017-05-26 02:08:16 +02:00
|
|
|
extension = guess_extension(content_type)
|
|
|
|
if extension is not None:
|
|
|
|
uploaded_file_name = uploaded_file_name + extension
|
2016-06-13 13:24:19 +02:00
|
|
|
|
2016-06-29 17:13:28 +02:00
|
|
|
uploaded_file_name = urllib.parse.unquote(uploaded_file_name)
|
2017-02-26 11:03:45 +01:00
|
|
|
uploaded_file_size = user_file.size
|
|
|
|
|
|
|
|
return uploaded_file_name, uploaded_file_size, content_type
|
2013-06-18 20:47:37 +02:00
|
|
|
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_signed_upload_url(path: Text) -> Text:
|
2013-10-23 16:46:18 +02:00
|
|
|
conn = S3Connection(settings.S3_KEY, settings.S3_SECRET_KEY)
|
2017-11-04 20:01:46 +01:00
|
|
|
return conn.generate_url(15, 'GET', bucket=settings.S3_AUTH_UPLOADS_BUCKET, key=path)
|
2013-09-16 20:59:54 +02:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_realm_for_filename(path: Text) -> Optional[int]:
|
2014-05-06 03:48:23 +02:00
|
|
|
conn = S3Connection(settings.S3_KEY, settings.S3_SECRET_KEY)
|
|
|
|
key = get_bucket(conn, settings.S3_AUTH_UPLOADS_BUCKET).get_key(path)
|
|
|
|
if key is None:
|
|
|
|
# This happens if the key does not exist.
|
|
|
|
return None
|
2017-01-03 21:04:55 +01:00
|
|
|
return get_user_profile_by_id(key.metadata["user_profile_id"]).realm_id
|
2014-05-06 03:48:23 +02:00
|
|
|
|
2017-03-13 05:45:50 +01:00
|
|
|
|
2016-06-09 07:53:35 +02:00
|
|
|
class S3UploadBackend(ZulipUploadBackend):
|
2017-03-13 05:45:50 +01:00
|
|
|
|
2017-02-26 11:03:45 +01:00
|
|
|
def upload_message_image(self, uploaded_file_name, uploaded_file_size,
|
|
|
|
content_type, file_data, user_profile, target_realm=None):
|
2017-11-09 09:03:33 +01:00
|
|
|
# type: (Text, int, Optional[Text], bytes, UserProfile, Optional[Realm]) -> Text
|
2016-06-09 07:53:35 +02:00
|
|
|
bucket_name = settings.S3_AUTH_UPLOADS_BUCKET
|
2017-02-11 04:47:04 +01:00
|
|
|
if target_realm is None:
|
|
|
|
target_realm = user_profile.realm
|
2016-06-09 07:53:35 +02:00
|
|
|
s3_file_name = "/".join([
|
2017-02-11 04:47:04 +01:00
|
|
|
str(target_realm.id),
|
2016-06-09 07:53:35 +02:00
|
|
|
random_name(18),
|
|
|
|
sanitize_name(uploaded_file_name)
|
|
|
|
])
|
2017-01-09 20:45:11 +01:00
|
|
|
url = "/user_uploads/%s" % (s3_file_name,)
|
2016-06-09 07:53:35 +02:00
|
|
|
|
|
|
|
upload_image_to_s3(
|
2017-01-24 07:06:13 +01:00
|
|
|
bucket_name,
|
|
|
|
s3_file_name,
|
|
|
|
content_type,
|
|
|
|
user_profile,
|
|
|
|
file_data
|
2016-06-09 07:53:35 +02:00
|
|
|
)
|
|
|
|
|
2017-02-26 11:03:45 +01:00
|
|
|
create_attachment(uploaded_file_name, s3_file_name, user_profile, uploaded_file_size)
|
2016-06-09 07:53:35 +02:00
|
|
|
return url
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def delete_message_image(self, path_id: Text) -> bool:
|
2016-06-09 07:53:35 +02:00
|
|
|
conn = S3Connection(settings.S3_KEY, settings.S3_SECRET_KEY)
|
|
|
|
bucket = get_bucket(conn, settings.S3_AUTH_UPLOADS_BUCKET)
|
|
|
|
|
|
|
|
# check if file exists
|
|
|
|
key = bucket.get_key(path_id)
|
|
|
|
if key is not None:
|
|
|
|
bucket.delete_key(key)
|
|
|
|
return True
|
|
|
|
|
|
|
|
file_name = path_id.split("/")[-1]
|
|
|
|
logging.warning("%s does not exist. Its entry in the database will be removed." % (file_name,))
|
|
|
|
return False
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_avatar_image(self, user_file: File,
|
|
|
|
acting_user_profile: UserProfile,
|
|
|
|
target_user_profile: UserProfile) -> None:
|
2016-06-09 07:53:35 +02:00
|
|
|
content_type = guess_type(user_file.name)[0]
|
|
|
|
bucket_name = settings.S3_AVATAR_BUCKET
|
2017-03-02 23:45:57 +01:00
|
|
|
s3_file_name = user_avatar_path(target_user_profile)
|
2016-06-09 07:53:35 +02:00
|
|
|
|
|
|
|
image_data = user_file.read()
|
|
|
|
upload_image_to_s3(
|
|
|
|
bucket_name,
|
|
|
|
s3_file_name + ".original",
|
|
|
|
content_type,
|
2017-03-02 16:21:46 +01:00
|
|
|
target_user_profile,
|
2016-06-09 07:53:35 +02:00
|
|
|
image_data,
|
|
|
|
)
|
2013-10-28 17:44:09 +01:00
|
|
|
|
2016-09-20 21:48:48 +02:00
|
|
|
# custom 500px wide version
|
|
|
|
resized_medium = resize_avatar(image_data, MEDIUM_AVATAR_SIZE)
|
|
|
|
upload_image_to_s3(
|
|
|
|
bucket_name,
|
|
|
|
s3_file_name + "-medium.png",
|
|
|
|
"image/png",
|
2017-03-02 16:21:46 +01:00
|
|
|
target_user_profile,
|
2016-09-20 21:48:48 +02:00
|
|
|
resized_medium
|
|
|
|
)
|
|
|
|
|
2016-06-09 07:53:35 +02:00
|
|
|
resized_data = resize_avatar(image_data)
|
|
|
|
upload_image_to_s3(
|
|
|
|
bucket_name,
|
|
|
|
s3_file_name,
|
|
|
|
'image/png',
|
2017-03-02 16:21:46 +01:00
|
|
|
target_user_profile,
|
2016-06-09 07:53:35 +02:00
|
|
|
resized_data,
|
|
|
|
)
|
|
|
|
# See avatar_url in avatar.py for URL. (That code also handles the case
|
|
|
|
# that users use gravatar.)
|
2013-10-28 16:13:53 +01:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_avatar_url(self, hash_key: Text, medium: bool=False) -> Text:
|
2016-09-28 00:21:31 +02:00
|
|
|
bucket = settings.S3_AVATAR_BUCKET
|
2017-03-21 23:53:54 +01:00
|
|
|
medium_suffix = "-medium.png" if medium else ""
|
2016-09-28 00:21:31 +02:00
|
|
|
# ?x=x allows templates to append additional parameters with &s
|
2017-03-21 23:53:54 +01:00
|
|
|
return u"https://%s.s3.amazonaws.com/%s%s?x=x" % (bucket, hash_key, medium_suffix)
|
2016-09-20 21:48:48 +02:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_realm_icon_image(self, icon_file: File, user_profile: UserProfile) -> None:
|
2017-02-21 03:41:20 +01:00
|
|
|
content_type = guess_type(icon_file.name)[0]
|
|
|
|
bucket_name = settings.S3_AVATAR_BUCKET
|
|
|
|
s3_file_name = os.path.join(str(user_profile.realm.id), 'realm', 'icon')
|
|
|
|
|
|
|
|
image_data = icon_file.read()
|
|
|
|
upload_image_to_s3(
|
|
|
|
bucket_name,
|
|
|
|
s3_file_name + ".original",
|
|
|
|
content_type,
|
|
|
|
user_profile,
|
|
|
|
image_data,
|
|
|
|
)
|
|
|
|
|
|
|
|
resized_data = resize_avatar(image_data)
|
|
|
|
upload_image_to_s3(
|
|
|
|
bucket_name,
|
2017-04-13 04:48:24 +02:00
|
|
|
s3_file_name + ".png",
|
2017-02-21 03:41:20 +01:00
|
|
|
'image/png',
|
|
|
|
user_profile,
|
|
|
|
resized_data,
|
|
|
|
)
|
|
|
|
# See avatar_url in avatar.py for URL. (That code also handles the case
|
|
|
|
# that users use gravatar.)
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_realm_icon_url(self, realm_id: int, version: int) -> Text:
|
2017-02-21 03:41:20 +01:00
|
|
|
bucket = settings.S3_AVATAR_BUCKET
|
|
|
|
# ?x=x allows templates to append additional parameters with &s
|
|
|
|
return u"https://%s.s3.amazonaws.com/%s/realm/icon.png?version=%s" % (bucket, realm_id, version)
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def ensure_medium_avatar_image(self, user_profile: UserProfile) -> None:
|
2017-03-02 23:45:57 +01:00
|
|
|
file_path = user_avatar_path(user_profile)
|
|
|
|
s3_file_name = file_path
|
2016-09-20 21:48:48 +02:00
|
|
|
|
|
|
|
bucket_name = settings.S3_AVATAR_BUCKET
|
|
|
|
conn = S3Connection(settings.S3_KEY, settings.S3_SECRET_KEY)
|
2017-01-31 11:35:33 +01:00
|
|
|
bucket = get_bucket(conn, bucket_name)
|
2017-03-02 23:45:57 +01:00
|
|
|
key = bucket.get_key(file_path)
|
2017-12-21 22:05:14 +01:00
|
|
|
image_data = key.get_contents_as_string()
|
2016-09-20 21:48:48 +02:00
|
|
|
|
2017-12-21 22:05:14 +01:00
|
|
|
resized_medium = resize_avatar(image_data, MEDIUM_AVATAR_SIZE) # type: ignore # image_data is `bytes`, boto subs are wrong
|
2016-09-20 21:48:48 +02:00
|
|
|
upload_image_to_s3(
|
|
|
|
bucket_name,
|
|
|
|
s3_file_name + "-medium.png",
|
|
|
|
"image/png",
|
|
|
|
user_profile,
|
|
|
|
resized_medium
|
|
|
|
)
|
2016-09-28 00:21:31 +02:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_emoji_image(self, emoji_file: File, emoji_file_name: Text,
|
|
|
|
user_profile: UserProfile) -> None:
|
2017-03-13 05:45:50 +01:00
|
|
|
content_type = guess_type(emoji_file.name)[0]
|
|
|
|
bucket_name = settings.S3_AVATAR_BUCKET
|
|
|
|
emoji_path = RealmEmoji.PATH_ID_TEMPLATE.format(
|
|
|
|
realm_id=user_profile.realm_id,
|
|
|
|
emoji_file_name=emoji_file_name
|
|
|
|
)
|
|
|
|
|
|
|
|
image_data = emoji_file.read()
|
|
|
|
resized_image_data = resize_emoji(image_data)
|
|
|
|
upload_image_to_s3(
|
|
|
|
bucket_name,
|
|
|
|
".".join((emoji_path, "original")),
|
|
|
|
content_type,
|
|
|
|
user_profile,
|
|
|
|
image_data,
|
|
|
|
)
|
|
|
|
upload_image_to_s3(
|
|
|
|
bucket_name,
|
|
|
|
emoji_path,
|
|
|
|
content_type,
|
|
|
|
user_profile,
|
|
|
|
resized_image_data,
|
|
|
|
)
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_emoji_url(self, emoji_file_name: Text, realm_id: int) -> Text:
|
2017-03-13 05:45:50 +01:00
|
|
|
bucket = settings.S3_AVATAR_BUCKET
|
|
|
|
emoji_path = RealmEmoji.PATH_ID_TEMPLATE.format(realm_id=realm_id,
|
|
|
|
emoji_file_name=emoji_file_name)
|
|
|
|
return u"https://%s.s3.amazonaws.com/%s" % (bucket, emoji_path)
|
|
|
|
|
|
|
|
|
2013-10-28 16:13:53 +01:00
|
|
|
### Local
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def write_local_file(type: Text, path: Text, file_data: bytes) -> None:
|
2013-10-28 16:13:53 +01:00
|
|
|
file_path = os.path.join(settings.LOCAL_UPLOADS_DIR, type, path)
|
2017-11-14 04:34:23 +01:00
|
|
|
os.makedirs(os.path.dirname(file_path), exist_ok=True)
|
2013-10-28 16:13:53 +01:00
|
|
|
with open(file_path, 'wb') as f:
|
|
|
|
f.write(file_data)
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_local_file_path(path_id: Text) -> Optional[Text]:
|
2016-06-09 12:19:56 +02:00
|
|
|
local_path = os.path.join(settings.LOCAL_UPLOADS_DIR, 'files', path_id)
|
|
|
|
if os.path.isfile(local_path):
|
|
|
|
return local_path
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2016-06-09 07:53:35 +02:00
|
|
|
class LocalUploadBackend(ZulipUploadBackend):
|
2017-02-26 11:03:45 +01:00
|
|
|
def upload_message_image(self, uploaded_file_name, uploaded_file_size,
|
|
|
|
content_type, file_data, user_profile, target_realm=None):
|
2017-11-09 09:03:33 +01:00
|
|
|
# type: (Text, int, Optional[Text], bytes, UserProfile, Optional[Realm]) -> Text
|
2016-06-09 07:53:35 +02:00
|
|
|
# Split into 256 subdirectories to prevent directories from getting too big
|
|
|
|
path = "/".join([
|
2017-01-03 21:04:55 +01:00
|
|
|
str(user_profile.realm_id),
|
2016-06-09 07:53:35 +02:00
|
|
|
format(random.randint(0, 255), 'x'),
|
|
|
|
random_name(18),
|
|
|
|
sanitize_name(uploaded_file_name)
|
|
|
|
])
|
|
|
|
|
|
|
|
write_local_file('files', path, file_data)
|
2017-02-26 11:03:45 +01:00
|
|
|
create_attachment(uploaded_file_name, path, user_profile, uploaded_file_size)
|
2016-06-09 07:53:35 +02:00
|
|
|
return '/user_uploads/' + path
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def delete_message_image(self, path_id: Text) -> bool:
|
2016-06-09 07:53:35 +02:00
|
|
|
file_path = os.path.join(settings.LOCAL_UPLOADS_DIR, 'files', path_id)
|
|
|
|
if os.path.isfile(file_path):
|
|
|
|
# This removes the file but the empty folders still remain.
|
|
|
|
os.remove(file_path)
|
|
|
|
return True
|
|
|
|
|
|
|
|
file_name = path_id.split("/")[-1]
|
|
|
|
logging.warning("%s does not exist. Its entry in the database will be removed." % (file_name,))
|
|
|
|
return False
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_avatar_image(self, user_file: File,
|
|
|
|
acting_user_profile: UserProfile,
|
|
|
|
target_user_profile: UserProfile) -> None:
|
2017-03-02 23:45:57 +01:00
|
|
|
file_path = user_avatar_path(target_user_profile)
|
2016-06-09 07:53:35 +02:00
|
|
|
|
|
|
|
image_data = user_file.read()
|
2017-03-02 23:45:57 +01:00
|
|
|
write_local_file('avatars', file_path + '.original', image_data)
|
2016-06-09 07:53:35 +02:00
|
|
|
|
|
|
|
resized_data = resize_avatar(image_data)
|
2017-03-02 23:45:57 +01:00
|
|
|
write_local_file('avatars', file_path + '.png', resized_data)
|
2016-06-09 07:53:35 +02:00
|
|
|
|
2016-09-20 21:48:48 +02:00
|
|
|
resized_medium = resize_avatar(image_data, MEDIUM_AVATAR_SIZE)
|
2017-03-02 23:45:57 +01:00
|
|
|
write_local_file('avatars', file_path + '-medium.png', resized_medium)
|
2016-09-20 21:48:48 +02:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_avatar_url(self, hash_key: Text, medium: bool=False) -> Text:
|
2016-09-28 00:21:31 +02:00
|
|
|
# ?x=x allows templates to append additional parameters with &s
|
2016-09-20 21:48:48 +02:00
|
|
|
medium_suffix = "-medium" if medium else ""
|
|
|
|
return u"/user_avatars/%s%s.png?x=x" % (hash_key, medium_suffix)
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_realm_icon_image(self, icon_file: File, user_profile: UserProfile) -> None:
|
2017-02-21 03:41:20 +01:00
|
|
|
upload_path = os.path.join('avatars', str(user_profile.realm.id), 'realm')
|
|
|
|
|
|
|
|
image_data = icon_file.read()
|
|
|
|
write_local_file(
|
|
|
|
upload_path,
|
|
|
|
'icon.original',
|
|
|
|
image_data)
|
|
|
|
|
|
|
|
resized_data = resize_avatar(image_data)
|
|
|
|
write_local_file(upload_path, 'icon.png', resized_data)
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_realm_icon_url(self, realm_id: int, version: int) -> Text:
|
2017-02-21 03:41:20 +01:00
|
|
|
# ?x=x allows templates to append additional parameters with &s
|
|
|
|
return u"/user_avatars/%s/realm/icon.png?version=%s" % (realm_id, version)
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def ensure_medium_avatar_image(self, user_profile: UserProfile) -> None:
|
2017-03-02 23:45:57 +01:00
|
|
|
file_path = user_avatar_path(user_profile)
|
2016-09-20 21:48:48 +02:00
|
|
|
|
2017-03-02 23:45:57 +01:00
|
|
|
output_path = os.path.join(settings.LOCAL_UPLOADS_DIR, "avatars", file_path + "-medium.png")
|
2016-09-20 21:48:48 +02:00
|
|
|
if os.path.isfile(output_path):
|
|
|
|
return
|
|
|
|
|
2017-03-02 23:45:57 +01:00
|
|
|
image_path = os.path.join(settings.LOCAL_UPLOADS_DIR, "avatars", file_path + ".original")
|
2016-09-20 21:48:48 +02:00
|
|
|
image_data = open(image_path, "rb").read()
|
|
|
|
resized_medium = resize_avatar(image_data, MEDIUM_AVATAR_SIZE)
|
2017-03-02 23:45:57 +01:00
|
|
|
write_local_file('avatars', file_path + '-medium.png', resized_medium)
|
2016-09-28 00:21:31 +02:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_emoji_image(self, emoji_file: File, emoji_file_name: Text,
|
|
|
|
user_profile: UserProfile) -> None:
|
2017-03-13 05:45:50 +01:00
|
|
|
emoji_path = RealmEmoji.PATH_ID_TEMPLATE.format(
|
|
|
|
realm_id= user_profile.realm_id,
|
|
|
|
emoji_file_name=emoji_file_name
|
|
|
|
)
|
|
|
|
|
|
|
|
image_data = emoji_file.read()
|
|
|
|
resized_image_data = resize_emoji(image_data)
|
|
|
|
write_local_file(
|
|
|
|
'avatars',
|
|
|
|
".".join((emoji_path, "original")),
|
|
|
|
image_data)
|
|
|
|
write_local_file(
|
|
|
|
'avatars',
|
|
|
|
emoji_path,
|
|
|
|
resized_image_data)
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def get_emoji_url(self, emoji_file_name: Text, realm_id: int) -> Text:
|
2017-03-13 05:45:50 +01:00
|
|
|
return os.path.join(
|
|
|
|
u"/user_avatars",
|
|
|
|
RealmEmoji.PATH_ID_TEMPLATE.format(realm_id=realm_id, emoji_file_name=emoji_file_name))
|
|
|
|
|
2016-06-09 07:53:35 +02:00
|
|
|
# Common and wrappers
|
|
|
|
if settings.LOCAL_UPLOADS_DIR is not None:
|
2017-05-17 21:19:04 +02:00
|
|
|
upload_backend = LocalUploadBackend() # type: ZulipUploadBackend
|
2016-06-09 07:53:35 +02:00
|
|
|
else:
|
|
|
|
upload_backend = S3UploadBackend()
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def delete_message_image(path_id: Text) -> bool:
|
2016-06-09 07:53:35 +02:00
|
|
|
return upload_backend.delete_message_image(path_id)
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_avatar_image(user_file: File, acting_user_profile: UserProfile,
|
|
|
|
target_user_profile: UserProfile) -> None:
|
2017-03-02 16:21:46 +01:00
|
|
|
upload_backend.upload_avatar_image(user_file, acting_user_profile, target_user_profile)
|
2013-10-28 16:13:53 +01:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_icon_image(user_file: File, user_profile: UserProfile) -> None:
|
2017-02-21 03:41:20 +01:00
|
|
|
upload_backend.upload_realm_icon_image(user_file, user_profile)
|
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_emoji_image(emoji_file: File, emoji_file_name: Text, user_profile: UserProfile) -> None:
|
2017-03-13 05:45:50 +01:00
|
|
|
upload_backend.upload_emoji_image(emoji_file, emoji_file_name, user_profile)
|
|
|
|
|
2017-02-26 11:03:45 +01:00
|
|
|
def upload_message_image(uploaded_file_name, uploaded_file_size,
|
|
|
|
content_type, file_data, user_profile, target_realm=None):
|
2017-11-09 09:03:33 +01:00
|
|
|
# type: (Text, int, Optional[Text], bytes, UserProfile, Optional[Realm]) -> Text
|
2017-02-26 11:03:45 +01:00
|
|
|
return upload_backend.upload_message_image(uploaded_file_name, uploaded_file_size,
|
2017-11-10 03:34:13 +01:00
|
|
|
content_type, file_data, user_profile,
|
|
|
|
target_realm=target_realm)
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def claim_attachment(user_profile: UserProfile,
|
|
|
|
path_id: Text,
|
|
|
|
message: Message,
|
|
|
|
is_message_realm_public: bool) -> None:
|
2017-04-14 01:03:49 +02:00
|
|
|
attachment = Attachment.objects.get(path_id=path_id)
|
|
|
|
attachment.messages.add(message)
|
|
|
|
attachment.is_realm_public = attachment.is_realm_public or is_message_realm_public
|
|
|
|
attachment.save()
|
2016-03-24 20:24:01 +01:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def create_attachment(file_name: Text, path_id: Text, user_profile: UserProfile,
|
|
|
|
file_size: int) -> bool:
|
2017-02-26 11:03:45 +01:00
|
|
|
Attachment.objects.create(file_name=file_name, path_id=path_id, owner=user_profile,
|
|
|
|
realm=user_profile.realm, size=file_size)
|
2016-03-24 20:24:01 +01:00
|
|
|
return True
|
2013-10-28 16:13:53 +01:00
|
|
|
|
2017-11-05 11:15:10 +01:00
|
|
|
def upload_message_image_from_request(request: HttpRequest, user_file: File,
|
|
|
|
user_profile: UserProfile) -> Text:
|
2017-02-26 11:03:45 +01:00
|
|
|
uploaded_file_name, uploaded_file_size, content_type = get_file_info(request, user_file)
|
|
|
|
return upload_message_image(uploaded_file_name, uploaded_file_size,
|
|
|
|
content_type, user_file.read(), user_profile)
|