forked from ls1intum/Artemis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartemis-server-cli
executable file
·372 lines (319 loc) · 9.97 KB
/
artemis-server-cli
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
#!/usr/bin/env bash
########################################################################################################################
# Script: artemis-server-cli #
# #
# Description: Provide a Wrapper to conveniently perform common operations on Artemis Servers. #
# This assumes a standardized server configuration and properly configured SSH access. #
# Run artemis-server-cli -h for usage information #
# #
# Author: Jan Philip Bernius #
# Email: [email protected] #
# GitHub: @jpbernius #
# #
########################################################################################################################
# Function: Ask User for Confirmation, if -y flag is not used
#
# @param question
interactive=true
function user_confirmation {
if [ $interactive = true ]; then
echo $1
read -p "Do you want to continue? [Y/n] " response
if [[ ! $response =~ ^([yY][eE][sS]|[yY])$ ]]; then
echo "Aborted."
exit 0
fi
fi
}
# Function: Perform Backup on Server
#
# @param host
# @param database (boolean)
# @param filesystem (boolean)
function backup {
if [ $2 = false ] && [ $3 = false ]; then return 0; fi
if [ $2 = true ] && [ $3 = true ]; then backup_scope="database and the filesystem"
elif [ $2 = true ]; then backup_scope="database"
elif [ $3 = true ]; then backup_scope="filesystem"
fi
user_confirmation "About to start a backup of the $backup_scope on remote server $1."
CMD="sudo /opt/artemis/artemis-backup.sh -"
if [ $2 = true ]; then CMD+="d"; fi
if [ $3 = true ]; then CMD+="f"; fi
ssh $1 $CMD
}
# Function: Perform Deployment to Server
#
# @param host
# @param war location
function deploy {
user_confirmation "About to start a deployment of WAR File $2 on remote server $1"
# Upload WAR
scp $2 $1:~/artemis.war.new
# Trigger Commands to replace and restart Artemis Application
ssh $1 << COMMAND
chmod +x artemis.war.new
sudo mv ~/artemis.war.new /opt/artemis/artemis.war.new
sudo rm /opt/artemis/artemis.war.old
sudo systemctl stop artemis
sudo mv /opt/artemis/artemis.war /opt/artemis/artemis.war.old
sudo mv /opt/artemis/artemis.war.new /opt/artemis/artemis.war
sudo systemctl start artemis
COMMAND
}
# Function: Show Server Logs using journalctl
#
# @param host
# @param follow log
# @param number of log lines to fetch
function logs {
CMD="sudo journalctl -u artemis -n $3"
if [ $2 = true ]; then CMD+=" -f"; fi
ssh $1 $CMD
}
# Function: Check for -h Flag
#
# @param callback function to display help menu
# @param $@
function extract_help_flag {
callback=$1; shift
local OPTIND
while getopts ":h" opt; do
case ${opt} in
h )
$callback
exit 0
;;
\? )
printf "Invalid Option: -$OPTARG \n\n" 1>&2
$callback
exit 1
;;
esac
done
shift $((OPTIND -1))
}
# Function: Print general usage information
function general_help {
cat << HELP
Usage:
./$(basename $0) <command> [options]
Commands:
deploy Deploy to remote Artemis Server.
backup Perform on remote Artemis Server.
logs Show Artemis Server logs.
General Options:
-h Show help.
HELP
}
# Function: Print deploy usage information
function deploy_help {
cat << HELP
Usage:
./$(basename $0) deploy <host> [options]
Options:
<host> [user@]hostname
-w <path> Path to WAR file.
-b Perform Backup before deployment. (Requires -d and/or -f options.)
-d Perform Database Backup before deployment. (Only if -b is present.)
-f Perform Filesystem Backup before deployment. (Only if -b is present.)
-y Automatic yes to prompts. Assume "yes" as answer to all prompts and run non-interactively.
HELP
}
# Function: Print backup usage information
function backup_help {
cat << HELP
Usage:
./$(basename $0) backup <host> [options]
Options:
<host> [user@]hostname
-d Perform Database Backup.
-f Perform Filesystem Backup.
-y Automatic yes to prompts. Assume "yes" as answer to all prompts and run non-interactively.
HELP
}
# Function: Print logs usage information
function logs_help {
cat << HELP
Usage:
./$(basename $0) logs <host> [options]
Options:
<host> [user@]hostname
-f Follow the journal.
-n Number of journal entries to show
HELP
}
########################################################################################################################
# Subcommand Menus #
########################################################################################################################
# Function: Display Backup Subcommand Menu
#
# @param $@
function backup_menu {
extract_help_flag backup_help $@
server=$1; shift
# Handle missing server
if [ -z "$server" ]
then
backup_help
exit 1
fi
local database=false
local filesystem=false
local OPTIND
while getopts ":hydf" opt; do
case ${opt} in
h )
backup_help
exit 0
;;
y )
interactive=false
;;
d )
database=true
;;
f )
filesystem=true
;;
\? )
printf "Invalid Option: -$OPTARG\n\n" 1>&2
backup_help
exit 1
;;
esac
done
if [ $OPTIND -eq 1 ]; then
printf "Invalid Option: backup requires an argument\n\n" 1>&2
backup_help
exit 1
fi
shift $((OPTIND -1))
backup $server $database $filesystem
}
# Function: Display Deployment Subcommand Menu
#
# @param $@
function deploy_menu {
extract_help_flag deploy_help $@
server=$1; shift
# Handle missing server
if [ -z "$server" ]
then
deploy_help
exit 1
fi
local war=''
local backup=false
local database=false
local filesystem=false
local OPTIND
while getopts ":hyw:bdf" opt; do
case ${opt} in
h )
deploy_help
exit 0
;;
y )
interactive=false
;;
w )
war=$OPTARG
;;
b )
backup=true
;;
d )
database=true
;;
f )
filesystem=true
;;
\? )
printf "Invalid Option: -$OPTARG\n\n" 1>&2
backup_help
exit 1
;;
esac
done
if [ $OPTIND -eq 1 ]; then
printf "Invalid Option: backup requires an argument\n\n" 1>&2
backup_help
exit 1
fi
shift $((OPTIND -1))
if [ -z $war ] || [ ! -f $war ]; then
printf "Require Path to WAR file to perform deployment.\n\n" 1>&2
backup_help
exit 1
fi
if [ $backup = true ]; then
backup $server $database $filesystem
fi
deploy $server $war
}
# Function: Display Logs Subcommand Menu
#
# @param $@
function logs_menu {
extract_help_flag logs_help $@
server=$1; shift
# Handle missing server
if [ -z "$server" ]
then
logs_help
exit 1
fi
local follow=false
local lines=100
local OPTIND
while getopts ":hfn:" opt; do
case ${opt} in
h )
backup_help
exit 0
;;
f )
follow=true
;;
n )
lines=$OPTARG
;;
\? )
printf "Invalid Option: -$OPTARG\n\n" 1>&2
logs_help
exit 1
;;
esac
done
shift $((OPTIND -1))
logs $server $follow $lines
}
########################################################################################################################
# Main Menu #
########################################################################################################################
# Parse options to the `artemis-server-cli` command
extract_help_flag general_help $@
# read subcommand `artemis-server-cli subcommand server` in variable and remove base command from argument list
subcommand=$1; shift
# Handle empty subcommand
if [ -z $subcommand ]; then
general_help
exit 1
fi
case "$subcommand" in
deploy)
deploy_menu $@
;;
backup)
backup_menu $@
;;
logs)
logs_menu $@
;;
*)
printf "Invalid Command: $subcommand\n\n" 1>&2
general_help
exit 1
;;
esac