2017-03-13 05:45:50 +01:00
|
|
|
import os
|
2017-01-17 08:42:52 +01:00
|
|
|
import re
|
2021-05-04 19:47:10 +02:00
|
|
|
from typing import Tuple
|
2017-01-17 08:42:52 +01:00
|
|
|
|
2020-08-07 01:09:47 +02:00
|
|
|
import orjson
|
2021-04-16 00:57:30 +02:00
|
|
|
from django.utils.translation import gettext as _
|
2017-05-01 07:29:56 +02:00
|
|
|
|
2021-07-16 22:11:10 +02:00
|
|
|
from zerver.lib.exceptions import JsonableError, OrganizationAdministratorRequired
|
2019-07-17 02:29:08 +02:00
|
|
|
from zerver.lib.storage import static_path
|
2017-03-13 05:45:50 +01:00
|
|
|
from zerver.lib.upload import upload_backend
|
2017-05-01 07:29:56 +02:00
|
|
|
from zerver.models import Reaction, Realm, RealmEmoji, UserProfile
|
2017-01-17 08:42:52 +01:00
|
|
|
|
2019-11-20 04:34:33 +01:00
|
|
|
emoji_codes_path = static_path("generated/emoji/emoji_codes.json")
|
|
|
|
if not os.path.exists(emoji_codes_path): # nocoverage
|
|
|
|
# During the collectstatic step of build-release-tarball,
|
|
|
|
# prod-static/serve/generated/emoji won't exist yet.
|
|
|
|
emoji_codes_path = os.path.join(
|
|
|
|
os.path.dirname(__file__),
|
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
|
|
|
"../../static/generated/emoji/emoji_codes.json",
|
2019-11-20 04:34:33 +01:00
|
|
|
)
|
|
|
|
|
2020-08-07 01:09:47 +02:00
|
|
|
with open(emoji_codes_path, "rb") as fp:
|
|
|
|
emoji_codes = orjson.loads(fp.read())
|
2018-07-20 11:37:39 +02:00
|
|
|
|
2020-02-06 07:07:10 +01:00
|
|
|
name_to_codepoint = emoji_codes["name_to_codepoint"]
|
|
|
|
codepoint_to_name = emoji_codes["codepoint_to_name"]
|
|
|
|
EMOTICON_CONVERSIONS = emoji_codes["emoticon_conversions"]
|
2018-01-15 19:36:32 +01:00
|
|
|
|
|
|
|
possible_emoticons = EMOTICON_CONVERSIONS.keys()
|
2019-08-10 00:30:33 +02:00
|
|
|
possible_emoticon_regexes = (re.escape(emoticon) for emoticon in possible_emoticons)
|
2021-02-12 08:20:45 +01:00
|
|
|
terminal_symbols = ",.;?!()\\[\\] \"'\\n\\t" # from composebox_typeahead.js
|
2021-05-15 12:02:50 +02:00
|
|
|
EMOTICON_RE = (
|
2021-02-12 08:20:45 +01:00
|
|
|
f"(?<![^{terminal_symbols}])(?P<emoticon>("
|
|
|
|
+ ")|(".join(possible_emoticon_regexes)
|
|
|
|
+ f"))(?![^{terminal_symbols}])"
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2018-01-15 19:36:32 +01:00
|
|
|
|
|
|
|
# Translates emoticons to their colon syntax, e.g. `:smiley:`.
|
2018-05-10 19:13:36 +02:00
|
|
|
def translate_emoticons(text: str) -> str:
|
2018-01-15 19:36:32 +01:00
|
|
|
translated = text
|
|
|
|
|
|
|
|
for emoticon in EMOTICON_CONVERSIONS:
|
|
|
|
translated = re.sub(re.escape(emoticon), EMOTICON_CONVERSIONS[emoticon], translated)
|
|
|
|
|
|
|
|
return translated
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2018-05-10 19:13:36 +02:00
|
|
|
def emoji_name_to_emoji_code(realm: Realm, emoji_name: str) -> Tuple[str, str]:
|
2018-03-18 17:22:07 +01:00
|
|
|
realm_emojis = realm.get_active_emoji()
|
2017-12-06 02:58:20 +01:00
|
|
|
realm_emoji = realm_emojis.get(emoji_name)
|
2018-03-18 17:22:07 +01:00
|
|
|
if realm_emoji is not None:
|
2021-02-12 08:20:45 +01:00
|
|
|
return str(realm_emojis[emoji_name]["id"]), Reaction.REALM_EMOJI
|
|
|
|
if emoji_name == "zulip":
|
2017-05-01 07:29:56 +02:00
|
|
|
return emoji_name, Reaction.ZULIP_EXTRA_EMOJI
|
2017-10-02 23:47:45 +02:00
|
|
|
if emoji_name in name_to_codepoint:
|
|
|
|
return name_to_codepoint[emoji_name], Reaction.UNICODE_EMOJI
|
2020-06-15 23:22:24 +02:00
|
|
|
raise JsonableError(_("Emoji '{}' does not exist").format(emoji_name))
|
2017-01-17 08:42:52 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
|
|
|
def check_emoji_request(realm: Realm, emoji_name: str, emoji_code: str, emoji_type: str) -> None:
|
2017-11-19 07:07:29 +01:00
|
|
|
# For a given realm and emoji type, checks whether an emoji
|
|
|
|
# code is valid for new reactions, or not.
|
|
|
|
if emoji_type == "realm_emoji":
|
|
|
|
realm_emojis = realm.get_emoji()
|
2018-03-11 18:55:20 +01:00
|
|
|
realm_emoji = realm_emojis.get(emoji_code)
|
2017-12-06 02:58:20 +01:00
|
|
|
if realm_emoji is None:
|
2018-03-08 01:35:07 +01:00
|
|
|
raise JsonableError(_("Invalid custom emoji."))
|
2018-03-11 18:55:20 +01:00
|
|
|
if realm_emoji["name"] != emoji_name:
|
|
|
|
raise JsonableError(_("Invalid custom emoji name."))
|
2017-12-06 02:58:20 +01:00
|
|
|
if realm_emoji["deactivated"]:
|
2018-03-08 01:35:07 +01:00
|
|
|
raise JsonableError(_("This custom emoji has been deactivated."))
|
2017-11-19 07:07:29 +01:00
|
|
|
elif emoji_type == "zulip_extra_emoji":
|
|
|
|
if emoji_code not in ["zulip"]:
|
2018-03-08 01:35:07 +01:00
|
|
|
raise JsonableError(_("Invalid emoji code."))
|
2017-11-21 00:25:40 +01:00
|
|
|
if emoji_name != emoji_code:
|
|
|
|
raise JsonableError(_("Invalid emoji name."))
|
2017-11-19 07:07:29 +01:00
|
|
|
elif emoji_type == "unicode_emoji":
|
|
|
|
if emoji_code not in codepoint_to_name:
|
2018-03-08 01:35:07 +01:00
|
|
|
raise JsonableError(_("Invalid emoji code."))
|
2017-11-21 00:25:40 +01:00
|
|
|
if name_to_codepoint.get(emoji_name) != emoji_code:
|
|
|
|
raise JsonableError(_("Invalid emoji name."))
|
2017-11-19 07:07:29 +01:00
|
|
|
else:
|
|
|
|
# The above are the only valid emoji types
|
|
|
|
raise JsonableError(_("Invalid emoji type."))
|
2017-10-08 09:34:59 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2021-05-04 19:47:10 +02:00
|
|
|
def check_add_emoji_admin(user_profile: UserProfile) -> None:
|
|
|
|
"""Raises an exception if the user cannot add the emoji in their organization."""
|
2017-05-18 21:53:33 +02:00
|
|
|
|
2021-05-04 19:47:10 +02:00
|
|
|
# Realm administrators can always add emoji
|
2017-05-18 21:53:33 +02:00
|
|
|
if user_profile.is_realm_admin:
|
|
|
|
return
|
2021-05-04 19:02:24 +02:00
|
|
|
if user_profile.realm.add_custom_emoji_policy == Realm.ADD_CUSTOM_EMOJI_ADMINS_ONLY:
|
2019-11-16 15:53:56 +01:00
|
|
|
raise OrganizationAdministratorRequired()
|
2017-01-17 08:42:52 +01:00
|
|
|
|
2021-05-04 19:47:10 +02:00
|
|
|
|
|
|
|
def check_remove_custom_emoji(user_profile: UserProfile, emoji_name: str) -> None:
|
|
|
|
# normal users can remove emoji they themselves added
|
|
|
|
if user_profile.is_realm_admin:
|
2017-05-18 21:53:33 +02:00
|
|
|
return
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
emoji = RealmEmoji.objects.filter(
|
|
|
|
realm=user_profile.realm, name=emoji_name, deactivated=False
|
|
|
|
).first()
|
|
|
|
current_user_is_author = (
|
|
|
|
emoji is not None and emoji.author is not None and emoji.author.id == user_profile.id
|
|
|
|
)
|
2021-05-04 19:47:10 +02:00
|
|
|
if not current_user_is_author:
|
2018-03-08 01:47:17 +01:00
|
|
|
raise JsonableError(_("Must be an organization administrator or emoji author"))
|
2017-05-18 21:53:33 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2018-05-10 19:13:36 +02:00
|
|
|
def check_valid_emoji_name(emoji_name: str) -> None:
|
2020-04-08 21:49:55 +02:00
|
|
|
if emoji_name:
|
2021-02-12 08:20:45 +01:00
|
|
|
if re.match(r"^[0-9a-z.\-_]+(?<![.\-_])$", emoji_name):
|
2020-04-08 21:49:55 +02:00
|
|
|
return
|
|
|
|
raise JsonableError(_("Invalid characters in emoji name"))
|
|
|
|
raise JsonableError(_("Emoji name is missing"))
|
2017-03-13 05:45:50 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2018-05-10 19:13:36 +02:00
|
|
|
def get_emoji_url(emoji_file_name: str, realm_id: int) -> str:
|
2017-03-13 05:45:50 +01:00
|
|
|
return upload_backend.get_emoji_url(emoji_file_name, realm_id)
|
|
|
|
|
|
|
|
|
2018-05-10 19:13:36 +02:00
|
|
|
def get_emoji_file_name(emoji_file_name: str, emoji_id: int) -> str:
|
2017-03-13 05:45:50 +01:00
|
|
|
_, image_ext = os.path.splitext(emoji_file_name)
|
2021-02-12 08:20:45 +01:00
|
|
|
return "".join((str(emoji_id), image_ext))
|