-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fun.sh
executable file
·424 lines (304 loc) · 9.79 KB
/
fun.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
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
#!/usr/bin/env bash
set -Eeuo pipefail
function green() {
echo -n "\e[32m"
}
function reset_color() {
echo -n $'\033'\[00m
}
function load_configuration_parameters() {
if [ ! -e ./.env ]; then
cp --verbose ./.env{.dist,}
fi
if [ ! -e ./config.json ]; then
cp --verbose ./config.json{.dist,}
fi
if [ ! -e ./config.firebase.json ]; then
cp --verbose ./config.firebase.json{.dist,}
fi
if [ ! -e ./provisioning/containers/docker-compose.override.yaml ]; then
cp ./provisioning/containers/docker-compose.override.yaml{.dist,}
fi
source ./.env
validate_docker_compose_configuration
guard_against_missing_variables
printf '%s' $'\n'
printf '%b%s%b"%s"%s' "$(green)" 'COMPOSE_PROJECT_NAME: ' "$(reset_color)" "${COMPOSE_PROJECT_NAME}" $'\n'
printf '%b%s%b"%s"%s' "$(green)" 'DEBUG: ' "$(reset_color)" "${DEBUG}" $'\n'
printf '%b%s%b"%s"%s' "$(green)" 'WORKER_DIR: ' "$(reset_color)" "${WORKER}" $'\n'
printf '%b%s%b"%s"%s' "$(green)" 'WORKER_OWNER_UID: ' "$(reset_color)" "${WORKER_OWNER_UID}" $'\n'
printf '%b%s%b"%s"%s' "$(green)" 'WORKER_OWNER_GID: ' "$(reset_color)" "${WORKER_OWNER_GID}" $'\n'
printf '%s' $'\n'
}
function set_file_permissions() {
load_configuration_parameters
local temporary_directory
temporary_directory="${1}"
if [ -z "${temporary_directory}" ];
then
printf 'A %s is expected as %s (%s).%s' 'non-empty string' '1st argument' 'temporary directory file path' $'\n'
return 1;
fi
if [ ! -d "${temporary_directory}" ];
then
printf 'A %s is expected as %s (%s).%s' 'directory' '1st argument' 'temporary directory file path' $'\n'
return 1;
fi
local project_name
project_name="$(get_project_name)"
docker compose \
--project-name="${project_name}" \
-f ./provisioning/containers/docker-compose.yaml \
-f ./provisioning/containers/docker-compose.override.yaml \
run \
--rm \
--user root \
--volume "${temporary_directory}:/tmp/remove-me" \
app \
/bin/bash -c 'chmod -R ug+w /tmp/remove-me'
}
function build() {
local COMPOSE_PROJECT_NAME
local DEBUG
local WORKER
local WORKER_OWNER_UID
local WORKER_OWNER_GID
load_configuration_parameters
if [ $? -gt 1 ];
then
printf '%s.%s' 'Invalid configuration files' $'\n' 1>&2
return 1;
fi
local project_name
project_name="$(get_project_name)"
if [ -n "${DEBUG}" ];
then
clean ''
docker compose \
--project-name="${project_name}" \
--file=./provisioning/containers/docker-compose.yaml \
--file=./provisioning/containers/docker-compose.override.yaml \
build \
--no-cache \
--build-arg "OWNER_UID=${WORKER_OWNER_UID}" \
--build-arg "OWNER_GID=${WORKER_OWNER_GID}" \
--build-arg "WORKER=${WORKER}" \
app \
worker
else
docker compose \
--project-name="${project_name}" \
--file=./provisioning/containers/docker-compose.yaml \
--file=./provisioning/containers/docker-compose.override.yaml \
build \
--no-cache \
--build-arg "OWNER_UID=${WORKER_OWNER_UID}" \
--build-arg "OWNER_GID=${WORKER_OWNER_GID}" \
--build-arg "WORKER=${WORKER}" \
app \
worker
fi
}
function guard_against_missing_variables() {
if [ -z "${COMPOSE_PROJECT_NAME}" ];
then
printf 'A %s is expected as %s ("%s" environment variable).%s' 'non-empty string' 'project name e.g. org_example_trends' 'COMPOSE_PROJECT_NAME' $'\n'
exit 1
fi
if [ "${COMPOSE_PROJECT_NAME}" = 'org_example_trends' ];
then
printf 'Have you picked a satisfying worker name ("%s" environment variable - "%s" default value is not accepted).%s' 'WORKER' 'org_example_trends' $'\n'
exit 1
fi
if [ -z "${WORKER}" ];
then
printf 'A %s is expected as %s ("%s" environment variable).%s' 'non-empty string' 'worker name e.g. org.example.trends' 'WORKER' $'\n'
exit 1
fi
if [ "${WORKER}" = 'org.example.trends' ];
then
printf 'Have you picked a satisfying worker name ("%s" environment variable - "%s" default value is not accepted).%s' 'WORKER' 'org.example.trends' $'\n'
exit 1
fi
if [ -z "${WORKER_OWNER_UID}" ];
then
printf 'A %s is expected as %s ("%s").%s' 'non-empty numeric' 'system user uid' 'WORKER_OWNER_UID' $'\n'
exit 1
fi
if [ -z "${WORKER_OWNER_GID}" ];
then
printf 'A %s is expected as %s ("%s").%s' 'non-empty numeric' 'system user gid' 'WORKER_OWNER_GID' $'\n'
exit 1
fi
}
function remove_running_container_and_image_in_debug_mode() {
local container_name
container_name="${1}"
if [ -z "${container_name}" ];
then
printf 'A %s is expected as %s ("%s").%s' 'non-empty string' '1st argument' 'container name' $'\n'
return 1
fi
local COMPOSE_PROJECT_NAME
local DEBUG
local WORKER_OWNER_UID
local WORKER_OWNER_GID
local WORKER
load_configuration_parameters
if [ $? -gt 1 ];
then
printf '%s.%s' 'Invalid configuration files' $'\n' 1>&2
return 1;
fi
local project_name
if [ -n "${COMPOSE_PROJECT_NAME}" ];
then
project_name="${COMPOSE_PROJECT_NAME}"
else
project_name="$(get_project_name)"
fi
cat <<- CMD
docker ps -a |
\grep "${project_name}" |
\grep "${container_name}" |
awk '{print \$1}' |
xargs -I{} docker rm -f {}
CMD
docker ps -a |
\grep "${project_name}" |
\grep "${container_name}" |
awk '{print $1}' |
xargs -I{} docker rm -f {}
if [ -n "${DEBUG}" ];
then
cat <<- CMD
docker images -a |
\grep "${project_name}" |
\grep "${container_name}" |
awk '{print \$3}' |
xargs -I{} docker rmi -f {}
CMD
docker images -a |
\grep "${project_name}" |
\grep "${container_name}" |
awk '{print $3}' |
xargs -I{} docker rmi -f {}
fi
}
function clean() {
local temporary_directory
temporary_directory="${1}"
if [ -n "${temporary_directory}" ];
then
printf 'About to revise file permissions for "%s" before clean up.%s' "${temporary_directory}" $'\n'
set_file_permissions "${temporary_directory}"
return 0
fi
remove_running_container_and_image_in_debug_mode 'app'
remove_running_container_and_image_in_debug_mode 'worker'
}
function install() {
local COMPOSE_PROJECT_NAME
local DEBUG
local WORKER_OWNER_UID
local WORKER_OWNER_GID
local WORKER
load_configuration_parameters
if [ $? -gt 1 ];
then
printf '%s.%s' 'Invalid configuration files' $'\n' 1>&2
return 1;
fi
docker compose \
--project-name="${project_name}" \
-f ./provisioning/containers/docker-compose.yaml \
-f ./provisioning/containers/docker-compose.override.yaml \
run \
--env WORKER="${WORKER}" \
--user root \
--rm \
--no-TTY \
app \
/bin/bash -c 'source /scripts/install-app-requirements.sh'
}
function get_project_name() {
if [ -z "${COMPOSE_PROJECT_NAME}" ];
then
printf 'A %s is expected as %s ("%s").%s' 'non-empty string' '"COMPOSE_PROJECT_NAME" environment variable' 'docker compose project name' $'\n'
return 1;
fi
echo "${COMPOSE_PROJECT_NAME}"
}
function get_worker_shell() {
if ! command -v jq >> /dev/null 2>&1;
then
printf 'Is %s (%s) installed?%s' 'command-line JSON processor' 'jq' $'\n'
return 1
fi
local project_name
project_name="$(get_project_name)"
docker exec -ti "$(
docker ps -a \
| \grep "${project_name}" \
| \grep 'worker' \
| awk '{print $1}'
)" bash
}
function start() {
local COMPOSE_PROJECT_NAME
local DEBUG
local WORKER
local WORKER_OWNER_UID
local WORKER_OWNER_GID
load_configuration_parameters
if [ $? -gt 1 ];
then
printf '%s.%s' 'Invalid configuration files' $'\n' 1>&2
return 1;
fi
local publishers_list_id
publishers_list_id="${LIST_ID}"
if [ -z "${publishers_list_id}" ];
then
publishers_list_id="${LIST_ID}"
fi
local date
date="${DATE}"
if [ -z "${date}" ];
then
date="$(date -I)"
fi
local from_distinct_sources
from_distinct_sources='false'
if [ -n "${FROM_DISTINCT_SOURCES_ONLY}" ];
then
from_distinct_sources='true'
fi
local project_name
project_name="$(get_project_name)"
cmd="$(
cat <<-START
docker compose \
--project-name="${project_name}" \
--file=./provisioning/containers/docker-compose.yaml \
--file=./provisioning/containers/docker-compose.override.yaml \
run \
--rm \
worker \
bash -c 'bin/trends -publishers-list-id="${publishers_list_id}" -migrate-distinct-sources-only=${from_distinct_sources} -since-date="${date}" -in-parallel=true'
START
)"
printf '%s%s' "${cmd}" $'\n' >> "./var/log/${WORKER}.log"
/bin/bash -c "${cmd}" >> "./var/log/${WORKER}.log" 2>> "./var/log/${WORKER}.error.log"
}
function stop() {
guard_against_missing_variables
remove_running_container_and_image_in_debug_mode 'worker'
}
function validate_docker_compose_configuration() {
docker compose \
-f ./provisioning/containers/docker-compose.yaml \
-f ./provisioning/containers/docker-compose.override.yaml \
config -q
}
set +Eeuo pipefail