forked from gristlabs/grist-help
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocs.py
executable file
·342 lines (282 loc) · 11.5 KB
/
docs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
#!./env/bin/python
# Python script adapted from the fastapi project to manage translations
# License: MIT
# Source: https://github.com/tiangolo/fastapi/blob/master/scripts/docs.py
# Original Author: Sebastián Ramírez and contributors
from functools import lru_cache
import json
import logging
import os
import shutil
import subprocess
from mkdocs.utils.yaml import yaml_load
from getpass import getpass
from http.server import HTTPServer, SimpleHTTPRequestHandler
from multiprocessing import Pool
from pathlib import Path
from typing import Any, Dict, List, Optional, Union
from textwrap import dedent, indent
from requests.adapters import HTTPAdapter, Retry
import mkdocs.commands.build
import mkdocs.commands.serve
import mkdocs.config
import mkdocs.utils
import typer
import yaml
logging.basicConfig(level=logging.INFO)
app = typer.Typer()
mkdocs_config_name = "mkdocs.yml"
docs_folder_name = "help"
docs_path = Path("help")
en_docs_path = Path("help/en")
alternate_langs_config_path: Path = Path("mkdocs-alternate-langs.yml")
site_path = Path("site").absolute()
build_site_path = Path("site_build").absolute()
MISSING_TRANSLATION_FILENAME = "MISSING-TRANSLATION.md"
def language_docs_dir(lang: str) -> Path:
return docs_path / lang / "docs"
def global_config_path() -> Path:
return Path(__file__).parent / mkdocs_config_name
def get_missing_translation_path(lang: str) -> Path:
return Path(docs_path) / lang / MISSING_TRANSLATION_FILENAME
def get_missing_translation_snippet() -> str:
missing_translation_file_path = get_missing_translation_path("en")
missing_translation_content = missing_translation_file_path.read_text(encoding="utf-8")
return "!!!warning\n\n" + indent(missing_translation_content, " ")
def get_mkdocs_yaml_for_lang(lang: str) -> str:
return dedent(f"""
INHERIT: ../../{mkdocs_config_name}
docs_dir: './docs'
theme:
custom_dir: ../../overrides
language: {lang}
""").lstrip()
@lru_cache
def get_alternate_langs_config() -> Dict[str, Any]:
return mkdocs.utils.yaml_load(alternate_langs_config_path.read_text(encoding="utf-8"))
def get_lang_paths() -> List[Path]:
return sorted(docs_path.iterdir())
def lang_callback(lang: Optional[str]) -> Union[str, None]:
if lang is None:
return None
lang = lang.lower()
return lang
def complete_existing_lang(incomplete: str):
lang_path: Path
for lang_path in get_lang_paths():
if lang_path.is_dir() and lang_path.name.startswith(incomplete):
yield lang_path.name
@app.command()
def new_lang(lang: str = typer.Argument(..., callback=lang_callback)):
"""
Generate a new docs translation directory for the language LANG.
"""
new_path: Path = docs_path / lang
if new_path.exists():
typer.echo(f"The language was already created: {lang}")
raise typer.Abort()
new_path.mkdir()
new_config_path: Path = Path(new_path) / mkdocs_config_name
new_config_path.write_text(get_mkdocs_yaml_for_lang(lang), encoding="utf-8")
new_config_docs_path: Path = language_docs_dir(lang)
new_config_docs_path.mkdir()
en_index_path: Path = language_docs_dir('en') / "index.md"
new_index_path: Path = new_config_docs_path / "index.md"
en_index_content = en_index_path.read_text(encoding="utf-8")
new_index_content = f"{get_missing_translation_snippet()}\n\n{en_index_content}"
new_index_path.write_text(new_index_content, encoding="utf-8")
# Copy the MISSING-TRANSLATION.md file, which can be localized later
en_missing_translation_path: Path = get_missing_translation_path("en")
new_missing_translation_path: Path = get_missing_translation_path(lang)
new_missing_translation_path.write_bytes(en_missing_translation_path.read_bytes())
# Create the images directory
images_dir = new_config_docs_path / "images"
images_dir.mkdir()
(images_dir / ".gitkeep").touch()
typer.secho(f"Successfully initialized: {new_path}", color=typer.colors.GREEN)
update_languages()
@app.command()
def build_lang(
lang: str = typer.Argument(
..., callback=lang_callback, autocompletion=complete_existing_lang
),
) -> None:
"""
Build the docs for a language.
"""
lang_path: Path = docs_path / lang
if not lang_path.is_dir():
typer.echo(f"The language translation doesn't seem to exist yet: {lang}")
raise typer.Abort()
typer.echo(f"Building docs for: {lang}")
build_site_dist_path = build_site_path / lang
if lang == "en":
dist_path = site_path
# Don't remove en dist_path as it might already contain other languages.
# When running build_all(), that function already removes site_path.
# All this is only relevant locally, on GitHub Actions all this is done through
# artifacts and multiple workflows, so it doesn't matter if directories are
# removed or not.
else:
dist_path = site_path / lang
shutil.rmtree(dist_path, ignore_errors=True)
current_dir = os.getcwd()
os.chdir(lang_path)
shutil.rmtree(build_site_dist_path, ignore_errors=True)
subprocess.run(["mkdocs", "build", "--site-dir", build_site_dist_path], check=True)
shutil.copytree(build_site_dist_path, dist_path, dirs_exist_ok=True)
os.chdir(current_dir)
typer.secho(f"Successfully built docs for: {lang}", color=typer.colors.GREEN)
@app.command()
def build_all() -> None:
"""
Build mkdocs site for en, and then build each language inside, end result is located
at directory ./site/ with each language inside.
"""
update_languages()
shutil.rmtree(site_path, ignore_errors=True)
langs = [lang.name for lang in get_lang_paths() if lang.is_dir()]
cpu_count = os.cpu_count() or 1
process_pool_size = cpu_count * 4
typer.echo(f"Using process pool size: {process_pool_size}")
with Pool(process_pool_size) as p:
p.map(build_lang, langs)
def update_translatable_nav_sections() -> None:
def extract_nav_sections_keys(nav):
"""
Extract the nav sections keys from the nav list.
"""
en_nav_sections_keys = []
for nav_item in nav:
# Nav_items dicts (objects) maybe either be pages, represented this way: {"Welcome to Grist": "index.md"}
# or sections, represented this way:
# {'How-to tutorials': [{'Create your own CRM': 'lightweight-crm.md'}, {'Analyze and visualize': 'investment-research.md'}, ...]}
if isinstance(nav_item, dict):
first_key = list(nav_item.keys())[0]
# If the value is a list, it's a section, so we recurse into it.
# Otherwise, it's a single page, so we just skip.
if isinstance(nav_item[first_key], list):
# Append the current key
en_nav_sections_keys.append(first_key)
# Use recursion to seek for other sections.
en_nav_sections_keys += extract_nav_sections_keys(nav_item[first_key])
return en_nav_sections_keys
"""
Extract the nav sections from the en docs and add these sections to the dedicated yaml file so they can be translated.
"""
global_config = yaml_load(global_config_path().read_text(encoding="utf-8"))
en_nav = global_config.get("nav", [])
en_nav_sections = extract_nav_sections_keys(en_nav)
for lang in get_alternate_langs_config()['extra']['alternate']:
localized_nav_sections_path = Path('help') / lang.get('code') / 'sections-translations.yml'
cur_localized_nav_sections = yaml_load((localized_nav_sections_path).read_text(encoding="utf-8")) if localized_nav_sections_path.exists() else {}
updated_localized_nav_sections = {}
for en_section_name in en_nav_sections:
updated_localized_nav_sections[en_section_name] = cur_localized_nav_sections.get(en_section_name) or en_section_name
localized_nav_sections_path.write_text(yaml.dump(updated_localized_nav_sections), encoding='utf-8')
@app.command()
def update_languages() -> None:
"""
Update the mkdocs.yml file Languages section including all the available languages.
"""
update_alternate_lang_config()
update_translatable_nav_sections()
@app.command()
def serve() -> None:
"""
A quick server to preview a built site with translations.
For development, prefer the command live (or just mkdocs serve).
This is here only to preview a site with translations already built.
Make sure you run the build-all command first.
"""
typer.echo("Warning: this is a very simple server.")
typer.echo("For development, use the command live instead.")
typer.echo("This is here only to preview a site with translations already built.")
typer.echo("Make sure you run the build-all command first.")
os.chdir("site")
server_address = ("", 8000)
server = HTTPServer(server_address, SimpleHTTPRequestHandler)
typer.echo("Serving at: http://127.0.0.1:8000")
server.serve_forever()
@app.command()
def live(
lang: str = typer.Argument(
None, callback=lang_callback, autocompletion=complete_existing_lang
),
) -> None:
"""
Serve with livereload a docs site for a specific language.
This only shows the actual translated files, not the placeholders created with
build-all.
Takes an optional LANG argument with the name of the language to serve, by default
en.
"""
# Enable line numbers during local development to make it easier to highlight
os.environ["LINENUMS"] = "true"
if lang is None:
lang = "en"
lang_path: Path = docs_path / lang
os.chdir(lang_path)
os.environ["DISABLE_LANGUAGE_SELECTOR"] = "true"
mkdocs.commands.serve.serve(dev_addr="127.0.0.1:8000")
def get_updated_alternate_lang_config_content() -> Dict[str, Any]:
config = get_alternate_langs_config()
languages = [{"en": "/"}]
new_alternate: List[Dict[str, str]] = []
# Language names sourced from https://quickref.me/iso-639-1
# Contributors may wish to update or change these, e.g. to fix capitalization.
language_names_path = Path(__file__).parent / docs_folder_name / "language_names.yml"
local_language_names: Dict[str, str] = mkdocs.utils.yaml_load(
language_names_path.read_text(encoding="utf-8")
)
for lang_path in get_lang_paths():
if lang_path.name == "en" or not lang_path.is_dir():
continue
code = lang_path.name
languages.append({code: f"/{code}/"})
for lang_dict in languages:
code = list(lang_dict.keys())[0]
url = lang_dict[code]
if code not in local_language_names:
print(
f"Missing language name for: {code}, "
f"update it in {docs_folder_name}/language_names.yml"
)
raise typer.Abort()
use_name = f"{code} - {local_language_names[code]}"
new_alternate.append({"link": url, "name": use_name, "code": code})
config["extra"]["alternate"] = new_alternate
return config
def update_alternate_lang_config() -> None:
config = get_updated_alternate_lang_config_content()
alternate_langs_config_path.write_text(
"# WARNING: this file is auto-generated by ./docs.py\n" +
yaml.dump(config, sort_keys=False, width=200, allow_unicode=True),
encoding="utf-8",
)
@app.command()
def verify_config() -> None:
"""
Verify main mkdocs.yml content to make sure it uses the latest language names.
"""
typer.echo("Verifying mkdocs-alternate-lang.yml")
config = get_alternate_langs_config()
updated_config = get_updated_alternate_lang_config_content()
if config != updated_config:
typer.secho(
f"./mkdocs-alternate-lang.yml outdated from {docs_folder_name}/language_names.yml, "
"update language_names.yml and run "
"python ./docs.py update-languages",
color=typer.colors.RED,
)
raise typer.Abort()
typer.echo("Valid mkdocs-alternate-lang.yml ✅")
@app.command()
def langs_json():
langs = []
for lang_path in get_lang_paths():
if lang_path.is_dir():
langs.append(lang_path.name)
print(json.dumps(langs))
if __name__ == "__main__":
app()