-
Notifications
You must be signed in to change notification settings - Fork 5
/
geo.sh
executable file
·257 lines (217 loc) · 6.28 KB
/
geo.sh
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
#!/bin/bash
ROOT_DIR=${PWD}
SERVICES_DIR=${ROOT_DIR}'/services'
UTILS_DIR=${ROOT_DIR}'/utils'
DOS2UNIX="${UTILS_DIR}/dos2unix.exe"
BASE_DIR=${SERVICES_DIR}'/base'
SUBSCRIPTION_MANAGER_DIR=${SERVICES_DIR}"/subscription_manager"
SUBSCRIPTION_MANAGER_DIR_SRC=${SUBSCRIPTION_MANAGER_DIR}"/src"
GEOFENCING_SERVICE_DIR=${SERVICES_DIR}"/geofencing_service"
GEOFENCING_SERVICE_DIR_SRC=${GEOFENCING_SERVICE_DIR}"/src"
GEOFENCING_VIEWER_DIR=${SERVICES_DIR}"/geofencing_viewer"
GEOFENCING_VIEWER_DIR_SRC=${GEOFENCING_VIEWER_DIR}"/src"
GEOFENCING_USER_CONFIG_DIR=${SERVICES_DIR}"/swim_user_config"
GEOFENCING_USER_CONFIG_DIR_SRC=${GEOFENCING_USER_CONFIG_DIR}"/src"
is_windows() {
UNAME=$(uname)
[[ "${UNAME}" != "Linux" ]] && [[ "${UNAME}" != "Darwin" ]]
}
fetch_user_config() {
if [[ -d ${GEOFENCING_USER_CONFIG_DIR_SRC} ]]
then
cd "${GEOFENCING_USER_CONFIG_DIR_SRC}" || exit
git pull -q --rebase origin master
else
git clone -q https://github.com/eurocontrol-swim/swim-user-config.git "${GEOFENCING_USER_CONFIG_DIR_SRC}"
fi
cd "${ROOT_DIR}" || exit
}
user_config() {
# check the prompt argument
if [[ ${1} == '1' ]]
then
P='-p'
else
P=''
fi
echo "GEOFENCING user configuration..."
echo -e "================================"
ENV_FILE="${ROOT_DIR}/geo.env"
touch "${ENV_FILE}"
python "${GEOFENCING_USER_CONFIG_DIR_SRC}/swim_user_config/main.py" -c "${GEOFENCING_USER_CONFIG_DIR}/config.json" -o "${ENV_FILE}" ${P}
if is_windows
then
"${DOS2UNIX}" -q "${ENV_FILE}"
fi
while read -r LINE; do export "${LINE}"; done < "${ENV_FILE}"
rm "${ENV_FILE}"
}
prepare_repos() {
echo "Preparing Git repositories..."
echo -e "==============================\n"
echo -n "Preparing subscription-manager..."
if [[ -d ${SUBSCRIPTION_MANAGER_DIR_SRC} ]]
then
cd "${SUBSCRIPTION_MANAGER_DIR_SRC}" || exit
git pull -q --rebase origin master
else
git clone -q https://github.com/eurocontrol-swim/subscription-manager.git "${SUBSCRIPTION_MANAGER_DIR_SRC}"
fi
echo "OK"
echo -n "Preparing geofencing-service..."
if [[ -d ${GEOFENCING_SERVICE_DIR_SRC} ]]
then
cd "${GEOFENCING_SERVICE_DIR_SRC}" || exit
git pull -q --rebase origin master
else
git clone -q https://github.com/eurocontrol-swim/geofencing-service.git "${GEOFENCING_SERVICE_DIR_SRC}"
fi
echo "OK"
echo -n "Preparing geofencing-viewer..."
if [[ -d ${GEOFENCING_VIEWER_DIR_SRC} ]]
then
cd "${GEOFENCING_VIEWER_DIR_SRC}" || exit
git pull -q --rebase origin master
else
git clone -q https://github.com/eurocontrol-swim/geofencing-viewer.git "${GEOFENCING_VIEWER_DIR_SRC}"
fi
echo "OK"
echo -e "\n"
}
data_provision() {
echo "Data provisioning to Subscription Manager..."
echo -e "============================================\n"
docker-compose run subscription-manager-provision
echo ""
echo "Data provisioning to Geofencing Service..."
echo -e "===========================================\n"
docker-compose run geofencing-service-provision
echo ""
}
start_services() {
echo "Starting up GEOFENCING..."
echo -e "=========================\n"
docker-compose up -d web-server subscription-manager geofencing-service geofencing-viewer
echo ""
}
stop_services_with_clean() {
echo "Stopping GEOFENCING..."
echo -e "======================\n"
docker-compose down
echo ""
}
stop_services_with_purge() {
stop_services_with_clean &&
docker volume ls -q | grep geofencing-prototype | xargs -r docker volume rm
echo ""
}
stop_services() {
echo "Stopping GEOFENCING..."
echo -e "================\n"
docker-compose stop
echo ""
}
build() {
echo "Removing old data..."
echo -e "==================\n"
# Remove existing volumes
docker volume ls -q | grep geofencing-prototype | xargs -r docker volume rm
echo "Building images..."
echo -e "==================\n"
# build the base images upon which the geofencing services will depend on
cd "${BASE_DIR}" || exit 1
docker build -t swim-base -f Dockerfile .
docker build -t swim-base.conda -f Dockerfile.conda .
# Build the rest of the images
docker-compose build
cd "${ROOT_DIR}" || exit 1
echo ""
echo "Removing obsolete docker images..."
echo -e "==================================\n"
docker images | grep none | awk '{print $3}' | xargs -r docker rmi
}
status() {
docker ps
}
usage() {
echo -e "Usage: geo.sh [COMMAND] [OPTIONS]\n"
echo "Commands:"
echo " user_config Generates username/password for all the GEOFENCING related users"
echo " user_config --prompt Prompts for username/password for all the GEOFENCING related users"
echo " build Clones/updates the necessary git repositories and builds the involved docker images"
echo " provision Provisions the Subscription Manager with initial data (users)"
echo " start Starts up all the GEOFENCING services"
echo " stop Stops all the services"
echo " stop --clean Stops all the services and cleans up the containers"
echo " stop --purge Stops all the services and cleans up the containers and the volumes"
echo " status Displays the status of the running containers"
echo ""
}
if [[ $# -lt 1 || $# -gt 2 ]]
then
usage
fi
ACTION=${1}
case ${ACTION} in
build)
# update the repos if they exits othewise clone them
prepare_repos
# build the images
build
;;
start)
start_services
;;
stop)
if [[ -n ${2} ]]
then
EXTRA=${2}
case ${EXTRA} in
--clean)
stop_services_with_clean
;;
--purge)
stop_services_with_purge
;;
*)
echo -e "Invalid argument\n"
usage
;;
esac
else
stop_services
fi
;;
provision)
data_provision
;;
status)
status
;;
user_config)
# update the swim-user-config repository
fetch_user_config
if [[ -n ${2} ]]
then
EXTRA=${2}
case ${EXTRA} in
--prompt)
user_config 1
;;
*)
echo -e "Invalid argument\n"
usage
;;
esac
else
user_config 0
fi
;;
help)
usage
;;
*)
echo -e "Invalid action\n"
usage
;;
esac