Jim Hahn | 8f8a6d8 | 2021-04-07 09:32:31 -0400 | [diff] [blame^] | 1 | #!/usr/bin/env sh |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 2 | |
| 3 | ### |
| 4 | # ============LICENSE_START======================================================= |
| 5 | # policy-management |
| 6 | # ================================================================================ |
Jim Hahn | 8f8a6d8 | 2021-04-07 09:32:31 -0400 | [diff] [blame^] | 7 | # Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 8 | # ================================================================================ |
| 9 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 10 | # you may not use this file except in compliance with the License. |
| 11 | # You may obtain a copy of the License at |
Taka Cho | 8583b51 | 2020-11-12 17:48:30 -0500 | [diff] [blame] | 12 | # |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 13 | # http://www.apache.org/licenses/LICENSE-2.0 |
Taka Cho | 8583b51 | 2020-11-12 17:48:30 -0500 | [diff] [blame] | 14 | # |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 15 | # Unless required by applicable law or agreed to in writing, software |
| 16 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 17 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 18 | # See the License for the specific language governing permissions and |
| 19 | # limitations under the License. |
| 20 | # ============LICENSE_END========================================================= |
| 21 | ### |
| 22 | |
| 23 | function usage() { |
Taka Cho | 8583b51 | 2020-11-12 17:48:30 -0500 | [diff] [blame] | 24 | echo -n "Usage: $(basename $0) " |
| 25 | echo -n "[(-d|--debug)] " |
| 26 | echo -n "(-h|--host) <bus-host> " |
| 27 | echo -n "[(-p|--port) <bus-port>] " |
| 28 | echo "(-e|--email) <email>" |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | BUS_PORT=3904 |
| 32 | |
| 33 | # command line options parsing |
Taka Cho | 8583b51 | 2020-11-12 17:48:30 -0500 | [diff] [blame] | 34 | until [ -z "$1" ]; do |
| 35 | case $1 in |
| 36 | -d|--debug) set -x |
| 37 | ;; |
| 38 | -h|--host) shift |
| 39 | BUS_HOST=$1 |
| 40 | ;; |
| 41 | -p|--port) shift |
| 42 | BUS_PORT=$1 |
| 43 | ;; |
| 44 | -e|--email) shift |
| 45 | EMAIL=$1 |
| 46 | ;; |
| 47 | *) usage |
| 48 | exit 1 |
| 49 | ;; |
| 50 | esac |
| 51 | shift |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 52 | done |
| 53 | |
Taka Cho | 8583b51 | 2020-11-12 17:48:30 -0500 | [diff] [blame] | 54 | if [ -z "${BUS_HOST}" ]; then |
| 55 | echo "An UEB/DMAAP server must be provided." |
| 56 | echo |
| 57 | usage |
| 58 | exit 1 |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 59 | fi |
| 60 | |
Taka Cho | 8583b51 | 2020-11-12 17:48:30 -0500 | [diff] [blame] | 61 | if [ -z "${EMAIL}" ]; then |
| 62 | echo "An email address must be provided." |
| 63 | usage |
| 64 | exit 2 |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 65 | fi |
| 66 | |
Taka Cho | 8583b51 | 2020-11-12 17:48:30 -0500 | [diff] [blame] | 67 | REQUEST_API_KEY_BODY=$(cat <<EOF |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 68 | { |
| 69 | "email": "${EMAIL}", |
| 70 | "description": "Generated by PDP-D $(hostname -f)" |
| 71 | } |
| 72 | EOF |
Taka Cho | 8583b51 | 2020-11-12 17:48:30 -0500 | [diff] [blame] | 73 | ) |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 74 | |
| 75 | unset http_proxy |
| 76 | curl -s -X POST --data "${REQUEST_API_KEY_BODY}" --header "Content-Type: application/json" http://${BUS_HOST}:${BUS_PORT}/v1/apiKeys/create |