forked from hedyorg/hedy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dodo.py
400 lines (327 loc) · 12 KB
/
dodo.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
##
# This file contains various build steps used to make sure the data the Hedy application
# uses is up-to-date.
#
# Functions that start with the name `task_` create a "task", which runs one or more
# "actions" (shell commands or Python functions). Tasks can have file dependencies and
# file outputs, as well as other task dependencies. If none of the files that a task
# depends on have changed since the last time it ran, the task will be skipped. That's
# good for speed!
#
# Keep the following in mind:
# - You can specify commands as a string `'mkdir dir'` or as an array `['mkdir', 'dir']`.
# The second case doesn't allow shell features, but is safer in case of variables.
# - `file_dep` requires a list of source files, but you can use `glob('*.yaml')`
# to have Python list them. That way you don't have to keep the list of files up-to-date
# by hand.
# - It's important to be complete in the list of inputs that go into a build step. You
# have to list all input files, or the step will not accurately re-run when you change
# one of the forgotten dependencies.
# - For eexample: include the script itself in the list of `file_dep`s as well;
# otherwise, even if you change the script the task won't re-run.
import os
from os import path
from glob import glob
import sys
from doit.tools import LongRunning
# The current Python interpreter, use to run other Python scripts as well
python3 = sys.executable
# When run without arguments, run deploy
DOIT_CONFIG = {'default_tasks': ['deploy']}
def task_npm():
"""Install NPM dependencies.
If the `package-lock.json` file changes, we will automatically re-install
NPM dependencies.
This makes sure everyone's NPM dependencies are at the same version when
scripts are being run, so build results are consistent and (for example)
generated Tailwind CSS files are the exact same and don't introduce random
floating diffs.
NPM works like this:
```
package.json # contains version RANGES that you would like to use
---> npm install # install the most recent POINT VERSIONs that match the requested ranges
package-lock.json # contains the point versions selected by the last `npm install`
---> npm ci # install exactly the point versions found in the lock file
```
"""
# This task gives problems whhen deploying to Heroku, so not execute it if we are there
if is_running_on_heroku():
return dict(title=lambda _: 'Do not install NPM on Heroku', actions=[])
return dict(
# `package-lock.json` contains the actual dependency versions that `npm ci` will install
file_dep=['package-lock.json'],
title=lambda _: 'Install NPM dependencies',
actions=[
'npm ci',
],
)
def task_tailwind():
"""Build Tailwind.
We will automatically switch between DEV and PROD mode depending
on where we run.
"""
prod = os.getenv('DYNO') is not None
if prod:
script = 'build-tools/heroku/tailwind/generate-prod-css'
target = 'static/css/generated.css'
else:
script = 'build-tools/heroku/tailwind/generate-development-css'
target = 'static/css/generated.full.css'
return dict(
file_dep=[
*glob('templates/**/*.html'),
*glob('main/**/*.md'),
*glob('content/**/*.md'),
# exclude files generated for translations
*[file for file in glob('static/js/*.ts') if file not in \
['static/js/message-translations.ts', 'static/js/client-messages.ts']
],
'build-tools/heroku/tailwind/styles.css',
script,
],
task_dep=['npm'],
title=lambda _: 'Generate Tailwind CSS',
actions=[
[script],
],
targets=[target],
verbosity=0, # stderr is too noisy by default
)
def task_generate_highlighting():
"""Generate JSON files that will be used for syntax highlighting."""
script = 'highlighting/generate-rules-highlighting.py'
return dict(
title=lambda _: 'Generate highlighting rules',
file_dep=[
*glob('highlighting/*.py'),
script,
],
actions=[
[python3, script],
],
targets=['highlighting/highlighting.json', 'highlighting/highlighting-trad.json'],
)
def task_compile_babel():
"""Compile .po files for use with Babel."""
return dict(
title=lambda _: 'Compile Babel files',
file_dep=pofiles,
actions=[
'pybabel compile -f -d translations',
],
# Every .po file leads to a .mo file
targets=mofiles,
verbosity=0, # stderr is too noisy by default
)
def task_generate_static_babel_content():
"""Extract information from Babel at build time.
We do this so we don't have to keep Babel's locale database in memory at
runtime.
"""
script = 'build-tools/heroku/generate-static-babel-content'
return dict(
title=lambda _: 'Generate static Babel content',
file_dep=[script],
actions=[
[python3, script],
],
targets=['static_babel_content.json'],
uptodate=[babel_version_unchanged],
)
def task_client_messages():
"""Use Python to extract messages to a .ts file that will be used in the frontend."""
script = 'build-tools/heroku/generate-client-messages.py'
return dict(
title=lambda _: 'Generate client messages',
# Depends on a specific YAML file and the .mo files
file_dep=[
*glob('content/client-messages/*.yaml'),
*mofiles,
script,
],
actions=[
[python3, script],
],
targets=[
'static/js/message-translations.ts',
],
)
def task_typescript():
"""Compile typescript."""
return dict(
file_dep=[
*glob('static/js/**/*.ts', recursive=True),
# Some non-.ts files that we also own
'static/js/buttons.js',
'static/js/skulpt_debugger.js',
],
task_dep=['generate_highlighting', 'client_messages', 'npm'],
title=lambda _: 'Compile TypeScript',
actions=[
# Use tsc to do type checking of the .ts files, but don't actually emit.
# We will bundle using `esbuild`, which will properly handle including the `tw-elements`
# library (which is ESM-only) from otherwise CommonJS packages.
['npx', 'tsc', '--noEmit'],
# Then bundle JavaScript into a single bundle
['npx', 'esbuild', 'static/js/index.ts',
'--bundle', '--sourcemap', '--target=es2017',
'--global-name=hedyApp', '--platform=browser',
'--outfile=static/js/appbundle.js'],
],
targets=['static/js/appbundle.js'],
verbosity=0, # stderr is too noisy by default
)
def task_lark():
"""Generate Lark grammar files based on keyword information in YAMLs."""
script = 'content/yaml_to_lark_utils.py'
keyword_yamls = glob('content/keywords/*.yaml')
grammars = ['grammars/keywords-' + replace_ext(path.basename(y), '.lark') for y in keyword_yamls]
return dict(
title=lambda _: 'Create Lark grammar files',
file_dep=[
script,
'grammars/keywords-template.lark',
*keyword_yamls,
],
actions=[
[python3, script],
],
targets=grammars,
)
def task_prefixes():
"""Generate Python prefixes for TypeScript"""
script = 'build-tools/heroku/generate-prefixes-ts'
return dict(
title=lambda _: 'Generate Python prefixes for TypeScript',
file_dep=[
script,
*glob('prefixes/*.py'),
],
actions=[
[script],
],
targets=[
'static/js/pythonPrefixes.ts'
],
)
def task_lezer_parsers():
"""Generate Lezer parsers."""
script = 'build-tools/heroku/generate-lezer-parsers'
grammars = glob('highlighting/lezer-grammars/level*.grammar')
lezer_files = []
for grammar in grammars:
base = replace_ext(path.basename(grammar), '')
lezer_files.append(f'static/js/lezer-parsers/{base}-parser.ts')
lezer_files.append(f'static/js/lezer-parsers/{base}-parser.terms.ts')
return dict(
title=lambda _: 'Generate Lezer parsers',
file_dep=[
*grammars,
script,
],
task_dep=['npm'],
actions=[
[script],
],
targets=lezer_files,
)
def task_extract():
"""Extract new translateable keys from the code."""
return dict(
title=lambda _: 'Extract new keys from the code',
actions=[
'pybabel extract -F babel.cfg -o messages.pot . --no-location --sort-output',
'pybabel update -i messages.pot -d translations -N --no-wrap',
],
)
def task_devserver():
"""Run a copy of the development server.
This server is configured to be useful for running cypress tests against.
No file dependencies, so this task is never skipped.
Be careful to only depend on `backend` tasks, not `frontend` tasks, so that
the people running this command still don't need to have Node installed
if they don't want to work on the frontend.
"""
return dict(
title=lambda _: 'Run development server',
task_dep=['backend'],
actions=[
LongRunning([python3, 'app.py'], shell=False, env=dict(
os.environ,
# These are required to make some local features work.
BASE_URL="http://localhost:8080/",
ADMIN_USER="admin"))
],
verbosity=2, # show everything live
)
######################################################################################
# Some useful task groups
#
def task_backend():
"""Run all tasks necessary to prepare the backend."""
return dict(
actions=None,
task_dep=[
'compile_babel',
'generate_static_babel_content',
'lark',
],
)
def task_frontend():
"""Run all tasks necessary to prepare the frontend."""
return dict(
actions=None,
task_dep=[
'lezer_parsers',
'tailwind',
'typescript',
]
)
def task_deploy():
"""Commands to run at deploy time on Heroku.
This groups other commands.
"""
return dict(
actions=None,
task_dep=['frontend', 'backend']
)
def task_devdb():
"""Reset the testing database."""
return dict(
title=lambda _: 'Reset testing database (restart app.py to take effect)',
actions=[
'cp data-for-testing.json dev_database.json',
],
file_dep=['data-for-testing.json'],
targets=['dev_database.json'],
)
######################################################################################
# Below this line are helpers for the task definitions
#
def replace_ext(filename, ext):
"""Replace the extension of a filename."""
return path.splitext(filename)[0] + ext
def babel_version_unchanged(task, values):
"""Return True if the Babel version is the same as the last time we ran."""
babel_version = 0
try:
import babel
babel_version = babel.__version__
except Exception:
# This might fail, that's annoying but shouldn't stop the presses.
print('oops')
pass
def save_on_success():
"""This function gets called at the end of a successful build."""
return {'babel-version': babel_version}
task.value_savers.append(save_on_success)
return values.get('babel-version') == babel_version
def is_running_on_heroku():
"""Return True if we are running on Heroku.
Check an environment variable that Heroku sets by default.
"""
return 'DYNO' in os.environ
# These are used in more than one task. Find all .po files, and calculate the
# .mo files that would be generated from them.
pofiles = glob('translations/*/*/*.po')
mofiles = [replace_ext(f, '.mo') for f in pofiles]