blob: 7870265e50c68a098f0ea95e1b4663b307cfbfa7 [file] [log] [blame]
Jim Hahn8f8a6d82021-04-07 09:32:31 -04001#!/usr/bin/env sh
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05002
3###
4# ============LICENSE_START=======================================================
5# policy-management
6# ================================================================================
Jim Hahn8f8a6d82021-04-07 09:32:31 -04007# Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved.
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05008# ================================================================================
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 Cho8583b512020-11-12 17:48:30 -050012#
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050013# http://www.apache.org/licenses/LICENSE-2.0
Taka Cho8583b512020-11-12 17:48:30 -050014#
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050015# 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
23function usage() {
Taka Cho8583b512020-11-12 17:48:30 -050024 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 Dragosh0e16acf2017-02-14 19:45:48 -050029}
30
31BUS_PORT=3904
32
33# command line options parsing
Taka Cho8583b512020-11-12 17:48:30 -050034until [ -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 Dragosh0e16acf2017-02-14 19:45:48 -050052done
53
Taka Cho8583b512020-11-12 17:48:30 -050054if [ -z "${BUS_HOST}" ]; then
55 echo "An UEB/DMAAP server must be provided."
56 echo
57 usage
58 exit 1
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050059fi
60
Taka Cho8583b512020-11-12 17:48:30 -050061if [ -z "${EMAIL}" ]; then
62 echo "An email address must be provided."
63 usage
64 exit 2
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050065fi
66
Taka Cho8583b512020-11-12 17:48:30 -050067REQUEST_API_KEY_BODY=$(cat <<EOF
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050068{
69 "email": "${EMAIL}",
70 "description": "Generated by PDP-D $(hostname -f)"
71}
72EOF
Taka Cho8583b512020-11-12 17:48:30 -050073)
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050074
75unset http_proxy
76curl -s -X POST --data "${REQUEST_API_KEY_BODY}" --header "Content-Type: application/json" http://${BUS_HOST}:${BUS_PORT}/v1/apiKeys/create