-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.py
More file actions
226 lines (182 loc) · 6.39 KB
/
install.py
File metadata and controls
226 lines (182 loc) · 6.39 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
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
import subprocess
import argparse
import os
import time
import shutil
import json
import traceback
import os
import docker
def startup():
return;
def debugPrint(out, err):
print('Output: ')
print(out)
print('Error: ')
def execute(command, args):
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
stdout = stdout.decode('utf-8')
stderr = stderr.decode('utf-8')
if(args.debug):
debugPrint(stdout, stderr)
return stdout
def executeShell(command, args):
process = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
stdout = stdout.decode('utf-8')
stderr = stderr.decode('utf-8')
if(args.debug):
debugPrint(stdout, stderr)
return stdout
def install(args):
executeShell('helm repo add stable https://charts.helm.sh/stable', args)
executeShell('helm repo add elastic https://helm.elastic.co',args)
def config(args):
print('\n')
print('############################################################')
print('Configuring')
print('############################################################')
print('\n')
data = None
try:
f = open('config.json')
data = json.load(f)
except:
print("Error Reading config.json, does it exist?")
print("Exiting Installer")
traceback.print_exc()
exit()
shutil.copyfile('config.json','Frontend/src/config.json')
shutil.copyfile('config.json','Backend/php/config.json')
shutil.copyfile('config.json','Governor/config.json')
#shutil.copyfile(data['sslcert'],'Backend/nodejs-server/server/cert.cer')
#shutil.copyfile(data['publickey'],'Backend/nodejs-server/server/client-key.pem')
print('\n')
print('############################################################')
print('Configuration Complete')
print('############################################################')
print('\n')
return;
def frontend(args):
print('\n')
print('############################################################')
print('Installing Frontend')
print('############################################################')
print('\n')
data = None
try:
f = open('config.json')
data = json.load(f)
except:
print("Error Reading config.json, does it exist?")
print("Exiting Installer")
traceback.print_exc()
exit()
dir = data['webpath']
os.chdir('Frontend/')
subprocess.check_call('npm install', shell=True)
subprocess.check_call('npm run build', shell=True)
shutil.rmtree(dir)
shutil.copytree('build/',dir)
shutil.copytree('build/',dir+'/delete')
if(data['authtype'] == "shibboleth"):
shutil.copyfile('../secret/htaccess',dir+'/.htaccess')
os.chdir('../')
try:
subprocess.check_call('systemctl restart httpd', shell=True)
except:
print('Failed to restart httpd. Please restart your apache service')
if(data['authtype'] == "shibboleth"):
try:
subproess.check_call('systemctl restart shibd')
except:
print('Failed to restart shibd. Please restart your shibboleth service')
print('\n')
print('############################################################')
print('Frontend Installation Complete')
print('############################################################')
print('\n')
return;
def backend(args):
print('\n')
print('############################################################')
print('Installing Backend')
print('############################################################')
print('\n')
data = None
try:
f = open('config.json')
data = json.load(f)
except:
print("Error Reading config.json, does it exist?")
print("Exiting Installer")
traceback.print_exc()
exit()
dir = data['webpath']+'/php/'
if os.path.exists(dir):
shutil.rmtree(dir)
shutil.copytree('./Backend/php/',dir)
'''
client = docker.from_env()
#Build Database Container
os.chdir('Database/Docker')
ret = client.images.build(path=".", tag="prowess-db")
print(ret)
#Build Backend Container
os.chdir('../../Backend/nodejs-server')
ret = client.images.build(path=".", tag="prowess-backend")
print(ret)
'''
print('\n')
print('############################################################')
print('Backend Installation Complete')
print('############################################################')
print('\n')
def governor(args):
print('\n')
print('############################################################')
print('Installing PROWESS Service')
print('############################################################')
print('\n')
try:
shutil.rmtree('/opt/prowess')
except:
pass
shutil.copytree('Governor','/opt/prowess')
shutil.copyfile('Service/prowess.service','/etc/systemd/system/prowess.service')
print('\n')
print('############################################################')
print('PROWESS Service Installation Complete')
print('############################################################')
print('\n')
return;
def main(args):
print('############################################################')
print('# Installing PROWESS #')
print('############################################################')
if(not (args.frontend or args.backend or args.prowess_svc or args.config or args.all)):
print('No Installation Options Specified')
print('Exiting')
exit()
if(args.config or args.all):
config(args)
if(args.frontend or args.all):
frontend(args)
if(args.backend or args.all):
backend(args)
if(args.prowess_svc or args.all):
governor(args)
print('############################################################')
print('# Installation Complete #')
print('############################################################')
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument('-debug', action="store_true", help='Print Debug Information')
parser.add_argument('-frontend',action="store_true", help='installs react frontend at specific directory')
parser.add_argument('-backend',action="store_true", help='installs PROWESS backend server and database')
parser.add_argument('-prowess_svc', action="store_true", help='installs the PROWESS governor application')
parser.add_argument('-config',action="store_true", help='Configures PROWESS frontend, backend, and governor')
parser.add_argument('-all', action="store_true", help='Flag to configure everything')
args = parser.parse_args()
main(args)