Restructure project for 2 images
[dmaap/buscontroller.git] / dbc-client / misc / dbc-client
1 #!/bin/sh
2 #
3 # ============LICENSE_START==========================================
4 # org.onap.dmaap
5 # ===================================================================
6 # Copyright © 2019 AT&T Intellectual Property. All rights reserved.
7 # ===================================================================
8 # Licensed under the Apache License, Version 2.0 (the "License");
9 # you may not use this file except in compliance with the License.
10 # You may obtain a copy of the License at
11 #
12 #        http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS,
16 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 # See the License for the specific language governing permissions and
18 # limitations under the License.
19 # ============LICENSE_END============================================
20 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
21 #
22 #
23
24 umask 0022
25 TZ=GMT0
26 COMPONENT=dbc-client
27 APP_ROOT=/opt/app/$COMPONENT
28 USER=root
29 export TZ
30 PATH=/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin
31 export PATH
32 CONFIGMAP_ROOT=${CONFIGMAP_ROOT:-/opt/app/config}
33 CONTAINER_CONFIG=$CONFIGMAP_ROOT/conf/dbc-client.env
34
35
36
37
38 config() {
39         echo "ENTER config"
40         set -x
41         if [ ! -d $APP_ROOT ]
42         then
43                 echo "Expected app root directory $APP_ROOT does not exist"
44                 exit 1
45         fi
46         cd $APP_ROOT
47         find . -type f -exec ls -l {} \;
48         find $CONFIGMAP_ROOT -type f -exec ls -l {} \;
49         if [ !  -f $CONTAINER_CONFIG ]
50         then
51                 echo "WARNING: Expected env file $CONTAINER_CONFIG not found. Default behaviors in effect"
52         else
53                 source $CONTAINER_CONFIG
54         fi
55
56         if [ "$DMAAPBC_WAIT_TO_EXIT" != "Y" ]
57         then
58                 echo "Creating $APP_ROOT/ok_to_exit so no waiting..."
59                 > $APP_ROOT/ok_to_exit
60         else
61                 echo "Not creating $APP_ROOT/ok_to_exit"
62         fi      
63         
64         if [ ! -f $APP_ROOT/misc/cert-client-init.sh ]
65         then
66                 echo "Did not find $APP_ROOT/misc/cert-client-init.sh to append to truststore"
67                 exit 1
68         fi
69         $APP_ROOT/misc/cert-client-init.sh
70
71         set +x
72 }
73
74
75 init() {
76         echo "ENTER init"
77         if [ ! -d $CONFIGMAP_ROOT ]
78         then
79                 echo $CONFIGMAP_ROOT does not exist
80                 return
81         fi
82
83         #loop on get /dmaap until we get a good response to indicate other provisioning can continue
84         rc=999
85         while [ $rc != "200" ]
86         do
87                 sleep 10
88                 rc=`curl -s -o /dev/null -I -w "%{http_code}" -X GET -H "Content-Type: application/json" http://dmaap-bc:8080/webapi/dmaap`
89                 echo "get dmaap response=${rc}"
90         done
91 }
92 doprov() {
93
94         cd $CONFIGMAP_ROOT
95         pwd
96         # order is important in this next list
97         for uri in dmaap dcaeLocations mr_clusters topics feeds mr_clients dr_pubs dr_subs
98         do
99                 if [ -d ${uri} ]
100                 then
101                         for j in `ls ${uri}/*.json`
102                         do
103                                 echo "POST $j to $uri"
104                                 rc=`curl -v -X POST -w "%{http_code}" -H "Content-Type: application/json" -d @${j} http://dmaap-bc:8080/webapi/${uri}`
105                                 echo "response=$rc"
106                         done
107                 fi
108         done
109 }
110
111 set -x
112 config
113 init
114 doprov
115
116 echo "Check $APP_ROOT/ok_to_exit"
117 while [ ! -f $APP_ROOT/ok_to_exit ]
118 do
119         echo "$APP_ROOT/ok_to_exit does not exist.  Sticking around for debugging..."
120         sleep 10
121 done
122 exit 0