forked from ooici/ooici-pres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfabfile.py
395 lines (356 loc) · 14 KB
/
fabfile.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
#!/usr/bin/env python
from __future__ import with_statement
from fabric.api import *
from fabric.contrib.console import confirm
from fabric.contrib.files import exists
import os
import re
import sys
import time
# global variables
gitUrl = 'git://github.com/ooici/ooici-pres.git'
project = 'ooici-pres'
webAppHost = None
webAppName = None
webAppPort = None
context = None
# Monkey-patch "open" to honor fabric's current directory
_old_open = open
def open(path, *args, **kwargs):
if os.path.isabs(path):
return _old_open(path, *args, **kwargs)
return _old_open(os.path.join(env.lcwd, path), *args, **kwargs)
# Decorator class
class cloneDir(object):
def __init__(self, f):
self.f = f
def __call__(self, *args, **kwargs):
global webAppName
local('rm -rf ../tmpfab')
local('mkdir ../tmpfab')
local('git clone %s ../tmpfab/%s' % (gitUrl, project))
with lcd(os.path.join('..', 'tmpfab', project)):
print 'Below is a list of release tags available for deploying:'
local('git tag | sort -r')
defaultTagVersion = local('git tag|sort -n|tail -1', capture=True)
tagVersion = prompt('Please enter release tag you want to deploy based on list above:',
default=defaultTagVersion)
webAppName = 'ooici-pres-%s' % tagVersion[1:]
self.f(*args, **kwargs)
local('rm -rf ../tmpfab')
def ciLogonConfig(localDeployment):
global webAppHost
if webAppHost is None:
if localDeployment:
localhostName = local('uname -n', capture=True)
webAppHost = prompt('Please enter fully qualified web application host name:', default=localhostName)
else:
webAppHost = prompt('Please enter fully qualified web application host name:')
global webAppPort
if webAppPort is None:
webAppPort = prompt('Please enter web application SSL port number:')
# Perform value substitution in CILogon config file
o = open('web-app/WEB-INF/cfg.rdf', 'w')
cilogonCfg = open('config/cfg.rdf.template').read()
global context
if context is None:
readyURL = 'https://' + webAppHost + ':' + webAppPort + '/' + webAppName + '/ready'
failureURL = 'https://' + webAppHost + ':' + webAppPort + '/' + webAppName + '/failure'
successURL = 'https://' + webAppHost + ':' + webAppPort + '/' + webAppName + '/SuccessServlet'
else:
readyURL = 'https://' + webAppHost + ':' + webAppPort + '/ready'
failureURL = 'https://' + webAppHost + ':' + webAppPort + '/failure'
successURL = 'https://' + webAppHost + ':' + webAppPort + '/SuccessServlet'
cilogonCfg = re.sub('READY', readyURL, cilogonCfg)
cilogonCfg = re.sub('FAILURE', failureURL, cilogonCfg)
cilogonCfg = re.sub('SUCCESS', successURL, cilogonCfg)
o.write( re.sub('PORT', webAppPort, cilogonCfg) )
o.close()
topicHost = None
topicSysname = None
topicPort = None
topicUsername = None
topicPassword = None
topicExchange = None
instrumentMonitorURL = None
debugMode = None
def appConfig(localDeployment):
global topicHost
if topicHost is None:
if localDeployment:
topicHost = prompt('Please enter fully qualified topic host name:', default='localhost')
else:
topicHost = prompt('Please enter fully qualified topic host name:', default='amoeba.ucsd.edu')
global topicSysname
if topicSysname is None:
if localDeployment:
topicSysname = prompt('Please enter topic sysname:', default=os.getlogin())
else:
topicSysname = prompt('Please enter topic sysname:', default='R1_UI_DEMO')
global topicPort
if topicPort is None:
topicPort = prompt('Please enter topic AMQ port number:', default='5672')
global topicUsername
if topicUsername is None:
topicUsername = prompt('Please enter username for connecting to RabbitMQ:', default='guest')
global topicPassword
if topicPassword is None:
topicPassword = prompt('Please enter password for connecting to RabbitMQ:', default='guest')
global topicExchange
if topicExchange is None:
topicExchange = prompt('Please enter topic exchange:', default='magnet.topic')
global instrumentMonitorURL
if instrumentMonitorURL is None:
instrumentMonitorURL = prompt('Please enter instrument monitor URL:', default='http://localhost:9998')
global debugMode
if debugMode is None:
if localDeployment:
debugMode = prompt('Please enter CILogon bypass authentication mode (force, url, disabled):', default='force')
else:
debugMode = prompt('Please enter CILogon bypass authentication mode (force, url, disabled):', default='disabled')
# Perform value substitution in app config file(s)
o = open('src/java/ioncore-config.properties', 'w')
appCfg = open('config/ioncore-config.properties.template').read()
appCfg = re.sub('HOSTNAME', topicHost, appCfg)
appCfg = re.sub('SYSNAME', topicSysname, appCfg)
appCfg = re.sub('PORT', topicPort, appCfg)
appCfg = re.sub('USERNAME', topicUsername, appCfg)
appCfg = re.sub('PASSWORD', topicPassword, appCfg)
appCfg = re.sub('INSTRUMENT_MONITOR_URL', instrumentMonitorURL, appCfg)
appCfg = re.sub('BYPASSAUTHENTICATIONMODE', debugMode, appCfg)
o.write( re.sub('EXCHANGE', topicExchange, appCfg) )
o.close()
if localDeployment:
homeDir = os.environ['HOME']
o = open('%s/.grails/ioncore-config.properties'% (homeDir), 'w')
appCfg = open('config/ioncore-config.properties.template').read()
appCfg = re.sub('HOSTNAME', topicHost, appCfg)
appCfg = re.sub('SYSNAME', topicSysname, appCfg)
appCfg = re.sub('PORT', topicPort, appCfg)
appCfg = re.sub('USERNAME', topicUsername, appCfg)
appCfg = re.sub('PASSWORD', topicPassword, appCfg)
appCfg = re.sub('INSTRUMENT_MONITOR_URL', instrumentMonitorURL, appCfg)
appCfg = re.sub('BYPASSAUTHENTICATIONMODE', debugMode, appCfg)
o.write( re.sub('EXCHANGE', topicExchange, appCfg) )
o.close()
def buildWebApp(localDeployment, useTomcat):
global webAppName
if useTomcat:
ciLogonConfig(localDeployment)
appConfig(localDeployment)
# Build and package app
local('grails war')
sshUser = None
tomcatDir = None
def startWebApp(localDeployment, useTomcat, restartTomcat):
if localDeployment:
if useTomcat:
global tomcatDir
if tomcatDir is None:
tomcatDir = prompt('Please enter fully qualified Tomcat install directory:', default='/opt/tomcat')
if restartTomcat:
local('%s/bin/shutdown.sh' % (tomcatDir))
print 'Waiting for application to fully stop'
time.sleep(10);
local('rm -rf %s/webapps/%s*' % (tomcatDir, webAppName))
local('cp target/%s.war %s/webapps' % (webAppName, tomcatDir))
if restartTomcat:
local('%s/bin/startup.sh' % (tomcatDir))
else:
local('grails run-app')
else:
global webAppHost
if webAppHost is None:
webAppHost = prompt('Please enter fully qualified web application host name:', default='ion-test.oceanobservatories.org')
if useTomcat:
if tomcatDir is None:
tomcatDir = prompt('Please enter fully qualified Tomcat install directory:', default='/opt/tomcat')
global sshUser
if sshUser is None:
sshUser = os.getlogin()
sshUser = prompt('Please enter your ssh login name:', default=sshUser)
local('ssh %s@%s -t %s/bin/shutdown.sh' % (sshUser, webAppHost, tomcatDir))
print 'Waiting for application to fully stop'
time.sleep(10);
local('ssh %s@%s -t rm -rf %s/webapps/%s*' % (sshUser, webAppHost, tomcatDir, webAppName))
local('scp target/%s.war %s@%s:%s/webapps' % (webAppName, sshUser, webAppHost, tomcatDir))
local('ssh %s@%s -t %s/bin/startup.sh' % (sshUser, webAppHost, tomcatDir))
def startWebAppOfficial(localDeployment):
if localDeployment:
local('grails run-app')
else:
global sshUser
if sshUser is None:
sshUser = os.getlogin()
sshUser = prompt('Please enter your ssh login name:', default=sshUser)
local('ssh %s@%s -t sudo /etc/init.d/grails stop' % (sshUser, webAppHost))
print 'Waiting for application to fully stop'
time.sleep(10);
local('ssh %s@%s -t sudo rm -rf /opt/tomcat/webapps/%s*' % (sshUser, webAppHost, context))
local('scp target/%s.war %s@%s:/opt/tomcat/webapps/%s.war' % (webAppName, sshUser, webAppHost, context))
local('ssh %s@%s -t chmod 666 /opt/tomcat/webapps/%s.war' % (sshUser, webAppHost, context))
local('ssh %s@%s -t sudo /etc/init.d/grails start' % (sshUser, webAppHost))
@cloneDir
def buildAndStartWebApp(isWebAppOfficial, localDeployment, useTomcat,
restartTomcat):
buildWebApp(localDeployment, useTomcat)
if isWebAppOfficial:
startWebAppOfficial(localDeployment)
else:
startWebApp(localDeployment, useTomcat, restartTomcat)
def deployIonBeta():
global webAppHost
global webAppName
global context
global webAppPort
global topicHost
global topicSysname
global topicPort
global topicUsername
global topicPassword
global topicExchange
global instrumentMonitorURL
global debugMode
webAppHost = 'ion-beta.oceanobservatories.org'
context = 'ROOT'
webAppPort = '443'
topicHost = 'rabbitmq.oceanobservatories.org'
topicSysname = 'R1_TEST_SYSTEM2'
topicPort = '5672'
topicUsername = 'guest'
topicPassword = 'guest'
topicExchange = 'magnet.topic'
instrumentMonitorURL = 'http://pubdebug01.oceanobservatories.org:9998'
debugMode = 'disabled'
buildAndStartWebApp(isWebAppOfficial=True, localDeployment=False,
useTomcat=True, restartTomcat=True)
# buildWebApp(False,True)
# startWebAppOfficial(False)
def deployIonTest():
global webAppHost
global webAppName
global context
global webAppPort
global topicHost
global topicSysname
global topicPort
global topicUsername
global topicPassword
global topicExchange
global instrumentMonitorURL
global debugMode
webAppHost = 'ion-test.oceanobservatories.org'
context = 'ROOT'
webAppPort = '443'
topicHost = 'rabbitmq-test.oceanobservatories.org'
topicSysname = 'R1_TEST_SYSTEM1'
topicPort = '5672'
topicUsername = 'guest'
topicPassword = 'guest'
topicExchange = 'magnet.topic'
instrumentMonitorURL = 'http://pubdebug01.oceanobservatories.org:9998'
debugMode = 'disabled'
buildAndStartWebApp(isWebAppOfficial=True, localDeployment=False,
useTomcat=True, restartTomcat=True)
# buildWebApp(False,True)
# startWebAppOfficial(False)
def deployIonStage():
global webAppHost
global webAppName
global context
global webAppPort
global topicHost
global topicSysname
global topicPort
global topicUsername
global topicPassword
global topicExchange
global instrumentMonitorURL
global debugMode
webAppHost = 'ion-stage.oceanobservatories.org'
context = 'ROOT'
webAppPort = '443'
topicHost = 'rabbitmq-stage.oceanobservatories.org'
topicSysname = 'R1_STAGE_SYSTEM'
topicPort = '5672'
topicUsername = 'guest'
topicPassword = 'guest'
topicExchange = 'magnet.topic'
instrumentMonitorURL = 'http://pubdebug01.oceanobservatories.org:9998'
debugMode = 'disabled'
buildAndStartWebApp(isWebAppOfficial=True, localDeployment=False,
useTomcat=True, restartTomcat=True)
# buildWebApp(False,True)
# startWebAppOfficial(False)
def deployAmoeba():
global webAppHost
global webAppName
global webAppPort
global topicHost
global topicSysname
global topicPort
global topicUsername
global topicPassword
global topicExchange
global instrumentMonitorURL
global debugMode
global tomcatDir
webAppHost = 'amoeba.ucsd.edu'
webAppPort = '9443'
topicHost = 'amoeba.ucsd.edu'
topicSysname = 'R1_UI_DEMO'
topicPort = '5672'
topicUsername = 'guest'
topicPassword = 'guest'
topicExchange = 'magnet.topic'
instrumentMonitorURL = 'http://amoeba.ucsd.edu:9998'
debugMode = 'disabled'
tomcatDir = '/opt/apache-tomcat-6.0.32'
buildAndStartWebApp(isWebAppOfficial=False, localDeployment=False,
useTomcat=True, restartTomcat=True)
# buildWebApp(False,True)
# startWebApp(False,True,True)
def deployTest():
global webAppHost
global webAppName
global webAppPort
global topicHost
global topicSysname
global topicPort
global topicUsername
global topicPassword
global topicExchange
global instrumentMonitorURL
global debugMode
global tomcatDir
webAppHost = 'buildbot.oceanobservatories.org'
webAppPort = '9443'
webAppName = 'ooici-pres-0.1'
topicHost = 'amoeba.ucsd.edu'
topicSysname = 'buildbot'
topicPort = '5672'
topicUsername = 'guest'
topicPassword = 'guest'
topicExchange = 'magnet.topic'
instrumentMonitorURL = 'http://buildbot.oceanobservatories.org:9998'
debugMode = 'disabled'
tomcatDir = '/var/lib/jenkins/apache-tomcat-6.0.32'
local('sed -e "s/app.version=.*/app.version=0.1/" application.properties > tmp.properties')
local("mv tmp.properties application.properties")
buildWebApp(True,True)
startWebApp(True,True,False)
def deployRemoteTomcat():
buildAndStartWebApp(isWebAppOfficial=False, localDeployment=False,
useTomcat=True, restartTomcat=True)
# buildWebApp(False,True)
# startWebApp(False,True,True)
def deployLocalTomcat():
buildAndStartWebApp(isWebAppOfficial=False, localDeployment=True,
useTomcat=True, restartTomcat=True)
# buildWebApp(True,True)
# startWebApp(True,True,True)
def deployLocal():
buildAndStartWebApp(isWebAppOfficial=False, localDeployment=True,
useTomcat=False, restartTomcat=False)
# buildWebApp(True,False)
# startWebApp(True,False,True)