py3: Switch almost all shebang lines to use `python3`.
This causes `upgrade-zulip-from-git`, as well as a no-option run of
`tools/build-release-tarball`, to produce a Zulip install running
Python 3, rather than Python 2. In particular this means that the
virtualenv we create, in which all application code runs, is Python 3.
One shebang line, on `zulip-ec2-configure-interfaces`, explicitly
keeps Python 2, and at least one external ops script, `wal-e`, also
still runs on Python 2. See discussion on the respective previous
commits that made those explicit. There may also be some other
third-party scripts we use, outside of this source tree and running
outside our virtualenv, that still run on Python 2.
2017-08-02 23:15:16 +02:00
|
|
|
#!/usr/bin/env python3
|
2017-01-29 21:33:44 +01:00
|
|
|
#
|
2017-11-08 17:55:36 +01:00
|
|
|
# See docs/subsystems/emoji.md for a high-level explanation of how this system
|
2017-01-29 21:33:44 +01:00
|
|
|
# works.
|
2016-10-20 20:41:39 +02:00
|
|
|
import os
|
2018-08-09 21:06:21 +02:00
|
|
|
import shutil
|
2016-10-20 20:41:39 +02:00
|
|
|
import sys
|
2020-02-21 13:32:01 +01:00
|
|
|
from typing import Any, Dict, Iterator, List, Optional
|
2015-09-25 08:56:36 +02:00
|
|
|
|
2020-08-07 01:09:47 +02:00
|
|
|
import orjson
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2017-11-08 19:40:43 +01:00
|
|
|
from emoji_names import EMOJI_NAME_MAPS
|
2020-06-11 00:54:34 +02:00
|
|
|
from emoji_setup_utils import (
|
|
|
|
EMOTICON_CONVERSIONS,
|
|
|
|
REMAPPED_EMOJIS,
|
|
|
|
emoji_names_for_picker,
|
|
|
|
generate_codepoint_to_name_map,
|
|
|
|
generate_emoji_catalog,
|
|
|
|
generate_name_to_codepoint_map,
|
|
|
|
get_emoji_code,
|
|
|
|
)
|
2017-01-26 08:35:23 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
ZULIP_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), "../../../")
|
2016-10-20 20:41:39 +02:00
|
|
|
sys.path.append(ZULIP_PATH)
|
|
|
|
|
provision: Let build_emoji build its own cache.
We no longer need to maintain duplicate code
related to where we set up the emoji
cache directory.
And we no longer need two extra steps for
people doing advanced (i.e. manual) setup.
There was no clear benefit to having provision
build the cache directory for `build_emoji`,
when it was easy to make `build_emoji` more
self-sufficient. The `build_emoji` tool
was already importing the library that has
`run_as_root`, and it was already responsible
for 99% of the create-directory kind of tasks.
(We always call `build_emoji` unconditionally from
`provision`, so there's no rationale in terms
of avoiding startup time or something.)
ASIDE:
Its not completely clear to me why we need
to put this directory in "/srv", instead of
somewhere more local (like we already do for
Travis), but maybe it's just to be like
its siblings in "/srv":
node_modules
yarn.lock
zulip-emoji-cache
zulip-npm-cache
zulip-py3-venv
zulip-thumbor-venv
zulip-venv-cache
zulip-yarn
I guess the caches that we keep in var are
dev-only, although I think some of what's under
`zulip-emoji-cache` is also dev-only in nature?
./var/webpack-cache
./var/mypy-cache
In `docs/subsystems/emoji.md` we say this:
```
The `build_emoji` tool generates the set of files under
`static/generated/emoji` (or really, it generates the
`/srv/zulip-emoji-cache/<sha1>/emoji` tree, and
`static/generated/emoji` is a symlink to that tree;we do this in
order to cache old versions to make provisioning and production
deployments super fast in the common case that we haven't changed the
emoji tooling). [...]
```
I don't really understand that rationale for the development
case, since `static/generated` is as much ignored by `git` as
'/srv' is, without the complications of needing `sudo` to create it.
And in production, I'm not sure how much time we're really saving,
as it takes me about 1.4s to fully rebuild the cache in dev, not to
mention we're taking on upgrade risk by sharing files between versions.
2020-04-17 14:08:55 +02:00
|
|
|
from scripts.lib.zulip_tools import generate_sha1sum_emoji, run_as_root
|
2016-10-20 20:41:39 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
TARGET_EMOJI_DUMP = os.path.join(ZULIP_PATH, "static", "generated", "emoji")
|
|
|
|
TARGET_EMOJI_STYLES = os.path.join(ZULIP_PATH, "static", "generated", "emoji-styles")
|
2016-10-20 20:41:39 +02:00
|
|
|
EMOJI_CACHE_PATH = "/srv/zulip-emoji-cache"
|
2021-02-12 08:20:45 +01:00
|
|
|
EMOJI_SCRIPT_DIR_PATH = os.path.join(ZULIP_PATH, "tools", "setup", "emoji")
|
|
|
|
NODE_MODULES_PATH = os.path.join(ZULIP_PATH, "node_modules")
|
2016-10-20 20:41:39 +02:00
|
|
|
|
2020-02-21 19:26:35 +01:00
|
|
|
|
|
|
|
# The CSS for emoji spritesheet has somewhat tricky requirements. One
|
|
|
|
# is that we want to be able to use the same emoji CSS classes for
|
|
|
|
# different display sizes of our emoji (e.g. reactions are smaller
|
|
|
|
# than inline message emoji, which are smaller than those in the emoji
|
|
|
|
# picker) while only downloading 1 copy of the spritesheet, having
|
|
|
|
# good browser rendering performance, and reusing as much common CSS
|
|
|
|
# as is possible.
|
|
|
|
|
|
|
|
# Our solution to those problem is to use the `background-size` (Which
|
|
|
|
# is e.g. 5700%) and background-position attributes to select the
|
|
|
|
# region of the spritesheet corresponding to the target sprite and
|
|
|
|
# display it properly scaled in an emoji span.
|
2017-03-20 15:09:26 +01:00
|
|
|
SPRITE_CSS_FILE_TEMPLATE = """\
|
|
|
|
div.emoji,
|
|
|
|
span.emoji
|
2020-07-10 01:57:43 +02:00
|
|
|
{{
|
2017-03-20 15:09:26 +01:00
|
|
|
display: inline-block;
|
2020-07-10 01:57:43 +02:00
|
|
|
background-image: url(~emoji-datasource-{emojiset}/img/{alt_name}/sheets-256/64.png);
|
|
|
|
background-size: {background_size};
|
2017-03-20 15:09:26 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
/* Hide the text. */
|
2020-07-10 01:57:43 +02:00
|
|
|
text-indent: 100%;
|
2017-03-20 15:09:26 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2020-07-10 01:57:43 +02:00
|
|
|
}}
|
2017-03-20 15:09:26 +01:00
|
|
|
|
2018-07-10 08:06:41 +02:00
|
|
|
.emoji-1f419
|
2020-07-10 01:57:43 +02:00
|
|
|
{{
|
2020-02-21 00:20:39 +01:00
|
|
|
background-image: url(../emoji/images-google-64/1f419.png) !important;
|
2020-07-10 01:57:43 +02:00
|
|
|
background-position: 0% 0% !important;
|
2018-07-10 08:06:41 +02:00
|
|
|
background-size: contain !important;
|
2020-07-10 01:57:43 +02:00
|
|
|
}}
|
2018-07-10 08:06:41 +02:00
|
|
|
|
2020-07-10 01:57:43 +02:00
|
|
|
{emoji_positions}
|
2017-03-20 15:09:26 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
EMOJI_POS_INFO_TEMPLATE = """\
|
2020-07-10 01:57:43 +02:00
|
|
|
.emoji-{codepoint} {{
|
|
|
|
background-position: {pos_x} {pos_y};
|
|
|
|
}}
|
2017-03-20 15:09:26 +01:00
|
|
|
"""
|
|
|
|
|
2017-05-24 19:35:00 +02:00
|
|
|
# change directory
|
2016-10-20 20:41:39 +02:00
|
|
|
os.chdir(EMOJI_SCRIPT_DIR_PATH)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-11-22 21:59:08 +01:00
|
|
|
def main() -> None:
|
provision: Let build_emoji build its own cache.
We no longer need to maintain duplicate code
related to where we set up the emoji
cache directory.
And we no longer need two extra steps for
people doing advanced (i.e. manual) setup.
There was no clear benefit to having provision
build the cache directory for `build_emoji`,
when it was easy to make `build_emoji` more
self-sufficient. The `build_emoji` tool
was already importing the library that has
`run_as_root`, and it was already responsible
for 99% of the create-directory kind of tasks.
(We always call `build_emoji` unconditionally from
`provision`, so there's no rationale in terms
of avoiding startup time or something.)
ASIDE:
Its not completely clear to me why we need
to put this directory in "/srv", instead of
somewhere more local (like we already do for
Travis), but maybe it's just to be like
its siblings in "/srv":
node_modules
yarn.lock
zulip-emoji-cache
zulip-npm-cache
zulip-py3-venv
zulip-thumbor-venv
zulip-venv-cache
zulip-yarn
I guess the caches that we keep in var are
dev-only, although I think some of what's under
`zulip-emoji-cache` is also dev-only in nature?
./var/webpack-cache
./var/mypy-cache
In `docs/subsystems/emoji.md` we say this:
```
The `build_emoji` tool generates the set of files under
`static/generated/emoji` (or really, it generates the
`/srv/zulip-emoji-cache/<sha1>/emoji` tree, and
`static/generated/emoji` is a symlink to that tree;we do this in
order to cache old versions to make provisioning and production
deployments super fast in the common case that we haven't changed the
emoji tooling). [...]
```
I don't really understand that rationale for the development
case, since `static/generated` is as much ignored by `git` as
'/srv' is, without the complications of needing `sudo` to create it.
And in production, I'm not sure how much time we're really saving,
as it takes me about 1.4s to fully rebuild the cache in dev, not to
mention we're taking on upgrade risk by sharing files between versions.
2020-04-17 14:08:55 +02:00
|
|
|
if not os.access(EMOJI_CACHE_PATH, os.W_OK):
|
|
|
|
# Note: In production, this block will fail, since we don't
|
|
|
|
# assume sudo access; but it should never run in production
|
2020-10-23 02:43:28 +02:00
|
|
|
# anyway, because EMOJI_CACHE_PATH is created by Puppet before
|
provision: Let build_emoji build its own cache.
We no longer need to maintain duplicate code
related to where we set up the emoji
cache directory.
And we no longer need two extra steps for
people doing advanced (i.e. manual) setup.
There was no clear benefit to having provision
build the cache directory for `build_emoji`,
when it was easy to make `build_emoji` more
self-sufficient. The `build_emoji` tool
was already importing the library that has
`run_as_root`, and it was already responsible
for 99% of the create-directory kind of tasks.
(We always call `build_emoji` unconditionally from
`provision`, so there's no rationale in terms
of avoiding startup time or something.)
ASIDE:
Its not completely clear to me why we need
to put this directory in "/srv", instead of
somewhere more local (like we already do for
Travis), but maybe it's just to be like
its siblings in "/srv":
node_modules
yarn.lock
zulip-emoji-cache
zulip-npm-cache
zulip-py3-venv
zulip-thumbor-venv
zulip-venv-cache
zulip-yarn
I guess the caches that we keep in var are
dev-only, although I think some of what's under
`zulip-emoji-cache` is also dev-only in nature?
./var/webpack-cache
./var/mypy-cache
In `docs/subsystems/emoji.md` we say this:
```
The `build_emoji` tool generates the set of files under
`static/generated/emoji` (or really, it generates the
`/srv/zulip-emoji-cache/<sha1>/emoji` tree, and
`static/generated/emoji` is a symlink to that tree;we do this in
order to cache old versions to make provisioning and production
deployments super fast in the common case that we haven't changed the
emoji tooling). [...]
```
I don't really understand that rationale for the development
case, since `static/generated` is as much ignored by `git` as
'/srv' is, without the complications of needing `sudo` to create it.
And in production, I'm not sure how much time we're really saving,
as it takes me about 1.4s to fully rebuild the cache in dev, not to
mention we're taking on upgrade risk by sharing files between versions.
2020-04-17 14:08:55 +02:00
|
|
|
# build_emoji would be run.
|
|
|
|
run_as_root(["mkdir", "-p", EMOJI_CACHE_PATH])
|
2020-06-10 06:41:04 +02:00
|
|
|
run_as_root(["chown", f"{os.getuid()}:{os.getgid()}", EMOJI_CACHE_PATH])
|
provision: Let build_emoji build its own cache.
We no longer need to maintain duplicate code
related to where we set up the emoji
cache directory.
And we no longer need two extra steps for
people doing advanced (i.e. manual) setup.
There was no clear benefit to having provision
build the cache directory for `build_emoji`,
when it was easy to make `build_emoji` more
self-sufficient. The `build_emoji` tool
was already importing the library that has
`run_as_root`, and it was already responsible
for 99% of the create-directory kind of tasks.
(We always call `build_emoji` unconditionally from
`provision`, so there's no rationale in terms
of avoiding startup time or something.)
ASIDE:
Its not completely clear to me why we need
to put this directory in "/srv", instead of
somewhere more local (like we already do for
Travis), but maybe it's just to be like
its siblings in "/srv":
node_modules
yarn.lock
zulip-emoji-cache
zulip-npm-cache
zulip-py3-venv
zulip-thumbor-venv
zulip-venv-cache
zulip-yarn
I guess the caches that we keep in var are
dev-only, although I think some of what's under
`zulip-emoji-cache` is also dev-only in nature?
./var/webpack-cache
./var/mypy-cache
In `docs/subsystems/emoji.md` we say this:
```
The `build_emoji` tool generates the set of files under
`static/generated/emoji` (or really, it generates the
`/srv/zulip-emoji-cache/<sha1>/emoji` tree, and
`static/generated/emoji` is a symlink to that tree;we do this in
order to cache old versions to make provisioning and production
deployments super fast in the common case that we haven't changed the
emoji tooling). [...]
```
I don't really understand that rationale for the development
case, since `static/generated` is as much ignored by `git` as
'/srv' is, without the complications of needing `sudo` to create it.
And in production, I'm not sure how much time we're really saving,
as it takes me about 1.4s to fully rebuild the cache in dev, not to
mention we're taking on upgrade risk by sharing files between versions.
2020-04-17 14:08:55 +02:00
|
|
|
|
2020-04-17 14:00:18 +02:00
|
|
|
sha1_hexdigest = generate_sha1sum_emoji(ZULIP_PATH)
|
2021-02-12 08:20:45 +01:00
|
|
|
source_emoji_dump = os.path.join(EMOJI_CACHE_PATH, sha1_hexdigest, "emoji")
|
|
|
|
success_stamp = os.path.join(source_emoji_dump, ".success-stamp")
|
2016-10-20 20:41:39 +02:00
|
|
|
|
|
|
|
if not os.path.exists(success_stamp):
|
|
|
|
print("Dumping emojis ...")
|
|
|
|
dump_emojis(source_emoji_dump)
|
2021-02-12 08:20:45 +01:00
|
|
|
with open(success_stamp, "w") as f:
|
2019-07-14 21:37:08 +02:00
|
|
|
f.close()
|
2016-10-20 20:41:39 +02:00
|
|
|
|
2020-06-09 00:25:09 +02:00
|
|
|
print(f"build_emoji: Using cached emojis from {source_emoji_dump}")
|
2018-07-18 23:50:16 +02:00
|
|
|
if os.path.lexists(TARGET_EMOJI_DUMP):
|
|
|
|
os.remove(TARGET_EMOJI_DUMP)
|
2017-09-23 15:52:56 +02:00
|
|
|
os.symlink(source_emoji_dump, TARGET_EMOJI_DUMP)
|
2016-10-20 20:41:39 +02:00
|
|
|
|
2020-02-21 00:20:39 +01:00
|
|
|
# These must not be symlinked so webpack can resolve module references.
|
|
|
|
os.makedirs(TARGET_EMOJI_STYLES, exist_ok=True)
|
|
|
|
to_remove = set(os.listdir(TARGET_EMOJI_STYLES))
|
|
|
|
for filename in os.listdir(source_emoji_dump):
|
|
|
|
if filename.endswith(".css"):
|
|
|
|
shutil.copy2(os.path.join(source_emoji_dump, filename), TARGET_EMOJI_STYLES)
|
|
|
|
to_remove.discard(filename)
|
|
|
|
for filename in to_remove:
|
|
|
|
os.remove(os.path.join(TARGET_EMOJI_STYLES, filename))
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-02-20 21:35:27 +01:00
|
|
|
def percent(f: float) -> str:
|
2021-02-12 08:20:45 +01:00
|
|
|
return f"{f * 100:0.3f}%"
|
2020-02-20 21:35:27 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-02-21 13:32:01 +01:00
|
|
|
def get_square_size(emoji_data: List[Dict[str, Any]]) -> int:
|
|
|
|
"""
|
|
|
|
Spritesheets are usually NxN squares, and we have to
|
|
|
|
infer N from the sheet_x/sheet_y values of emojis.
|
|
|
|
"""
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2020-02-21 13:32:01 +01:00
|
|
|
def get_offsets(emoji_data: List[Dict[str, Any]]) -> Iterator[int]:
|
2018-08-26 15:01:53 +02:00
|
|
|
for emoji_dict in emoji_data:
|
2021-02-12 08:20:45 +01:00
|
|
|
yield emoji_dict["sheet_x"]
|
|
|
|
yield emoji_dict["sheet_y"]
|
|
|
|
if "skin_variations" in emoji_dict:
|
|
|
|
for img_info in emoji_dict["skin_variations"].values():
|
|
|
|
yield img_info["sheet_x"]
|
|
|
|
yield img_info["sheet_y"]
|
2018-08-26 15:01:53 +02:00
|
|
|
|
2020-02-21 13:32:01 +01:00
|
|
|
n = max(get_offsets(emoji_data)) + 1
|
|
|
|
return n
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
|
|
|
def generate_sprite_css_files(
|
|
|
|
cache_path: str, emoji_data: List[Dict[str, Any]], emojiset: str, alt_name: str
|
|
|
|
) -> None:
|
2020-02-20 21:35:27 +01:00
|
|
|
"""
|
2020-02-21 13:32:01 +01:00
|
|
|
Spritesheets are usually NxN squares.
|
2020-02-20 21:35:27 +01:00
|
|
|
"""
|
2020-02-21 13:32:01 +01:00
|
|
|
n = get_square_size(emoji_data)
|
2020-02-20 21:35:27 +01:00
|
|
|
|
|
|
|
"""
|
|
|
|
Each single emoji is 64x64, with 1px gutters on every border.
|
|
|
|
We just consider the gutters to be part of the image for
|
|
|
|
simplicity reasons, so you can think of the spritesheet as
|
|
|
|
an NxN square of 66x66 pre-padded emojis. The CSS
|
|
|
|
background-size parameter below says to size the background
|
|
|
|
element as N times the size of the element that you're drawing.
|
|
|
|
|
|
|
|
Note that we use percentages here, instead of absolute
|
|
|
|
pixel values, because when we render emojis as actual elements,
|
|
|
|
their size will vary depending on which part of the UI we're
|
|
|
|
in (message emojis, emoji reactions, emoji popup, emoji
|
|
|
|
popup showcase, etc.).
|
|
|
|
|
|
|
|
(The next step is to offset the image; that will be in the
|
|
|
|
upcoming loop.)
|
|
|
|
"""
|
|
|
|
background_size = percent(n)
|
|
|
|
|
2017-09-23 14:23:06 +02:00
|
|
|
emoji_positions = ""
|
|
|
|
for emoji in emoji_data:
|
|
|
|
if emoji["has_img_google"]:
|
2018-07-13 17:47:29 +02:00
|
|
|
# Why is the test here has_img_google and not
|
|
|
|
# emoji_is_universal? Because we briefly supported all
|
|
|
|
# Google emoji (not just the universal ones), we need to
|
2020-10-13 23:50:18 +02:00
|
|
|
# ensure the spritesheet is set up to correctly display
|
2020-10-23 02:43:28 +02:00
|
|
|
# those Google emoji (in case anyone used them).
|
2020-02-20 21:35:27 +01:00
|
|
|
|
|
|
|
"""
|
|
|
|
For background-position we need to use percentages.
|
|
|
|
Absolute pixel values won't work, because the size
|
|
|
|
of the background sprite image is proportional to
|
|
|
|
the size of the element we're rendering, and we render
|
|
|
|
elements in multiple sizes.
|
|
|
|
|
|
|
|
The way that CSS background-position works is linear
|
|
|
|
interpolation. When you tell CSS background-position
|
|
|
|
is "42% 37%", then in the `x` dimension it will align
|
|
|
|
the image such that 42% of the background image is to
|
|
|
|
the left of the 42% mark in the element itself.
|
|
|
|
|
|
|
|
For simplicity assume we render the emoji as 66px
|
|
|
|
(and everything will scale appropriately for other
|
|
|
|
size images as long as we use percentages).
|
|
|
|
|
|
|
|
The image size will be 66n.
|
|
|
|
The left offset of the x-th emoji (including its
|
|
|
|
padding) will be 66x. And the element's width
|
|
|
|
will be 66.
|
|
|
|
|
|
|
|
So, solve this equation for `p`, where p is
|
|
|
|
the ratio that we'll later express as a
|
|
|
|
percentage:
|
|
|
|
|
|
|
|
<image offset> = <offset of p% mark of element>
|
|
|
|
(p * 66n) = 66x + p66
|
|
|
|
p * n = x + p
|
|
|
|
p * n - p = x
|
|
|
|
p * (n - 1) = x
|
|
|
|
p = x / (n - 1)
|
|
|
|
|
|
|
|
If you ever want to change the code so that the
|
|
|
|
gutters don't show up in the element, the algebra
|
|
|
|
will get more complicated.
|
|
|
|
"""
|
|
|
|
|
2020-07-10 01:57:43 +02:00
|
|
|
emoji_positions += EMOJI_POS_INFO_TEMPLATE.format(
|
|
|
|
codepoint=get_emoji_code(emoji),
|
|
|
|
pos_x=percent(emoji["sheet_x"] / (n - 1)),
|
|
|
|
pos_y=percent(emoji["sheet_y"] / (n - 1)),
|
|
|
|
)
|
2017-09-23 14:23:06 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
SPRITE_CSS_PATH = os.path.join(cache_path, f"{emojiset}-sprite.css")
|
|
|
|
with open(SPRITE_CSS_PATH, "w") as f:
|
2020-07-10 01:57:43 +02:00
|
|
|
f.write(
|
|
|
|
SPRITE_CSS_FILE_TEMPLATE.format(
|
|
|
|
emojiset=emojiset,
|
|
|
|
alt_name=alt_name,
|
|
|
|
emoji_positions=emoji_positions,
|
|
|
|
background_size=background_size,
|
|
|
|
),
|
|
|
|
)
|
2017-09-23 14:23:06 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2018-08-25 10:18:22 +02:00
|
|
|
def setup_emoji_farms(cache_path: str, emoji_data: List[Dict[str, Any]]) -> None:
|
2021-02-12 08:19:30 +01:00
|
|
|
def ensure_emoji_image(
|
|
|
|
emoji_dict: Dict[str, Any], src_emoji_farm: str, target_emoji_farm: str
|
|
|
|
) -> None:
|
2018-08-09 21:06:21 +02:00
|
|
|
# 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)
|
2021-02-12 08:20:45 +01:00
|
|
|
img_file_name = emoji_code + ".png"
|
|
|
|
src_file = os.path.join(src_emoji_farm, emoji_dict["image"])
|
2018-08-09 21:06:21 +02:00
|
|
|
dst_file = os.path.join(target_emoji_farm, img_file_name)
|
|
|
|
shutil.copy2(src_file, dst_file)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
def setup_emoji_farm(
|
|
|
|
emojiset: str, emoji_data: List[Dict[str, Any]], alt_name: Optional[str] = None
|
|
|
|
) -> None:
|
2018-08-25 20:47:56 +02:00
|
|
|
# `alt_name` is an optional parameter that we use to avoid duplicating below
|
|
|
|
# code. It is only used while setting up google-blob emojiset as it is just
|
|
|
|
# a wrapper for an older version of emoji-datasource package due to which we
|
|
|
|
# need to use 'google' at some places in this code. It has no meaning for other
|
|
|
|
# emojisets and is just equivalent to `emojiset`.
|
|
|
|
alt_name = alt_name or emojiset
|
|
|
|
|
2017-10-27 21:44:12 +02:00
|
|
|
# Copy individual emoji images from npm packages.
|
|
|
|
src_emoji_farm = os.path.join(
|
2021-02-12 08:20:45 +01:00
|
|
|
NODE_MODULES_PATH, "emoji-datasource-" + emojiset, "img", alt_name, "64"
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2021-02-12 08:20:45 +01:00
|
|
|
target_emoji_farm = os.path.join(cache_path, "images-" + emojiset + "-64")
|
2018-07-18 23:50:16 +02:00
|
|
|
os.makedirs(target_emoji_farm, exist_ok=True)
|
2018-08-09 21:06:21 +02:00
|
|
|
print("Copying individual image files...")
|
|
|
|
for emoji_dict in emoji_data:
|
2021-02-12 08:20:45 +01:00
|
|
|
if emoji_dict["has_img_" + alt_name]:
|
2018-08-26 14:32:58 +02:00
|
|
|
ensure_emoji_image(emoji_dict, src_emoji_farm, target_emoji_farm)
|
2021-02-12 08:20:45 +01:00
|
|
|
skin_variations = emoji_dict.get("skin_variations", {})
|
2018-08-26 17:46:45 +02:00
|
|
|
for skin_tone, img_info in skin_variations.items():
|
2021-02-12 08:20:45 +01:00
|
|
|
if img_info["has_img_" + alt_name]:
|
2018-08-26 17:46:45 +02:00
|
|
|
ensure_emoji_image(img_info, src_emoji_farm, target_emoji_farm)
|
2017-10-27 21:44:12 +02:00
|
|
|
|
|
|
|
# Copy zulip.png to the emoji farm.
|
2021-02-12 08:20:45 +01:00
|
|
|
zulip_image = os.path.join(ZULIP_PATH, "static", "assets", "zulip-emoji")
|
2018-07-18 23:50:16 +02:00
|
|
|
for f in os.listdir(zulip_image):
|
|
|
|
shutil.copy2(os.path.join(zulip_image, f), target_emoji_farm, follow_symlinks=False)
|
2017-10-27 21:44:12 +02:00
|
|
|
|
2018-08-09 21:41:56 +02:00
|
|
|
# We hardcode octopus emoji image to Google emojiset's old
|
|
|
|
# "cute octopus" image. Copy it to the emoji farms.
|
2021-02-12 08:20:45 +01:00
|
|
|
input_img_file = os.path.join(EMOJI_SCRIPT_DIR_PATH, "1f419.png")
|
|
|
|
output_img_file = os.path.join(cache_path, "images-" + emojiset + "-64", "1f419.png")
|
2018-07-18 23:50:16 +02:00
|
|
|
shutil.copyfile(input_img_file, output_img_file)
|
2018-08-09 21:41:56 +02:00
|
|
|
|
2020-02-21 00:20:39 +01:00
|
|
|
generate_sprite_css_files(cache_path, emoji_data, emojiset, alt_name)
|
2017-09-22 01:26:46 +02:00
|
|
|
|
2020-10-13 23:50:18 +02:00
|
|
|
# Set up standard emojisets.
|
2021-02-12 08:20:45 +01:00
|
|
|
for emojiset in ["google", "twitter"]:
|
2018-08-25 10:17:29 +02:00
|
|
|
setup_emoji_farm(emojiset, emoji_data)
|
|
|
|
|
2020-10-23 02:43:28 +02:00
|
|
|
# Set up old Google "blobs" emojiset.
|
2021-02-12 08:19:30 +01:00
|
|
|
GOOGLE_BLOB_EMOJI_DATA_PATH = os.path.join(
|
2021-02-12 08:20:45 +01:00
|
|
|
NODE_MODULES_PATH, "emoji-datasource-google-blob", "emoji.json"
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2020-08-07 01:09:47 +02:00
|
|
|
with open(GOOGLE_BLOB_EMOJI_DATA_PATH, "rb") as fp:
|
|
|
|
blob_emoji_data = orjson.loads(fp.read())
|
2021-02-12 08:20:45 +01:00
|
|
|
setup_emoji_farm("google-blob", blob_emoji_data, "google")
|
2018-08-25 20:47:56 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
|
|
|
def setup_old_emoji_farm(
|
|
|
|
cache_path: str, emoji_map: Dict[str, str], emoji_data: List[Dict[str, Any]]
|
|
|
|
) -> None:
|
2017-09-22 00:42:49 +02:00
|
|
|
# Code for setting up old emoji farm.
|
|
|
|
os.chdir(cache_path)
|
2021-02-12 08:20:45 +01:00
|
|
|
emoji_cache_path = os.path.join(cache_path, "images", "emoji")
|
|
|
|
unicode_emoji_cache_path = os.path.join(cache_path, "images", "emoji", "unicode")
|
|
|
|
google_emoji_cache_path = os.path.join(cache_path, "images-google-64")
|
2018-07-18 23:50:16 +02:00
|
|
|
os.makedirs(emoji_cache_path, exist_ok=True)
|
|
|
|
os.makedirs(unicode_emoji_cache_path, exist_ok=True)
|
2017-09-22 00:42:49 +02:00
|
|
|
|
|
|
|
# Symlink zulip.png image file.
|
2021-02-12 08:20:45 +01:00
|
|
|
image_file_path = os.path.join(google_emoji_cache_path, "zulip.png")
|
|
|
|
symlink_path = os.path.join(emoji_cache_path, "zulip.png")
|
2017-09-22 00:42:49 +02:00
|
|
|
os.symlink(image_file_path, symlink_path)
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
unicode_symlink_path = os.path.join(unicode_emoji_cache_path, "zulip.png")
|
2017-09-22 00:42:49 +02:00
|
|
|
os.symlink(image_file_path, unicode_symlink_path)
|
|
|
|
|
|
|
|
for name, codepoint in emoji_map.items():
|
2018-08-09 21:27:23 +02:00
|
|
|
mapped_codepoint = REMAPPED_EMOJIS.get(codepoint, codepoint)
|
2021-02-12 08:20:45 +01:00
|
|
|
image_file_path = os.path.join(google_emoji_cache_path, f"{mapped_codepoint}.png")
|
|
|
|
symlink_path = os.path.join(emoji_cache_path, f"{name}.png")
|
2017-09-22 00:42:49 +02:00
|
|
|
os.symlink(image_file_path, symlink_path)
|
|
|
|
try:
|
|
|
|
# `emoji_map` contains duplicate entries for the same codepoint with different
|
|
|
|
# names. So creation of symlink for <codepoint>.png may throw `FileExistsError`.
|
2021-02-12 08:20:45 +01:00
|
|
|
unicode_symlink_path = os.path.join(unicode_emoji_cache_path, f"{codepoint}.png")
|
2017-09-22 00:42:49 +02:00
|
|
|
os.symlink(image_file_path, unicode_symlink_path)
|
|
|
|
except FileExistsError:
|
|
|
|
pass
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-11-22 21:59:08 +01:00
|
|
|
def generate_map_files(cache_path: str, emoji_catalog: Dict[str, List[str]]) -> None:
|
2020-06-29 23:36:12 +02:00
|
|
|
# This function generates the main data file about emoji that are
|
2020-08-11 01:47:49 +02:00
|
|
|
# consumed by the webapp, mobile apps, Markdown processor, etc.
|
2017-11-08 19:40:43 +01:00
|
|
|
names = emoji_names_for_picker(EMOJI_NAME_MAPS)
|
|
|
|
codepoint_to_name = generate_codepoint_to_name_map(EMOJI_NAME_MAPS)
|
|
|
|
name_to_codepoint = generate_name_to_codepoint_map(EMOJI_NAME_MAPS)
|
2017-01-29 07:54:42 +01:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
EMOJI_CODES_FILE_PATH = os.path.join(cache_path, "emoji_codes.json")
|
|
|
|
with open(EMOJI_CODES_FILE_PATH, "wb") as emoji_codes_file:
|
2021-02-12 08:19:30 +01:00
|
|
|
emoji_codes_file.write(
|
|
|
|
orjson.dumps(
|
|
|
|
{
|
2021-02-12 08:20:45 +01:00
|
|
|
"names": names,
|
|
|
|
"name_to_codepoint": name_to_codepoint,
|
|
|
|
"codepoint_to_name": codepoint_to_name,
|
|
|
|
"emoji_catalog": emoji_catalog,
|
|
|
|
"emoticon_conversions": EMOTICON_CONVERSIONS,
|
2021-02-12 08:19:30 +01:00
|
|
|
}
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2018-07-20 11:37:39 +02:00
|
|
|
|
2017-11-22 21:59:08 +01:00
|
|
|
def dump_emojis(cache_path: str) -> None:
|
2021-02-12 08:20:45 +01:00
|
|
|
with open("emoji_map.json", "rb") as emoji_map_file:
|
2020-08-07 01:09:47 +02:00
|
|
|
emoji_map = orjson.loads(emoji_map_file.read())
|
2017-09-22 13:47:50 +02:00
|
|
|
|
2018-03-13 20:34:31 +01:00
|
|
|
# `emoji.json` or any other data file can be sourced from any of the supported
|
|
|
|
# emojiset packages, they all contain the same data files.
|
2021-02-12 08:20:45 +01:00
|
|
|
EMOJI_DATA_FILE_PATH = os.path.join(NODE_MODULES_PATH, "emoji-datasource-google", "emoji.json")
|
2020-08-07 01:09:47 +02:00
|
|
|
with open(EMOJI_DATA_FILE_PATH, "rb") as emoji_data_file:
|
|
|
|
emoji_data = orjson.loads(emoji_data_file.read())
|
2017-11-08 19:40:43 +01:00
|
|
|
emoji_catalog = generate_emoji_catalog(emoji_data, EMOJI_NAME_MAPS)
|
2017-09-22 13:47:50 +02:00
|
|
|
|
2020-10-13 23:50:18 +02:00
|
|
|
# Set up emoji farms.
|
2018-07-18 23:50:16 +02:00
|
|
|
if os.path.exists(cache_path):
|
|
|
|
shutil.rmtree(cache_path)
|
2018-08-25 10:18:22 +02:00
|
|
|
setup_emoji_farms(cache_path, emoji_data)
|
2018-04-23 07:48:19 +02:00
|
|
|
setup_old_emoji_farm(cache_path, emoji_map, emoji_data)
|
2017-09-22 13:47:50 +02:00
|
|
|
|
|
|
|
# Generate various map files.
|
2017-11-08 19:40:43 +01:00
|
|
|
generate_map_files(cache_path, emoji_catalog)
|
2017-09-22 13:47:50 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2016-10-20 20:41:39 +02:00
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|