emoji: Fix some emoji images not loading in missed message emails.

`emoji-datasource` package v4.0.4 introduced the concept of qualified
and non-qualified emoji codes. As chat programs don't need to use
emoji representation selector, so we used migrated our infrastructure
to use non-qualified emoji codes. But we missed the fact that the
emoji file names in emoji farm are based on emoji data's 'unified'
field and the value of this field has changed. Consequently the image
file names must also have been changed. We used `emoji_code` while
converting the span tags to img tags while processing notifications.
But since now `emoji_code` refers to non-qualified code while image
file names are based on qualified code, we need to rename images
to correctly do the conversion. This commit just fixes this.
This commit is contained in:
Harshit Bansal 2018-08-09 19:06:21 +00:00 committed by Tim Abbott
parent 144d21494e
commit 99e1a81055
4 changed files with 34 additions and 22 deletions

View File

@ -61,7 +61,7 @@ automatically by Zulip.
<td align="center"><code>&lt;3</code></td>
<td align="center">
<img
src="/static/generated/emoji/images-google-64/2764-fe0f.png"
src="/static/generated/emoji/images-google-64/2764.png"
alt="heart"
style="width: 30%;">
</td>

View File

@ -3,6 +3,7 @@
# See docs/subsystems/emoji.md for a high-level explanation of how this system
# works.
import os
import shutil
import sys
import ujson
@ -126,13 +127,31 @@ def generate_sprite_css_files(cache_path: str, emoji_data: List[Dict[str, Any]])
sprite_css_file.close()
def setup_emoji_farm(cache_path: str, emoji_data: List[Dict[str, Any]]) -> None:
def ensure_emoji_image(emoji_dict: Dict[str, Any]) -> None:
# We use individual images from emoji farm for rendering emojis
# in notification messages. We have a custom emoji formatter in
# notifications processing code that converts `span` tags to
# `img` and that logic requires us to have non-qualified
# `emoji_code` as file name for emoji.
emoji_code = get_emoji_code(emoji_dict)
img_file_name = emoji_code + '.png'
src_file = os.path.join(src_emoji_farm, emoji_dict['image'])
dst_file = os.path.join(target_emoji_farm, img_file_name)
shutil.copy2(src_file, dst_file)
for emojiset in EMOJISETS:
# Copy individual emoji images from npm packages.
src_emoji_farm = os.path.join(
NODE_MODULES_PATH, 'emoji-datasource-' + emojiset, 'img', emojiset, '64', '*')
NODE_MODULES_PATH, 'emoji-datasource-' + emojiset, 'img', emojiset, '64')
target_emoji_farm = os.path.join(cache_path, 'images-' + emojiset + '-64')
run(['mkdir', '-p', target_emoji_farm])
run(['cp', '-RPp', src_emoji_farm, target_emoji_farm], shell=True)
print("Copying individual image files...")
for emoji_dict in emoji_data:
if emoji_dict['has_img_' + emojiset]:
ensure_emoji_image(emoji_dict)
skin_variations = emoji_dict.get('skin_variations', {})
for skin_tone in skin_variations:
ensure_emoji_image(skin_variations[skin_tone])
# Copy zulip.png to the emoji farm.
zulip_image = "{}/static/assets/zulip-emoji/*".format(ZULIP_PATH)

View File

@ -12,17 +12,17 @@ EMOJISETS = ['apple', 'emojione', 'google', 'twitter']
# farm. `remapped_emojis` is a map that contains a mapping of their name in the old
# emoji farm to their name in the new emoji farm.
remapped_emojis = {
"0023": "0023-fe0f-20e3", # Hash
"0030": "0030-fe0f-20e3", # Zero
"0031": "0031-fe0f-20e3", # One
"0032": "0032-fe0f-20e3", # Two
"0033": "0033-fe0f-20e3", # Three
"0034": "0034-fe0f-20e3", # Four
"0035": "0035-fe0f-20e3", # Five
"0036": "0036-fe0f-20e3", # Six
"0037": "0037-fe0f-20e3", # Seven
"0038": "0038-fe0f-20e3", # Eight
"0039": "0039-fe0f-20e3", # Nine
"0023": "0023-20e3", # Hash
"0030": "0030-20e3", # Zero
"0031": "0031-20e3", # One
"0032": "0032-20e3", # Two
"0033": "0033-20e3", # Three
"0034": "0034-20e3", # Four
"0035": "0035-20e3", # Five
"0036": "0036-20e3", # Six
"0037": "0037-20e3", # Seven
"0038": "0038-20e3", # Eight
"0039": "0039-20e3", # Nine
"1f1e8": "1f1e8-1f1f3", # cn
"1f1e9": "1f1e9-1f1ea", # de
"1f1ea": "1f1ea-1f1f8", # es
@ -114,11 +114,4 @@ def generate_name_to_codepoint_map(emoji_name_maps: Dict[str, Dict[str, Any]]) -
return name_to_codepoint
def get_remapped_emojis_map(emoji_data: List[Dict[str, Any]]) -> Dict[str, str]:
# Extend `remapped_emojis` to include emojis whose filename from version 4
# have a emoji presentation selector(FE0F) appended to them.
for emoji_dict in emoji_data:
if emoji_dict['non_qualified'] is not None:
unified_codepoint = emoji_dict['unified'].lower()
non_qualified_codepoint = emoji_dict['non_qualified'].lower()
remapped_emojis[non_qualified_codepoint] = unified_codepoint
return remapped_emojis

View File

@ -8,4 +8,4 @@ ZULIP_VERSION = "1.9.0-rc1+git"
# Typically, adding a dependency only requires a minor version bump, and
# removing a dependency requires a major version bump.
PROVISION_VERSION = '25.6'
PROVISION_VERSION = '25.7'