Skip to content

Commit a44eef7

Browse files
committed
[Feature updated] Changed the extract script to put more data into the fonts_metadata.json. Makes the handling on the frontend side easier and faster
1 parent 27dc046 commit a44eef7

6 files changed

+156
-20
lines changed

extract.py extract_fonts_metadata.py

+29-10
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
print('- Start generating fonts_metadata.json')
1010

1111
# Get a list of all font families that have already been published on Google Fonts
12-
published_fonts_json = None
12+
published_font_families_json = None
1313
with open('published_fonts_metadata.json') as file:
14-
published_fonts_json = json.load(file)
14+
published_font_families_json = json.load(file)
1515

1616
font_families = []
1717

@@ -26,40 +26,59 @@
2626
text_format.Merge(protobuf, protobuf_font_family)
2727

2828
# Check if the current font family has already been published
29+
# And yes, this algorithm is not fast. Does it matter? Nope...
2930
current_published_font_family = None
30-
for published_font_family in published_fonts_json:
31+
for published_font_family in published_font_families_json:
3132
if published_font_family['family'] == protobuf_font_family.name:
3233
current_published_font_family = published_font_family
3334
break
3435

3536
# Don't include any font family that hasn't been published on Google Fonts, yet
37+
# --> Some font families are already in the Google Fonts repo but not on the site, yet.
38+
# --> Don't use them
3639
if current_published_font_family is None:
3740
continue
3841

3942
# Dict to hold all the necessary data for each font family
4043
font_family = {
4144
'name': protobuf_font_family.name,
42-
'designer': protobuf_font_family.designer,
43-
'license': protobuf_font_family.license,
44-
'category': protobuf_font_family.category,
4545
'variants': [],
46+
'defaultVariant': None,
4647
'subsets': [],
48+
'defaultSubset': 'latin',
49+
'category': protobuf_font_family.category,
50+
'designer': protobuf_font_family.designer,
51+
'license': protobuf_font_family.license,
52+
'popularity': published_font_family['popularity'],
4753
'version': published_font_family['version'],
48-
'lastModified': published_font_family['lastModified'],
49-
'popularity': published_font_family['popularity']
54+
'lastModified': published_font_family['lastModified']
5055
}
5156

57+
# Add all available variants of this font to a list
5258
for font in protobuf_font_family.fonts:
5359
variant = {
54-
'style': font.style,
55-
'weight': font.weight
60+
'weight': font.weight,
61+
'style': font.style
5662
}
5763
font_family['variants'].append(variant)
5864

65+
# Check if there is the standard variant (400, normal) available and use it as default
66+
if variant['weight'] == 400 and variant['style'] == 'normal':
67+
font_family['defaultVariant'] = variant
68+
69+
# Some fonts don't have the standard variant (400, normal). Use another one instead
70+
if font_family['defaultVariant'] == None:
71+
font_family['defaultVariant'] = font_family['variants'][0]
72+
73+
# Add all available subsets of this font to a list
5974
for subset in protobuf_font_family.subsets:
6075
if (subset not in font_family['subsets']) and (subset != 'menu'):
6176
font_family['subsets'].append(subset)
6277

78+
# If the subset "latin" is not in the "subsets" list (very rare) use another one instead
79+
if font_family['defaultSubset'] not in font_family['subsets']:
80+
font_family['defaultSubset'] = font_family['subsets'][0]
81+
6382
# Don't include fonts without language subsets (e.g. Adobe Blank)
6483
if (font_family['subsets']):
6584
font_families.append(font_family)

fonts_public.proto

+7
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ message FamilyProto {
1919
repeated string subsets = 8;
2020
optional string ttf_autohint_args = 9;
2121
repeated AxisProto axes = 10;
22+
map<string, float> api_default_overrides = 11;
23+
optional SourceProto source = 12;
2224
};
2325

2426
message FontProto {
@@ -37,3 +39,8 @@ message AxisProto {
3739
optional float default_value = 3;
3840
optional float max_value = 4;
3941
};
42+
43+
message SourceProto {
44+
optional string repository_url = 1;
45+
optional string commit = 2;
46+
}

fonts_public_pb2.py

+117-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/data/fonts_metadata.json

+1-1
Large diffs are not rendered by default.

published_fonts_metadata.json

+1-1
Large diffs are not rendered by default.

update_fonts_metadata.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ else
1515
fi
1616

1717
# Extract font metadata and generate a JSON file
18-
python3 extract.py
18+
python3 extract_fonts_metadata.py

0 commit comments

Comments
 (0)