forked from johnfonner/abaco-cli
-
Notifications
You must be signed in to change notification settings - Fork 3
/
abaco-nonces-create.sh
92 lines (77 loc) · 1.95 KB
/
abaco-nonces-create.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
#!/bin/bash
THIS=$(basename $0)
THIS=${THIS%.sh}
THIS=${THIS//[-]/ }
HELP="
Usage: ${THIS} [OPTION] [ACTORID]
Creates a nonce for an actor. Default maximum uses is -1
(unlimited). Access levels are READ, EXECUTE, and UPDATE.
Options:
-h show help message
-z oauth access token
-d short nonce description
-m maximum uses
-l access level
-v verbose output
-V very verbose output
"
#function usage() { echo "$0 usage:" && grep " .)\ #" $0; exit 0; }
function usage() {
echo "$HELP"
exit 0
}
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "$DIR/abaco-common.sh"
tok=
maxuses=-1
level=EXECUTE
description=
while getopts ":hl:m:z:d:Vv" o; do
case "${o}" in
z) # custom token
tok=${OPTARG}
;;
m) # maxUses
maxuses=${OPTARG}
;;
l) # access level
level=${OPTARG}
;;
d) # optional description
description=${OPTARG}
;;
v) # verbose
verbose="true"
;;
V) # verbose
very_verbose="true"
;;
h | *) # print help text
usage
;;
esac
done
shift $((OPTIND - 1))
if [ ! -z "$tok" ]; then TOKEN=$tok; fi
if [[ "$very_verbose" == "true" ]]; then
verbose="true"
fi
actor_id="$1"
if [ -z "${actor_id}" ]; then
echo "Please provide an actor id."
usage
fi
data="{\"maxUses\":\"${maxuses}\", \"level\":\"${level}\", \"description\":\"${description}\"}"
curlCommand="curl -XPOST -sk -H \"Authorization: Bearer $TOKEN\" -H \"Content-Type: application/json\" --data '$data' '$BASE_URL/actors/v2/${actor_id}/nonces'"
function filter() {
# eval $@ | jq -r '.result | .[] | [.name, .id, .status] | @tsv' | column -t
eval $@ | jq -r '.result | [.id, .maxUses, .remainingUses, .level] | "\(.[0]) \(.[1]) \(.[2]) \(.[3])"' | column -t
}
if [[ "$very_verbose" == "true" ]]; then
echo "Calling $curlCommand"
fi
if [[ "$verbose" == "true" ]]; then
eval $curlCommand
else
filter $curlCommand
fi