-
-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathbuild.py
More file actions
47 lines (39 loc) · 1.48 KB
/
build.py
File metadata and controls
47 lines (39 loc) · 1.48 KB
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
# This python script will take care of anything
# required during building the images. It is
# used by Makefile.
import random
import re
import sys
def update_env_file(key, value):
# Update the generated secret key
# in the .env file.
with open(".env", "r") as file_handle:
file_string = file_handle.read()
file_string = re.sub(rf"{key}=.*", rf"{key}={value}", file_string)
if file_string[-1] != "\n":
file_string += "\n"
if f"{key}" not in file_string:
file_string += f"{key}={value}"
with open(".env", "w") as file_handle:
file_handle.write(file_string)
def get_secret_key(allow_special_chars=True):
chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVXYZ0123456789"
if allow_special_chars:
chars += "#^[]-_*%&=+/"
keygen = "".join([random.SystemRandom().choice(chars) for _ in range(50)])
print(keygen)
return keygen
if __name__ == "__main__":
arguments = sys.argv[1:]
if "get-secret-key" in arguments:
get_secret_key()
if "change-secret-key" in arguments:
keygen = get_secret_key()
update_env_file("DJANGO_SECRET_KEY", keygen)
if "default-secret-key" in arguments:
update_env_file("DJANGO_SECRET_KEY", "default_secret_key")
if "change-database-credentials" in arguments:
keygen1 = get_secret_key(allow_special_chars=False)
keygen2 = get_secret_key()
update_env_file("DB_USER", keygen1)
update_env_file("DB_PASS", keygen2)