|
9 | 9 | print('- Start generating fonts_metadata.json')
|
10 | 10 |
|
11 | 11 | # 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 |
13 | 13 | with open('published_fonts_metadata.json') as file:
|
14 |
| - published_fonts_json = json.load(file) |
| 14 | + published_font_families_json = json.load(file) |
15 | 15 |
|
16 | 16 | font_families = []
|
17 | 17 |
|
|
26 | 26 | text_format.Merge(protobuf, protobuf_font_family)
|
27 | 27 |
|
28 | 28 | # Check if the current font family has already been published
|
| 29 | + # And yes, this algorithm is not fast. Does it matter? Nope... |
29 | 30 | current_published_font_family = None
|
30 |
| - for published_font_family in published_fonts_json: |
| 31 | + for published_font_family in published_font_families_json: |
31 | 32 | if published_font_family['family'] == protobuf_font_family.name:
|
32 | 33 | current_published_font_family = published_font_family
|
33 | 34 | break
|
34 | 35 |
|
35 | 36 | # 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 |
36 | 39 | if current_published_font_family is None:
|
37 | 40 | continue
|
38 | 41 |
|
39 | 42 | # Dict to hold all the necessary data for each font family
|
40 | 43 | font_family = {
|
41 | 44 | 'name': protobuf_font_family.name,
|
42 |
| - 'designer': protobuf_font_family.designer, |
43 |
| - 'license': protobuf_font_family.license, |
44 |
| - 'category': protobuf_font_family.category, |
45 | 45 | 'variants': [],
|
| 46 | + 'defaultVariant': None, |
46 | 47 | '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'], |
47 | 53 | 'version': published_font_family['version'],
|
48 |
| - 'lastModified': published_font_family['lastModified'], |
49 |
| - 'popularity': published_font_family['popularity'] |
| 54 | + 'lastModified': published_font_family['lastModified'] |
50 | 55 | }
|
51 | 56 |
|
| 57 | + # Add all available variants of this font to a list |
52 | 58 | for font in protobuf_font_family.fonts:
|
53 | 59 | variant = {
|
54 |
| - 'style': font.style, |
55 |
| - 'weight': font.weight |
| 60 | + 'weight': font.weight, |
| 61 | + 'style': font.style |
56 | 62 | }
|
57 | 63 | font_family['variants'].append(variant)
|
58 | 64 |
|
| 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 |
59 | 74 | for subset in protobuf_font_family.subsets:
|
60 | 75 | if (subset not in font_family['subsets']) and (subset != 'menu'):
|
61 | 76 | font_family['subsets'].append(subset)
|
62 | 77 |
|
| 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 | + |
63 | 82 | # Don't include fonts without language subsets (e.g. Adobe Blank)
|
64 | 83 | if (font_family['subsets']):
|
65 | 84 | font_families.append(font_family)
|
|
0 commit comments