-
Notifications
You must be signed in to change notification settings - Fork 12
/
ci_script.py
89 lines (83 loc) · 3.54 KB
/
ci_script.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
# helper script for Autolab Jenkins CI/CD, Fall 2021
import fileinput
import sys
import os
import getopt
DEFAULT_VOLUME_PATH = (
"DOCKER_TANGO_HOST_VOLUME_PATH=/home/ec2-user/autolab-docker/Tango/volumes"
)
DEFAULT_DOMAINS = "domains=(example.com)"
DEPLOYMENT_SITE_NAME = "nightly.autolabproject.com"
NGINX_APP_CONFIG_DEFAULT_DOMAIN = "<REPLACE_WITH_YOUR_DOMAIN>"
GOOGLE_ANALYTICS_CONFIG_DEFAULT="config.x.google_analytics_id = nil"
NIGHTLY_ANALYTICS_CONFIG_ID = 'config.x.google_analytics_id = "G-EDGWY44RB2"'
def replace_exp(file, search_exp, replace_exp):
success = False
for line in fileinput.input(file, inplace=1):
if search_exp in line:
line = line.replace(search_exp, replace_exp)
success = True
sys.stdout.write(line)
return success
if __name__ == "__main__":
arg_list = sys.argv[1:]
options = "v:s:a:g:"
dir_path = os.path.dirname(os.path.realpath(__file__))
try:
arguments, values = getopt.getopt(arg_list, options)
for arg, val in arguments:
file_name = val
if arg == "-v": # script is ran for changing the tango volume path
path_to_Tango_vmms = "DOCKER_TANGO_HOST_VOLUME_PATH=" + os.path.join(
dir_path, "Tango/volumes"
)
replaced = replace_exp(
file_name, DEFAULT_VOLUME_PATH, path_to_Tango_vmms
)
if replaced:
print(
f"changed volume path from {DEFAULT_VOLUME_PATH} to {path_to_Tango_vmms} in {file_name}."
)
else:
print(
f"did not find a matching string {DEFAULT_VOLUME_PATH} in {file_name}."
)
elif arg == "-s": # script is run for changing the ssl domain name
domains = f"domains=({DEPLOYMENT_SITE_NAME})"
replaced = replace_exp(
file_name, DEFAULT_DOMAINS, domains
)
if replaced:
print(
f"changed domains from {DEFAULT_DOMAINS} to {domains} in {file_name}."
)
else:
print(
f"did not find a matching string {DEFAULT_DOMAINS} in {file_name}."
)
elif arg == "-a":
domain_name = DEPLOYMENT_SITE_NAME
replaced = replace_exp(file_name, NGINX_APP_CONFIG_DEFAULT_DOMAIN, domain_name)
if replaced:
print(
f"changed domains from {DEFAULT_DOMAINS} to {domain_name} in {file_name}."
)
else:
print(
f"did not find a matching string {DEFAULT_DOMAINS} in {file_name}."
)
elif arg == "-g":
domain_name = DEPLOYMENT_SITE_NAME
replaced = replace_exp(file_name, GOOGLE_ANALYTICS_CONFIG_DEFAULT, NIGHTLY_ANALYTICS_CONFIG_ID)
if replaced:
print(
f"changed domains from {GOOGLE_ANALYTICS_CONFIG_DEFAULT} to {NIGHTLY_ANALYTICS_CONFIG_ID} in {file_name}."
)
else:
print(
f"did not find a matching string {GOOGLE_ANALYTICS_CONFIG_DEFAULT} in {file_name}."
)
else:
raise ValueError("not valid input to this script")
except getopt.error as err:
print(str(err))