09a5d4097527f30ff8eb5d1c1e88478560ed5727
[policy/xacml-pdp.git] / packages / policy-xacmlpdp-tarball / src / main / resources / mysql / bin / create-guard-table.sh
1 #!/usr/bin/env sh
2 #
3 # ============LICENSE_START=======================================================
4 #  Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
5 #  Modifications Copyright (C) 2020 Bell Canada. All rights reserved.
6 #  Modifications Copyright (C) 2022 Nordix Foundation. 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 #
20 # SPDX-License-Identifier: Apache-2.0
21 # ============LICENSE_END=========================================================
22 #
23 SQL_FILE="${POLICY_HOME}/mysql/sql/createguardtable.sql"
24
25 # Remove escape backslashes if present and save output in temp file
26 sed 's/\\//g' "${POLICY_HOME}"/apps/guard/xacml.properties > /tmp/temp.xacml.properties
27
28 # Remove temp file
29 if [ ! -f /tmp/temp.xacml.properties ]; then
30     echo "Temporary guard xacml properties file not found!"
31     exit 1
32 fi
33
34 # Extract Maria DB Credential properties from xacml.properties file
35 DB_HOSTNAME=$(awk -F[/:] '$1 == "javax.persistence.jdbc.url=jdbc" { print $3 $5 }' /tmp/temp.xacml.properties)
36 DB_USERNAME=$(awk -F= '$1 == "javax.persistence.jdbc.user" { print $2 }' /tmp/temp.xacml.properties)
37 DB_PASSWORD=$(awk -F= '$1 == "javax.persistence.jdbc.password" { print $2 }' /tmp/temp.xacml.properties)
38
39 # Remove temp file
40 rm /tmp/temp.xacml.properties
41
42 if [ -z "$DB_HOSTNAME" ]; then
43     echo "No db host provided in guard xacml.properties."
44     exit 2
45 fi
46
47 if [ -z "$DB_USERNAME" ]; then
48     echo "No db username provided in guard xacml.properties."
49     exit 2
50 fi
51
52 if [ -z "$DB_PASSWORD" ]; then
53     echo "No db password provided in guard xacml.properties."
54     exit 2
55 fi
56
57 # Execute sql command using sql file to create table
58 mysql -u${DB_USERNAME} -p${DB_PASSWORD} -h${DB_HOSTNAME} < "${SQL_FILE}"