Update traversal from AJSC 2 to Spring Boot
[aai/traversal.git] / aai-traversal / src / main / scripts / deleteNamedQuery.sh
1 #!/bin/ksh
2 #
3 # ============LICENSE_START=======================================================
4 # org.onap.aai
5 # ================================================================================
6 # Copyright © 2017 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 #
21 # ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 #
23
24 #
25 # This script deletes the named query in resources/etc/scriptdata/named-query-json directory
26 #
27
28 PROGNAME=$(basename $0)
29 OUTFILE=/opt/app/aai-traversal/logs/misc/${PROGNAME}.log.$(date +\%Y-\%m-\%d)
30 #OUTFILE=/c/temp/${PROGNAME}.log.$(date +\%Y-\%m-\%d)
31
32 TS=$(date "+%Y-%m-%d %H:%M:%S")
33
34 CHECK_USER="aaiadmin"
35 userid=$( id | cut -f2 -d"(" | cut -f1 -d")" )
36 if [ "${userid}" != $CHECK_USER ]; then
37     echo "You must be  $CHECK_USER to run $0. The id used $userid."
38     exit 1
39 fi 
40
41 error_exit () {
42         echo "${PROGNAME}: failed for ${1:-"Unknown error"} on cmd $2" 1>&2
43         echo "${PROGNAME}: failed for ${1:-"Unknown error"} on cmd $2" >> $OUTFILE
44 #       exit ${2:-"1"}
45 }
46
47 j=0
48 for filepath in `ls /opt/app/aai-traversal/resources/etc/scriptdata/named-query-json/*.json|sort -f`
49 #for filepath in `ls /c/sources/aai/aaigitnew/resources-local/etc/scriptdata/named-query-json/*.json|sort -f`
50 do
51 j=$(expr "$j" + 1)
52 filename=$(basename $filepath)
53 echo "Begin deleteTool for named-query $filename" | tee -a $OUTFILE
54 vers=`grep named-query-uuid $filepath|cut -d':' -f2|cut -d'"' -f2`
55 resource=service-design-and-creation/named-queries/named-query/$vers
56 echo "y" | /opt/app/aai-traversal/scripts/deleteTool.sh $resource >> $OUTFILE 2>&1 || error_exit "$resource $filepath" $j
57 echo "End deleteTool for named-query $filename" | tee -a $OUTFILE
58 done
59
60 echo "$PROGNAME completed ${TS}" | tee -a $OUTFILE
61 echo "See output and error file: $OUTFILE"
62
63 exit 0