-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyris-server-cli
216 lines (187 loc) · 6.62 KB
/
pyris-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
#!/usr/bin/env bash
########################################################################################################################
# Script: pyris-server-cli #
# #
# Description: Provide a Wrapper to conveniently perform common operations on Pyris Servers. #
# This assumes a standardized server configuration and properly configured SSH access. #
# Run pyris-server-cli -h for usage information #
# #
# Author: Timor Morrien #
# Email: timor.morrien@tum.de #
# GitHub: @hialus #
# #
########################################################################################################################
# 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 Deployment to Server via Docker
# Expects the pyris-docker.sh script to be present on the remote server
#
# @param deployment host
# @param gateway host
# @param pr tag
# @param pr branch
# @param deployment directory
function docker_deploy {
user_confirmation "About to start a deployment of PR $3 ($4) on remote server $1 using gateway server $2"
ssh -J "$2" -o "StrictHostKeyChecking=no" "$1" << COMMAND
cd $5
sudo /usr/bin/bash $5/pyris-docker.sh restart $3 $4
COMMAND
}
# 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:
docker-deploy Deploy to remote Pyris Server.
General Options:
-h Show help.
HELP
}
# Function: Print docker-deploy usage information
function docker_deploy_help {
cat << HELP
Usage:
./$(basename $0) docker-deploy <host> [options]
Options:
<host> [user@]hostname
-g Gateway [user@]hostname.
-t Docker tag that should be deployed.
-b GitHub branch that should be deployed.
-d Deployment directory
-y Automatic yes to prompts. Assume "yes" as answer to all prompts and run non-interactively.
HELP
}
########################################################################################################################
# Subcommand Menus #
########################################################################################################################
# Function: Display Docker Deployment Subcommand Menu
#
# @param $@
function docker_deploy_menu {
extract_help_flag docker_deploy_help $@
server=$1; shift
# Handle missing server
if [ -z "$server" ]
then
docker_deploy_help
exit 1
fi
local gateway=''
local tag=''
local branch=''
local directory=''
local OPTIND
while getopts ":hyg:t:b:d:" opt; do
case ${opt} in
h )
deploy_help
exit 0
;;
y )
interactive=false
;;
g )
gateway=$OPTARG
;;
t )
tag=$OPTARG
;;
b )
branch=$OPTARG
;;
d )
directory=$OPTARG
;;
\? )
printf "Invalid Option: -$OPTARG\n\n" 1>&2
docker_deploy_help
exit 1
;;
esac
done
if [ $OPTIND -eq 1 ]; then
printf "Invalid Option: backup requires an argument\n\n" 1>&2
docker_deploy_help
exit 1
fi
shift $((OPTIND -1))
if [ -z "$gateway" ]; then
printf "Require gateway to perform deployment.\n\n" 1>&2
docker_deploy_help
exit 1
fi
if [ -z "$tag" ]; then
printf "Require docker tag to perform deployment.\n\n" 1>&2
docker_deploy_help
exit 1
fi
if [ -z "$branch" ]; then
printf "Require branch name to perform deployment.\n\n" 1>&2
docker_deploy_help
exit 1
fi
if [ -z "$directory" ]; then
printf "Require deployment directory to perform deployment.\n\n" 1>&2
docker_deploy_help
exit 1
fi
docker_deploy "$server" "$gateway" "$tag" "$branch" "$directory"
}
########################################################################################################################
# Main Menu #
########################################################################################################################
# Parse options to the `pyris-server-cli` command
extract_help_flag general_help $@
# read subcommand `pyris-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
docker-deploy)
docker_deploy_menu $@
;;
*)
printf "Invalid Command: $subcommand\n\n" 1>&2
general_help
exit 1
;;
esac