-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmanagement
executable file
·45 lines (35 loc) · 1.06 KB
/
management
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
#!/usr/bin/env bash
set -o errexit
source ./settings.sh # configuration
source ./localutils.sh # getservicekey getval gettoken
source ./management.sh # management API functions
main() {
local output=silent # or verbose
local command=$1
local functions
functions=$(management_functions)
# Either we're being asked to list the functions (for bash completion)
# or a function is being invoked.
case $command in
completion | "")
echo "$functions"
;;
*)
if [[ ! "$functions" =~ $command ]]; then
err Command \""$command"\" is not recognised
exit 1
fi
shift
# Retrieve service key and parse out relevant sections
sk=$(getservicekey "$instance" "$servicekey")
management=$(getval "$sk" "(.credentials//.).management[0]")
# Determine API call details for MANAGEMENT incl OAuth 2.0 token
uri=$(getval "$management" .uri)
oauth=$(getval "$management" .oa2)
token=$(gettoken "$oauth")
# Now we can run the requested command
$command "$@"
;;
esac
}
main "$@"