-
Notifications
You must be signed in to change notification settings - Fork 826
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace current font download with Python script (#5052)
* recommend python script * Python script to replace current downloads * clarify messages / comments * remove constants not useful for current repo * include Docker startup update
- Loading branch information
Showing
4 changed files
with
190 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,187 @@ | ||
#!/usr/bin/env python3 | ||
# This script downloads several Noto fonts from https://github.com/notofonts/noto-fonts | ||
# That repo was archived in 2023 and is no longer updated. | ||
# Additional fonts can be found on https://notofonts.github.io | ||
|
||
import os | ||
import requests | ||
import tempfile | ||
import shutil | ||
import warnings | ||
import zipfile | ||
|
||
FONTDIR = os.environ.get("FONTDIR", "./fonts") | ||
|
||
try: | ||
os.mkdir(FONTDIR) | ||
except FileExistsError: | ||
warnings.warn("Font directory already exists") | ||
|
||
# Fonts to download in regular, bold, and italic | ||
REGULAR_BOLD_ITALIC = ["NotoSans"] | ||
|
||
# Fonts to download in regular and bold | ||
REGULAR_BOLD = [ | ||
"NotoSansAdlamUnjoined", | ||
"NotoSansArabicUI", | ||
"NotoSansArmenian", | ||
"NotoSansBalinese", | ||
"NotoSansBamum", | ||
"NotoSansBengaliUI", | ||
"NotoSansCanadianAboriginal", | ||
"NotoSansCham", | ||
"NotoSansCherokee", | ||
"NotoSansDevanagariUI", | ||
"NotoSansEthiopic", | ||
"NotoSansGeorgian", | ||
"NotoSansGujaratiUI", | ||
"NotoSansGurmukhiUI", | ||
"NotoSansHebrew", | ||
"NotoSansJavanese", | ||
"NotoSansKannadaUI", | ||
"NotoSansKayahLi", | ||
"NotoSansKhmerUI", | ||
"NotoSansLaoUI", | ||
"NotoSansLisu", | ||
"NotoSansMalayalamUI", | ||
"NotoSansMyanmarUI", | ||
"NotoSansOlChiki", | ||
"NotoSansOriyaUI", | ||
"NotoSansSinhalaUI", | ||
"NotoSansSundanese", | ||
"NotoSansSymbols", | ||
"NotoSansTaiTham", | ||
"NotoSansTamilUI", | ||
"NotoSansTeluguUI", | ||
"NotoSansThaana", | ||
"NotoSansThaiUI", | ||
"NotoSerifTibetan", | ||
] | ||
|
||
# Fonts to download regular and black, but no bold | ||
REGULAR_BLACK = ["NotoSansSyriac"] | ||
|
||
# Fonts to download only regular | ||
REGULAR = [ | ||
"NotoSansBatak", | ||
"NotoSansBuginese", | ||
"NotoSansBuhid", | ||
"NotoSansChakma", | ||
"NotoSansCoptic", | ||
"NotoSansHanunoo", | ||
"NotoSansLepcha", | ||
"NotoSansLimbu", | ||
"NotoSansMandaic", | ||
"NotoSansMongolian", | ||
"NotoSansNewTaiLue", | ||
"NotoSansNKo", | ||
"NotoSansOsage", | ||
"NotoSansOsmanya", | ||
"NotoSansSamaritan", | ||
"NotoSansSaurashtra", | ||
"NotoSansShavian", | ||
"NotoSansSymbols2", | ||
"NotoSansTagalog", | ||
"NotoSansTagbanwa", | ||
"NotoSansTaiLe", | ||
"NotoSansTaiViet", | ||
"NotoSansTifinagh", | ||
"NotoSansVai", | ||
"NotoSansYi", | ||
] | ||
|
||
|
||
# Attempt to download the font from repos in this order | ||
def findFontUrls(fontName, modifier): | ||
return [ | ||
f"https://github.com/notofonts/noto-fonts/raw/main/hinted/ttf/{fontName}/{fontName}-{modifier}.ttf", | ||
# currently only sourcing from one repo | ||
] | ||
|
||
|
||
def downloadToFile(urls, destination, dir=FONTDIR): | ||
headers = {"User-Agent": "get-fonts.py/osm-carto"} | ||
|
||
try: | ||
r = requests.get(urls[0], headers=headers) | ||
if r.status_code != 200: | ||
if len(urls) > 1: | ||
warnings.warn(f"Failed to download {urls[0]}, retrying with next font source") | ||
downloadToFile(urls[1:], destination, dir=dir) | ||
else: | ||
raise Exception | ||
with open(os.path.join(dir, destination), "wb") as f: | ||
f.write(r.content) | ||
except: | ||
raise Exception(f"Failed to download {urls}") | ||
|
||
|
||
for font in REGULAR_BOLD + REGULAR_BOLD_ITALIC + REGULAR_BLACK + REGULAR: | ||
regularFontUrls = findFontUrls(font, "Regular") | ||
downloadToFile(regularFontUrls, f"{font}-Regular.ttf") | ||
|
||
if (font in REGULAR_BOLD) or (font in REGULAR_BOLD_ITALIC): | ||
boldFontUrls = findFontUrls(font, "Bold") | ||
downloadToFile(boldFontUrls, f"{font}-Bold.ttf") | ||
|
||
if font in REGULAR_BOLD_ITALIC: | ||
italicFontUrls = findFontUrls(font, "Italic") | ||
downloadToFile(italicFontUrls, f"{font}-Italic.ttf") | ||
|
||
if font in REGULAR_BLACK: | ||
blackFontUrls = findFontUrls(font, "Black") | ||
downloadToFile(blackFontUrls, f"{font}-Black.ttf") | ||
|
||
# Other noto fonts which don't follow the URL pattern above | ||
|
||
# CJK fonts | ||
downloadToFile( | ||
[ | ||
"https://github.com/notofonts/noto-cjk/raw/main/Sans/OTF/Japanese/NotoSansCJKjp-Regular.otf" | ||
], | ||
"NotoSansCJKjp-Regular.otf", | ||
) | ||
downloadToFile( | ||
[ | ||
"https://github.com/notofonts/noto-cjk/raw/main/Sans/OTF/Japanese/NotoSansCJKjp-Bold.otf" | ||
], | ||
"NotoSansCJKjp-Bold.otf", | ||
) | ||
|
||
# Fonts in zipfiles need a temporary directory | ||
TMPDIR = tempfile.mkdtemp(prefix="get-fonts.") | ||
|
||
# Noto Emoji B&W isn't available as a separate download, so we need to download the package and unzip it | ||
downloadToFile( | ||
["https://archive.org/download/noto-emoji/Noto_Emoji.zip"], | ||
"Noto_Emoji.zip", | ||
dir=TMPDIR, | ||
) | ||
emojiPath = os.path.join(TMPDIR, "Noto_Emoji.zip") | ||
emojiExtract = ["NotoEmoji-Regular.ttf", "NotoEmoji-Bold.ttf"] | ||
with zipfile.ZipFile(emojiPath, "r") as zip_ref: | ||
for file in emojiExtract: | ||
source = zip_ref.getinfo(f"static/{file}") | ||
zip_ref.extract(source, FONTDIR) | ||
# move from FONTDIR/static/x to overwrite FONTDIR/x | ||
unzipSrc = os.path.join(FONTDIR, file) | ||
if os.path.exists(unzipSrc): | ||
os.remove(unzipSrc) | ||
shutil.move(os.path.join(FONTDIR, "static", file), FONTDIR) | ||
|
||
downloadToFile( | ||
["https://mirrors.dotsrc.org/osdn/hanazono-font/68253/hanazono-20170904.zip"], | ||
"hanazono.zip", | ||
dir=TMPDIR, | ||
) | ||
hanazonoPath = os.path.join(TMPDIR, "hanazono.zip") | ||
with zipfile.ZipFile(hanazonoPath, "r") as zip_ref: | ||
for file in ["HanaMinA.ttf", "HanaMinB.ttf"]: | ||
source = zip_ref.getinfo(file) | ||
zip_ref.extract(source, FONTDIR) | ||
|
||
# clean up tmp directories | ||
shutil.rmtree(TMPDIR) | ||
fontdir_static = os.path.join(FONTDIR, "static") | ||
if os.path.exists(fontdir_static): | ||
shutil.rmtree(fontdir_static) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/bin/sh | ||
# NOTE: deprecated; get-fonts.py recommended for future changes | ||
set -e | ||
|
||
FONTDIR="./fonts" | ||
|