d6d42e0ee6acf6d37936f64daaa21e4b4846e8cf
[policy/xacml-pdp.git] / packages / policy-xacmlpdp-docker / src / main / docker / policy-pdpx-pg.sh
1 #!/usr/bin/env sh
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2022 Nordix Foundation.
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 # SPDX-License-Identifier: Apache-2.0
19 # ============LICENSE_END=========================================================
20 #
21
22 JAVA_HOME=/usr/lib/jvm/java-11-openjdk/
23 KEYSTORE="${KEYSTORE:-$POLICY_HOME/etc/ssl/policy-keystore}"
24 TRUSTSTORE="${TRUSTSTORE:-$POLICY_HOME/etc/ssl/policy-truststore}"
25 KEYSTORE_PASSWD="${KEYSTORE_PASSWD:-Pol1cy_0nap}"
26 TRUSTSTORE_PASSWD="${TRUSTSTORE_PASSWD:-Pol1cy_0nap}"
27
28 if [ "$#" -ge 1 ]; then
29     CONFIG_FILE=$1
30 else
31     CONFIG_FILE=${CONFIG_FILE}
32 fi
33
34 if [ -z "$CONFIG_FILE" ]; then
35     CONFIG_FILE="${POLICY_HOME}/etc/defaultConfig.json"
36 fi
37
38 if [ -f "${POLICY_HOME}/etc/mounted/policy-truststore" ]; then
39     echo "overriding policy-truststore"
40     cp -f "${POLICY_HOME}"/etc/mounted/policy-truststore "${TRUSTSTORE}"
41 fi
42
43 if [ -f "${POLICY_HOME}/etc/mounted/policy-keystore" ]; then
44     echo "overriding policy-keystore"
45     cp -f "${POLICY_HOME}"/etc/mounted/policy-keystore "${KEYSTORE}"
46 fi
47
48 if [ -f "${POLICY_HOME}/etc/mounted/xacml.properties" ]; then
49     echo "overriding xacml.properties in guards application"
50     cp -f "${POLICY_HOME}"/etc/mounted/xacml-pg.properties "${POLICY_HOME}"/apps/guard/
51 fi
52
53 if [ -f "${POLICY_HOME}/etc/mounted/logback.xml" ]; then
54     echo "overriding logback.xml"
55     cp -f "${POLICY_HOME}"/etc/mounted/logback.xml "${POLICY_HOME}"/etc/
56 fi
57
58 # Create operationshistory table
59 "${POLICY_HOME}"/postgres/bin/create-guard-table-pg.sh
60
61 echo "Policy Xacml PDP config file: $CONFIG_FILE"
62
63 $JAVA_HOME/bin/java -cp "${POLICY_HOME}/etc:${POLICY_HOME}/lib/*" -Dlogback.configurationFile="${POLICY_HOME}/etc/logback.xml" -Djavax.net.ssl.keyStore="${KEYSTORE}" -Djavax.net.ssl.keyStorePassword="${KEYSTORE_PASSWD}" -Djavax.net.ssl.trustStore="${TRUSTSTORE}" -Djavax.net.ssl.trustStorePassword="${TRUSTSTORE_PASSWD}" org.onap.policy.pdpx.main.startstop.Main -c "${CONFIG_FILE}"