-
Notifications
You must be signed in to change notification settings - Fork 2
/
tasks.py
374 lines (309 loc) · 12.4 KB
/
tasks.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
import datetime
import os
import shutil
import subprocess
import tomli
from colorama import Fore, init
from invoke import task
def get_docker_compose_command():
"""
`docker-compose` is the preferred command,
but if it's not available, we fall back to `docker compose`
"""
if shutil.which("docker-compose"):
return "docker-compose"
elif shutil.which("docker"):
return "docker compose"
else:
raise subprocess.CalledProcessError(
returncode=1,
cmd=None,
output=b"",
stderr=b"Neither 'docker-compose' nor 'docker' executable found in the system path",
)
@task
def db_snapshot(c, filename_prefix):
"""Create a Database snapshot using DSLR"""
timestamp = datetime.datetime.now().strftime("%Y%m%d_%H%M%S")
c.run(
"dslr snapshot {filename_prefix}_{timestamp}".format(
filename_prefix=filename_prefix,
timestamp=timestamp,
),
pty=True,
),
@task(help={"build": "Build images before starting containers."})
def up(c, build=False):
"""docker-compose up -d"""
docker_compose = get_docker_compose_command()
if build:
c.run(
f"{docker_compose} -f docker-compose.yml up -d --build",
pty=True,
)
else:
c.run(f"{docker_compose} -f docker-compose.yml up -d", pty=True)
@task
def exec(c, container, command):
"""docker-compose exec [container] [command(s)]"""
docker_compose = get_docker_compose_command()
c.run(f"{docker_compose} exec {container} {command}", pty=True)
@task(help={"follow": "Follow log output"})
def logs(c, container, follow=False):
"""docker-compose logs [container] [-f]"""
docker_compose = get_docker_compose_command()
if follow:
c.run(f"{docker_compose} logs {container} -f", pty=True)
else:
c.run(f"{docker_compose} logs {container}", pty=True)
@task
def stop(c):
"""docker-compose stop"""
docker_compose = get_docker_compose_command()
c.run(f"{docker_compose} stop", pty=True)
@task(
help={
"volumes": "Remove named volumes declared in the `volumes` section of the Compose file and anonymous volumes attached to containers."
}
)
def down(c, volumes=False):
"""docker-compose down"""
docker_compose = get_docker_compose_command()
if volumes:
c.run(f"{docker_compose} down -v", pty=True)
else:
c.run(f"{docker_compose} down", pty=True)
@task(help={"dump_file": "The name of the dump file to import"})
def import_db_dump(c, dump_file):
"""
Import a database dump into the database container
1. Copy the dump file into the db container
2. drop existing database
3. create new database
4. import dump file into database
5. clean up
"""
# Extract filename from the dump_file path
dump_filename = os.path.basename(dump_file)
# copy dump file into db container
c.run(f"docker cp {dump_file} zednews-db-1:/tmp/{dump_filename}", pty=True)
# drop existing database
c.run(
'inv exec db "dropdb --if-exists --host db --username=zednews_dev_user zednews_dev_db"',
pty=True,
)
# create new database
c.run(
'inv exec db "createdb --host db --username=zednews_dev_user zednews_dev_db"',
pty=True,
)
# import dump file into database
c.run(
f'inv exec db "pg_restore --clean --no-acl --if-exists --no-owner --host db --username=zednews_dev_user -d zednews_dev_db /tmp/{dump_filename}"',
pty=True,
)
# clean up
c.run(f'inv exec db "rm -vf /tmp/{dump_filename}"', pty=True)
@task
def init_db(c):
"""use aerich to generate schema and generate app migrate location"""
c.run("aerich init-db", pty=True)
@task
def migrate(c):
"""use aerich to update models and generate migrate changes file
This is like django's makemigrations command
"""
c.run("aerich migrate", pty=True)
@task
def upgrade(c):
"""use aerich to upgrade db to latest version
This is like django's migrate command
"""
c.run("aerich upgrade", pty=True)
def get_first_commit():
try:
output = subprocess.check_output(
["git", "log", "--reverse", "--format=%H", "--max-parents=0"], universal_newlines=True
)
return output.strip()
except subprocess.CalledProcessError:
return None
def execute_bump_hack(c, branch, is_first_release=False, major=False):
"""A little hack that combines commitizen-tools and standard-version
commitizen-tools works best with Python projects, but I don't like the
generated changelogs. I had no time to look at how to customize them, so I
decided to use standard-version (which works best with Node.js projects).
Unfortunately, standard-version by default doesn't work with Python projects,
and since I didn't have time to write my own updater for python files and toml files,
I have to make the two work together!
This requires standard-version to be installed in your project:
``npm i -D standard-version``
If you're setting it up for the first time on another project, you will probably
encounter problems generating the entire changelog. See how Łukasz Nojek came up
with a hack to deal with this:
https://lukasznojek.com/blog/2020/03/how-to-regenerate-changelog-using-standard-version/
The formula (workflow) for is as follows:
1. cz bump --files-only
2. git add pyproject.toml and other_files specified in pyproject.toml
3. standard-version --commit-all --release-as <result from cz if not none>
4. git push --follow-tags origin [branch]
"""
if is_first_release:
first_commit = get_first_commit()
if first_commit:
c.run(f"git checkout {first_commit}", pty=True)
c.run('GIT_COMMITTER_DATE="$(git show --format=%aD | head -1)"', pty=True)
c.run('git tag -a v0.0.0 -m "v0.0.0 - this is where it all starts"', pty=True)
c.run("unset GIT_COMMITTER_DATE", pty=True)
c.run(f"git checkout {branch}", pty=True)
with open("pyproject.toml", "rb") as f:
toml_dict = tomli.load(f)
project = toml_dict["project"]["name"]
release_type = "major" if major else "minor"
c.run(
f"cz bump --files-only --increment {release_type.upper()}",
pty=True,
)
version_files = toml_dict["tool"]["commitizen"]["version_files"]
files_to_add = " ".join(version_files)
c.run(
f"git add pyproject.toml {files_to_add}",
pty=True,
)
c.run(
f'npm run release -- --commit-all --release-as {release_type} --releaseCommitMessageFormat "chore: This is {project} v{{{{currentTag}}}} 🎉"',
pty=True,
)
# push to origin
c.run(f"git push --follow-tags origin {branch}", pty=True)
else:
print("No commit found or Git repository not initialized.")
else:
print(f"{Fore.MAGENTA}Attempting to bump using commitizen-tools ...{Fore.RESET}")
c.run("cz bump --files-only > .bump_result.txt", pty=True)
str_of_interest = "increment detected: "
result = ""
with open(".bump_result.txt", "r") as br:
for line in br:
if str_of_interest in line:
result = line
break
release_type = result.replace(str_of_interest, "").strip("\n").lower()
print(f"cz bump result: {release_type}")
if release_type == "none":
print(f"{Fore.YELLOW}No increment detected, cannot bump{Fore.RESET}")
elif release_type in ["major", "minor", "patch"]:
print(f"{Fore.GREEN}Looks like the bump command worked!{Fore.RESET}")
print(f"{Fore.GREEN}Now handing over to standard-version ...{Fore.RESET}")
# first, stage the bumped files
with open("pyproject.toml", "rb") as f:
toml_dict = tomli.load(f)
version_files = toml_dict["tool"]["commitizen"]["version_files"]
files_to_add = " ".join(version_files)
c.run(
f"git add pyproject.toml {files_to_add}",
pty=True,
)
# now we can pass result to standard-release
print(f"{Fore.GREEN}let me retrieve the tag we're bumping from ...{Fore.RESET}")
get_current_tag = c.run(
"git describe --abbrev=0 --tags `git rev-list --tags --skip=0 --max-count=1`",
pty=True,
)
previous_tag = get_current_tag.stdout.rstrip()
c.run(
f'npm run release -- --commit-all --release-as {release_type} --releaseCommitMessageFormat "bump: ✈️ {previous_tag} → v{{{{currentTag}}}}"',
pty=True,
)
# push to origin
c.run(f"git push --follow-tags origin {branch}", pty=True)
else:
print(f"{Fore.RED}Something went horribly wrong, please investigate & fix it!{Fore.RESET}")
print(f"{Fore.RED}Bump failed!{Fore.RESET}")
# clean up
c.run("rm -vf .bump_result.txt", pty=True)
@task(help={"fix": "let black and ruff format your files"})
def lint(c, fix=False):
"""ruff and black"""
if fix:
c.run("black .", pty=True)
c.run("ruff check --fix .", pty=True)
else:
c.run("black . --check", pty=True)
c.run("ruff check .", pty=True)
# TODO: create a "clean" collection comprising the next two tasks below
@task
def clean_pyc(c):
"""remove Python file artifacts"""
c.run("find . -name '*.pyc' -exec rm -f {} +", pty=True)
c.run("find . -name '*.pyo' -exec rm -f {} +", pty=True)
c.run("find . -name '__pycache__' -exec rm -fr {} +", pty=True)
c.run("find . -name '.ruff_cache' -exec rm -fr {} +", pty=True)
c.run('find . -type d -name "*.egg-info" -exec rm -fr {} +', pty=True)
@task
def clean_test(c):
"""remove test and coverage artifacts"""
c.run("rm -fr .tox/", pty=True)
c.run("rm -f .coverage", pty=True)
c.run("rm -f coverage.*", pty=True)
c.run("rm -fr htmlcov/", pty=True)
c.run("rm -fr .pytest_cache", pty=True)
@task(
help={
"branch": "The branch against which you wanna bump",
"first": "Is this the first release?",
"major": "Is this a major release?",
}
)
def bump(c, branch, first=False, major=False):
"""Use Commitizen Tools & standard-version to bump version and generate changelog
Run this task when you want to prepare a release.
First we check that there are no unstaged files before running
"""
init()
unstaged_str = "not staged for commit"
uncommitted_str = "to be committed"
check = c.run("git status", pty=True)
if unstaged_str not in check.stdout or uncommitted_str not in check.stdout:
execute_bump_hack(c, branch, first, major)
else:
print(f"{Fore.RED}Sorry mate, please ensure there are no unstaged files before creating a release{Fore.RESET}")
@task
def get_release_notes(c):
"""extract content from CHANGELOG.md for use in Github Releases
we read the file and loop through line by line
we wanna extract content beginning from the first Heading 2 text
to the last line before the next Heading 2 text
"""
pattern_to_match = "## [v"
count = 0
lines = []
heading_text = "## What's changed in this release\n"
lines.append(heading_text)
with open("CHANGELOG.md", "r") as c:
for line in c:
if pattern_to_match in line and count == 0:
count += 1
elif pattern_to_match not in line and count == 1:
lines.append(line)
elif pattern_to_match in line and count == 1:
break
# home = str(Path.home())
# release_notes = os.path.join(home, "LATEST_RELEASE_NOTES.md")
release_notes = os.path.join("../", "LATEST_RELEASE_NOTES.md")
with open(release_notes, "w") as f:
print("".join(lines), file=f, end="")
@task
def toolchain(c):
"""The toolchain for creating the podcast"""
c.run("python app/core/run.py", pty=True)
@task
def test(c):
"""Run tests"""
c.run("coverage run -m unittest discover app/tests", pty=True)
c.run("coverage json", pty=True)
c.run("coverage report -m", pty=True)
@task
def facebook_post(c):
"""Post to Facebook"""
c.run("python -m app.core.social.post share facebook", pty=True)