Update release scripts to support major releases
[policy/parent.git] / integration / src / main / scripts / release / resolveRefs.sh
1 #!/bin/bash
2
3 #
4 # ============LICENSE_START================================================
5 # ONAP
6 # =========================================================================
7 # Copyright (C) 2023 Nordix Foundation.
8 # =========================================================================
9 # Licensed under the Apache License, Version 2.0 (the "License");
10 # you may not use this file except in compliance with the License.
11 # You may obtain a copy of the License at
12 #
13 #      http://www.apache.org/licenses/LICENSE-2.0
14 #
15 # Unless required by applicable law or agreed to in writing, software
16 # distributed under the License is distributed on an "AS IS" BASIS,
17 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 # See the License for the specific language governing permissions and
19 # limitations under the License.
20 # ============LICENSE_END==================================================
21 #
22
23 set -e
24
25 SCRIPT_NAME=$(basename "$0")
26 repo_location="./"
27 release_data_file="./pf_release_data.csv"
28
29 # Use the bash internal OSTYPE variable to check for MacOS
30 if [[ "$OSTYPE" == "darwin"* ]]
31 then
32     SED="gsed"
33 else
34     SED="sed"
35 fi
36
37 declare -a pf_repos=(
38         "policy/parent"
39         "policy/docker"
40         "policy/common"
41         "policy/models"
42         "policy/api"
43         "policy/pap"
44         "policy/drools-pdp"
45         "policy/apex-pdp"
46         "policy/xacml-pdp"
47         "policy/distribution"
48         "policy/gui"
49         "policy/clamp"
50         "policy/drools-applications"
51 )
52
53 usage()
54 {
55     echo ""
56     echo "$SCRIPT_NAME - this script resolves references with the content of the data file when they get misaligned"
57     echo ""
58     echo "       usage:  $SCRIPT_NAME [-options]"
59     echo ""
60     echo "       options"
61     echo "         -h           - this help message"
62     echo "         -d data_file - the policy release data file to use, defaults to '$release_data_file'"
63     echo "         -l location  - the location of the policy framework repos on the file system,"
64     echo "                        defaults to '$repo_location'"
65     echo "         -i issue-id  - issue ID in the format POLICY-nnnn"
66     echo ""
67     echo " examples:"
68     echo "  $SCRIPT_NAME -l /home/user/onap -d /home/user/data/pf_release_data.csv -i POLICY-1234"
69     echo "    resolves references with the content of the data file"
70     exit 255;
71 }
72
73 major_release=false
74
75 while getopts "hd:l:i:" opt
76 do
77     case $opt in
78     h)
79         usage
80         ;;
81     d)
82         release_data_file=$OPTARG
83         ;;
84     l)
85         repo_location=$OPTARG
86         ;;
87     i)
88         issue_id=$OPTARG
89         ;;
90     \?)
91         usage
92         exit 1
93         ;;
94     esac
95 done
96
97 if [ $OPTIND -eq 1 ]
98 then
99     echo "no arguments were specified"
100     usage
101 fi
102
103 if [[ -z "$repo_location" ]]
104 then
105     echo "policy repo location not specified on -l flag"
106     exit 1
107 fi
108
109 if ! [ -d "$repo_location" ]
110 then
111     echo "policy repo location '$repo_location' not found"
112     exit 1
113 fi
114
115 if [[ -z "$release_data_file" ]]
116 then
117     echo "policy release data file not specified on -d flag"
118     exit 1
119 fi
120
121 if ! [ -f "$release_data_file" ]
122 then
123     echo "policy release data file '$release_data_file' not found"
124     exit 1
125 fi
126
127 if [ -z "$issue_id" ]
128 then
129     echo "issue_id not specified on -i flag"
130     exit 1
131 fi
132
133 if ! echo "$issue_id" | grep -Eq '^POLICY-[0-9]*$'
134 then
135   echo "issue ID is invalid, it should be of form 'POLICY-nnnn'"
136   exit 1
137 fi
138
139 for specified_repo in "${pf_repos[@]}"
140 do
141     # shellcheck disable=SC2034
142     # shellcheck disable=SC2046
143     read -r repo \
144             latest_released_tag \
145             latest_snapshot_tag \
146             changed_files \
147             docker_images \
148         <<< $(grep "$specified_repo" "$release_data_file" | tr ',' ' ' )
149
150     if [ ! "$repo" = "$specified_repo" ]
151     then
152         echo "repo '$specified_repo' not found in file 'pf_release_data.csv'"
153         continue
154     fi
155
156     updateRefs.sh -pcmokxs -d "$release_data_file" -l "$repo_location" -r "$repo"
157
158     generateCommit.sh \
159        -l "$repo_location" \
160         -r "$repo" \
161         -i "$issue_id" \
162         -e "Set all cross references of $repo" \
163         -m "$repo updated with correct cross references"
164
165     echo "commit to set snapshot version and/or references of repo $repo generated"
166 done
167