-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.sh
executable file
·160 lines (129 loc) · 3.78 KB
/
cli.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
#!/bin/bash
##
# @license MPL-2.0
# @author William Desportes <[email protected]>
##
set -e
FORMAT_VERSION='0.1.0'
LOG_LEVEL=3
# 0 Emergency: system is unusable
# 1 Alert: action must be taken immediately
# 2 Critical: critical conditions
# 3 Error: error conditions
# 4 Warning: warning conditions
# 5 Notice: normal but significant condition
# 6 Informational: informational messages
# 7 Debug: debug-level messages
# -- CLI handling -- #
# Source: https://stackoverflow.com/a/46793269/5155484 and https://stackoverflow.com/a/28466267/5155484
optspec="hv-:"
while getopts "$optspec" OPTCHAR; do
if [ "$OPTCHAR" = "-" ]; then # long option: reformulate OPT and OPTARG
OPTCHAR="${OPTARG%%=*}" # extract long option name
OPTARG="${OPTARG#$OPT}" # extract long option argument (may be empty)
OPTARG="${OPTARG#=}" # if long option argument, remove assigning `=`
fi
OPTARG=${OPTARG#*=}
# echo "OPTARG: ${OPTARG[*]}"
# echo "OPTIND: ${OPTIND[*]}"
# echo "OPTCHAR: ${OPTCHAR}"
case "${OPTCHAR}" in
h|help)
SHOW_HELP=1
;;
v|version)
SHOW_VERSION=1
;;
vcs-url)
VCS_URL="${OPTARG}"
;;
vcs-revision)
VCS_REVISION="${OPTARG}"
;;
n|tag-name)
TAG_NAME="${OPTARG}"
;;
source-url)
SOURCE_URL="${OPTARG}"
;;
log-level)
LOG_LEVEL=${OPTARG}
;;
*)
if [ "$OPTERR" != 1 ] || [ "${optspec:0:1}" = ":" ]; then
echo "Non-option argument: '-${OPTARG}'" >&2
fi
;;
esac
done
shift $((OPTIND-1)) # remove parsed options and args from $@ list
if [ ! -z "${SHOW_HELP}" ]; then
echo 'Usage:'
echo 'cli.sh --vcs-url=https://github.com/manifest-software/example --vcs-revision=11e7540a303f6c368b408327396b0f948d48a79a'
echo 'POSIX options: long options:'
echo ' -h --help To have some help'
echo ' --vcs-url= The Vcs-Url field'
echo ' --vcs-revision= The Vcs-Revision field'
echo ' --source-url The Source-Url field'
echo ' --log-level The RFC 5424 (https://tools.ietf.org/html/rfc5424#page-11) log levels, 7 is for debug'
exit 0;
fi
if [ ! -z "${SHOW_VERSION}" ]; then
printf '%s' "${FORMAT_VERSION}"
exit 0;
fi
# -- Functions -- #
checkBinary () {
if ! command -v ${1} &> /dev/null
then
quitError "${1} could not be found"
fi
}
quitError () {
if [ ${LOG_LEVEL} -gt 2 ]; then
echo -e "\033[0;31m[ERROR] ${1}\033[0m" >&2
fi
exit ${2:-1}
}
logDebug () {
if [ ${LOG_LEVEL} -eq 7 ]; then
echo -e "\033[1;35m[DEBUG] ${1}\033[0m" >&2
fi
}
logInfo () {
if [ ${LOG_LEVEL} -qt 4 ]; then
echo -e "\033[1;35m[INFO] ${1}\033[0m" >&2
fi
}
makeField() {
local fieldName="$1"
local fieldValue="$2"
if [ ! -z "${fieldName}" ] && [ ! -z "${fieldValue}" ]; then
printf '%s: %s\n' "${fieldName}" "${fieldValue}"
fi
}
outputVcs() {
makeField 'Vcs-Url' "${VCS_URL}"
makeField 'Vcs-Revision' "${VCS_REVISION}"
}
outputSource() {
makeField 'Source-Url' "${SOURCE_URL}"
}
initGlobals() {
ROOT_DIR="${PWD}"
OUTPUT="Format-version: ${FORMAT_VERSION}"
OUTPUT+='\n'
}
checkBinaries () {
checkBinary 'printf'
}
# -- The code -- #
logDebug 'Starting...'
checkBinaries
logDebug 'Init...'
initGlobals
logDebug 'Make output...'
OUTPUT+="$(outputVcs)"
OUTPUT+="$(outputSource)"
logDebug 'Finished.'
echo -e "${OUTPUT}"