-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusage-trap.sh
executable file
·129 lines (87 loc) · 2.78 KB
/
usage-trap.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
#!/usr/bin/env bash
set -euo pipefail
# Include all common utils first, such as logging
source "./logging.sh"
# ####################
# GLOBAL CONSTANTS
# ####################
# Allowed commands must exactly match terraform commands
declare -r allowed_commands=$(cat <<- 'ALLOWEDCMDS'
foo
bar
baz
quxx
ALLOWEDCMDS
)
# ####################
# SCRIPT HELP
# ####################
usage() {
cat <<- EOH
NAME
${0} - automate commands over the given target + environment combination.
SYNOPSIS
\$ ${0} [command] [target] [environment]
DESCRIPTION
Something meaningful. State prerequisites, pre-checks.
Command is one of : $(echo $allowed_commands | sed 's/\s/, /g')
EXAMPLES
\$ ${0} -h|--help
For help
\$ ${0} foo targetName sandbox
Execute "foo" command for all targets in the "sandbox" environment.
EOH
}
# ####################
# SCRIPT INPUTS (MANDATORY)
# ####################
trap usage EXIT SIGINT SIGTERM # ensure usage auto-prints if required args are missing
if [[ -z ${1:-} || ${1} == "-h" || ${1} == "--help" ]]
then exit
fi
declare -r command="${1:?$(log_error Required argument missing: 'command'.)}"
declare -r target="${2:?$(log_error Required argument missing: 'target'.)}"
declare -r environment="${3:?$(log_error Required argument missing: 'environment'.)}"
trap - EXIT SIGINT SIGTERM # unset trap
# ####################
# CONSTRUCTED GLOBAL CONSTANTS
# ####################
# Constructed global constants
declare -r target_dir="path/to/${target}"
declare -r target_file="$target_dir/example.txt"
declare -r ROOT_DIR="$PWD"
# ####################
# PRE-RUN CHECKS and FAILSAFES
# ####################
trap usage EXIT # ensure usage auto-prints if we preemptively fail the script
# FAIL if unmet dependencies
ensure_dependencies # comes from ./bin/common_util_functions.sh
# FAIL if bad/disallowed command is provided
if [[ -z $(echo "$allowed_commands" | grep --regexp="^${command}\$") ]]
then log_fatal_die "Unrecognised command \"$command\". See usage."
fi
# FAIL if conventional infra list file is absent
if ! [[ -f "./$target_file" ]]
then log_fatal_die "Cannot find ./${target_file} for \"$target\" target."
fi
# FAIL destructive command invocations, if environment is production-like
if [[ ${command} == @(baz|quxx) ]] && [[ ${environment} == @(prod*|sandbox) ]]
then log_fatal_die "You are attempting to run a destructive command \"${command}\" against the production environment \"${environment}\"."
fi
trap - EXIT # release usage-printing trap we took previously on EXIT
# ####################
# LOGIC
# ####################
func1() {
# do something
}
func2() {
# do something else
}
func3() {
# do something even better
}
# ####################
# EXECUTE!
# ####################
# Scary stateful stuff goes here