Merge "[DCAE] Dashboard container revision"
[oom.git] / kubernetes / common / cert-wrapper / resources / import-custom-certs.sh
1 #!/bin/bash
2 {{/*
3
4 # Copyright © 2020 Bell Canada
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 */}}
18
19 CERTS_DIR=${CERTS_DIR:-/certs}
20 WORK_DIR=${WORK_DIR:-/updatedTruststore}
21 ONAP_TRUSTSTORE=${ONAP_TRUSTSTORE:-truststoreONAPall.jks}
22 JRE_TRUSTSTORE=${JRE_TRUSTSTORE:-$JAVA_HOME/lib/security/cacerts}
23 TRUSTSTORE_OUTPUT_FILENAME=${TRUSTSTORE_OUTPUT_FILENAME:-truststore.jks}
24
25 mkdir -p $WORK_DIR
26
27 # Decrypt and move relevant files to WORK_DIR
28 for f in $CERTS_DIR/*; do
29   export canonical_name_nob64=$(echo $f | sed 's/.*\/\([^\/]*\)/\1/')
30   export canonical_name_b64=$(echo $f | sed 's/.*\/\([^\/]*\)\(\.b64\)/\1/')
31   if [ "$AAF_ENABLED" = "false" ] && [ "$canonical_name_b64" = "$ONAP_TRUSTSTORE" ]; then
32     # Dont use onap truststore when aaf is disabled
33     continue
34   fi
35   if [ "$AAF_ENABLED" = "false" ] && [ "$canonical_name_nob64" = "$ONAP_TRUSTSTORE" ]; then
36     # Dont use onap truststore when aaf is disabled
37     continue
38   fi
39   if [ ${f: -3} = ".sh" ]; then
40     continue
41   fi
42   if [ ${f: -4} = ".b64" ]
43     then
44       base64 -d $f > $WORK_DIR/`basename $f .b64`
45     else
46       cp $f $WORK_DIR/.
47   fi
48 done
49
50 # Prepare truststore output file
51 if [ "$AAF_ENABLED" = "true" ]
52   then
53     mv $WORK_DIR/$ONAP_TRUSTSTORE $WORK_DIR/$TRUSTSTORE_OUTPUT_FILENAME
54   else
55     echo "AAF is disabled, using JRE truststore"
56     cp $JRE_TRUSTSTORE $WORK_DIR/$TRUSTSTORE_OUTPUT_FILENAME
57 fi
58
59 # Import Custom Certificates
60 for f in $WORK_DIR/*; do
61   if [ ${f: -4} = ".pem" ]; then
62     echo "importing certificate: $f"
63     keytool -import -file $f -alias `basename $f` -keystore $WORK_DIR/$TRUSTSTORE_OUTPUT_FILENAME -storepass $TRUSTSTORE_PASSWORD -noprompt
64     if [ $? != 0 ]; then
65       echo "failed importing certificate: $f"
66       exit 1
67     fi
68   fi
69 done