forked from puppetlabs/ticketmatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pa_matchbatch.sh
executable file
·354 lines (302 loc) · 9.83 KB
/
pa_matchbatch.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
#!/usr/bin/env bash
# vi: set noexpandtab:
set -e
unset CDPATH
# See README.md for arguments and available environment variables.
# where to find the agent
REPO=${REPO:-puppet-agent}
puppet_agent_repo="[email protected]:puppetlabs/${REPO}.git"
PUPPET_AGENT_URL=${PUPPET_AGENT_URL:-${puppet_agent_repo}}
PUPPET_AGENT_DIR=${PUPPET_AGENT_DIR:-${REPO}}
# where to find the ticketmatch.rb script
TICKETMATCH_PATH=${TICKETMATCH_PATH:-$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )}
# where origin actually is
FETCH_REMOTE=${FETCH_REMOTE:-origin}
# where version overrides are specified
overridesFile="/tmp/version_overrides.txt"
OVERRIDE_PATH=$(realpath ${OVERRIDE_PATH:-${overridesFile}})
# read in the auth token
AUTH_TOKEN_ARG="-a ${JIRA_AUTH_TOKEN}"
echo_bold () {
echo "$(tput bold)${1}$(tput sgr0)"
}
print_divider () {
echo '<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>'
echo
}
# shorthand
pushd() {
builtin pushd "$@" > /dev/null
}
popd() {
builtin popd "$@" > /dev/null
}
# strips the "-private" part from a repo
# name, useful for private forks
stripPrivateSuffix() {
echo -n ${1} | sed 's/-private$//'
}
# parses the repo name from a given git URL
parseRepoName() {
basename ${1} .git
}
# checks if an array contains the given element
containsElement() {
local array="${1}"
local element="${2}"
for e in ${array}; do
if [[ "${e}" == "${element}" ]]; then
return 0
fi
done
return 1
}
# get rev hashes in the form [to_rev]|[url]
getComponentRevMap() {
# handle pxp-agent repo separately
# pxp-agent-vanagon is only used in puppet-agent 7 or greater
if [[ ! -d pxp-agent-vanagon ]] && [[ $(sed -ne "s/\([0-9]*\)\.[0-9]*\.[0-9]*/\1/p" ${PUPPET_AGENT_DIR}/VERSION) -ge 7 ]];
then
local pxp_agent_version=$(ruby -rjson -e'j = JSON.parse(STDIN.read); printf(j["version"])' < ${PUPPET_AGENT_DIR}/configs/components/pxp-agent.json)
git clone --quiet [email protected]:puppetlabs/pxp-agent-vanagon.git
pushd pxp-agent-vanagon
git fetch --all --quiet
git checkout --quiet ${pxp_agent_version}
for componentName in $(for componentFile in $(grep -lv refs/tags configs/components/*.json); do grep -l puppetlabs/ ${componentFile}; done); do
ruby -rjson -e'j = JSON.parse(STDIN.read); printf(" %s|%s", j["ref"], j["url"])' < ${componentName}
done
popd
fi
pushd ${PUPPET_AGENT_DIR}
# looking for components not pinned to a 'refs/tags' element, and of those, filtering out (keeping) the ones owned by puppetlabs
for componentName in $(for componentFile in $(grep -lv refs/tags configs/components/*.json); do grep -l puppetlabs/ ${componentFile}; done); do
ruby -rjson -e'j = JSON.parse(STDIN.read); printf(" %s|%s", j["ref"], j["url"])' < ${componentName}
done
popd
}
# Find the fixVersion for a project in this release
#
# - If an overrides file was supplied, use the version number from that file
# - Otherwise look for common version files
# - Otherwise try to find the most recent version update in the git log
getFixVerFor() {
# If an overrides file was supplied, look at it for a version number first
if [[ -f ${OVERRIDE_PATH} ]]; then
override=$(grep "${1}:" ${OVERRIDE_PATH} | cut -d: -f2)
if [[ -n ${override} ]]; then
echo ${override}
return
fi
fi
# puppet-agent has a ./VERSION file that contains only the version number
if [[ -f VERSION ]]; then
version=$(echo $(cat VERSION | sed -e 's/\s+//'))
if [[ -n ${version} ]]; then
echo ${version}
return
fi
fi
# Ruby components have a version.rb in various places
componentName="$(basename ${PWD})"
if [[ $componentName = "puppet-resource_api" ]]; then
# The resource api has a './lib/puppet/resource_api/version.rb' which contains a `VERSION = <version>` line
versionFile="./lib/puppet/resource_api/version.rb"
else
# puppet has a './lib/puppet/version.rb' which contains a `PUPPETVERSION = <version>` line
# hiera has a './lib/hiera/version.rb' which contains a `VERSION = <version>` line
versionFile="./lib/${componentName}/version.rb"
fi
if [[ -f ${versionFile} ]]; then
version=$(cat ${versionFile} | sed -nE "s/.*VERSION\s*=\s*(\"|')(.+)(\"|').*/\2/p")
if [[ -n ${version} ]]; then
echo ${version}
return
fi
fi
# C++ components have a version in CMakeLists.txt with a line like `project(pxp-agent VERSION <version>)`
if [[ -f CMakeLists.txt ]]; then
version=$(cat CMakeLists.txt | sed -nE "s/project\(.*VERSION\s*(.+)\)/\1/p")
if [[ -n ${version} ]]; then
echo ${version}
return
fi
fi
# Otherwise, attempt to find a version update in the git log for the component
git log -1 --no-merges --oneline -E --grep='\(packaging\) Bump to version .*' | sed -Ee "s/^.*version '?(([0-9]+\.)*[0-9]+).*/\1/"
}
getJiraProjectIdFor() {
case "${1}" in
facter) echo FACT
;;
facter-ng) echo FACT
;;
hiera) echo HI
;;
leatherman) echo PA
;;
puppet) echo PUP
;;
pxp-agent) echo PCP
;;
puppet-agent) echo PA
;;
cpp-pcp-client) echo PCP
;;
libwhereami) echo FACT
;;
marionette-collective) echo MCO
;;
puppet-resource_api) echo PDK
;;
cpp-hocon) echo HC
;;
nssm) echo PA # this is on purpose
;;
puppet-runtime) echo PA
;;
*) (>&2 echo "Error: need to add JIRA project mapping for '${1}'.")
exit 1
;;
esac
}
getJiraFixedInFor() {
case "${1}" in
facter) echo FACT
;;
facter-ng) echo FACT
;;
hiera) echo HI
;;
leatherman) echo LTH
;;
puppet) echo PUP
;;
pxp-agent) echo pxp-agent
;;
puppet-agent) echo puppet-agent
;;
cpp-pcp-client) echo cpp-pcp-client
;;
libwhereami) echo whereami # potential headache
;;
marionette-collective) echo MCO
;;
puppet-resource_api) echo RSAPI
;;
cpp-hocon) echo HC
;;
puppet-runtime) echo puppet-agent
;;
nssm) echo puppet-agent # this is on purpose
;;
*) (>&2 echo "Error: need to add JIRA fixed-in version mapping for '${1}'.")
exit 1
;;
esac
}
cloneOrFetch() {
local targetRev=${1}
local url=${2}
local repoName=$(parseRepoName ${url})
if [[ -d ${repoName} ]]; then
pushd ${repoName}
echo "Fetching ${FETCH_REMOTE} for ${repoName} rev ${targetRev}..."
git fetch ${FETCH_REMOTE} --tags --quiet
git checkout --quiet ${targetRev}
popd
else
echo "Cloning ${repoName}..."
echo
git clone --quiet ${url}
pushd ${repoName}
git checkout --quiet ${targetRev}
popd
fi
}
readRuntimeVersion() {
echo `grep -Eo '"version":.*?[^\\]"' configs/components/puppet-runtime.json | awk -F ':' '{print $2}'` | tr -d '"'
}
# get puppet-runtime version from the last release
getOldRuntimeRev() {
latest_tag=$(git describe --abbrev=0 --tags)
git checkout --quiet ${latest_tag}
echo $(readRuntimeVersion)
git checkout --quiet -
}
getAgentVersion() {
if [[ -f VERSION ]]; then
version=$(echo $(cat VERSION | sed -e 's/\s+//'))
if [[ -n ${version} ]]; then
echo ${version}
fi
fi
}
# main
puppetAgentBaseRev=${1}
[[ -z ${puppetAgentBaseRev} ]] && { echo "Error: must specify the puppet-agent revision to start from."; exit 1; }
baseDir=${WORKSPACE:-${PWD}}
[[ -d ${baseDir} ]] || { echo "Error: '${baseDir}' -- no such directory."; exit 1; }
cd ${baseDir}
# get desired revision of puppet-agent in place
cloneOrFetch "${puppetAgentBaseRev}" "${PUPPET_AGENT_URL}"
agent_repo=$(parseRepoName ${PUPPET_AGENT_URL})
pushd ${agent_repo}
agentVersion=$(getAgentVersion)
oldRuntimeVersion=$(getOldRuntimeRev)
newRuntimeVersion=$(readRuntimeVersion)
popd
repoRevMap=$(getComponentRevMap)
echo "starting with repoRevMap '${repoRevMap}'"
[[ -z ${repoRevMap} ]] && { echo "Note: no repos with SHAs found."; }
# add puppet-agent to the list of repos to check
repoRevMap="${puppetAgentBaseRev}|${PUPPET_AGENT_URL} ${repoRevMap}"
# add puppet-runtime to the list
repoRevMap="$newRuntimeVersion|[email protected]:puppetlabs/puppet-runtime.git ${repoRevMap}"
versionsUsed=""
ignored_repos="${IGNORE_FOR}"
only_on="${ONLY_ON}"
echo "operating on repoRevMap '${repoRevMap}'"
for currentItem in ${repoRevMap}; do
to_rev=$(echo -n ${currentItem} | cut -d'|' -f1)
repo_url=$(echo -n ${currentItem} | cut -d'|' -f2)
repo=$(parseRepoName ${repo_url})
public_name=$(stripPrivateSuffix ${repo})
# If a non-empty value for ONLY_ON was passed in, then we want to run
# ticketmatch only on those repos. This is equivalent to ignoring all
# repos that aren't a part of ONLY_ON.
if [[ ! -z "${only_on}" ]] && ! containsElement "${only_on}" "${public_name}"; then
ignored_repos="${ignored_repos} ${public_name}"
fi
# something like
# [[ "${ignored_repos}" =~ ${public_name} ]]
# will not work when $ignored_repos contains e.g. puppet-agent
# and $public_name is puppet.
if containsElement "${ignored_repos}" "${public_name}"; then
continue
fi
print_divider
cloneOrFetch "${to_rev}" "${repo_url}"
pushd ${repo}
# get current version [from_rev]
from_rev=$(git describe --abbrev=0 --tags) # | sed -e 's/^v//')
fix_ver=$(getFixVerFor "${public_name}")
jiraProjectId=$(getJiraProjectIdFor "${public_name}")
jiraFixedInProject=$(getJiraFixedInFor "${public_name}")
if [[ $public_name = "puppet-runtime" ]]; then
from_rev=${oldRuntimeVersion}
fix_ver=${agentVersion}
versionsUsed="${versionsUsed}\n${public_name}:${to_rev}"
else
versionsUsed="${versionsUsed}\n${public_name}:${fix_ver}"
fi
echo_bold "Ticketmatch results for $public_name"
echo "(From tag '$from_rev' to ref '$to_rev' - JIRA fixVersion is '$(getJiraFixedInFor $public_name) $fix_ver')"
echo
ruby ${TICKETMATCH_PATH}/ticketmatch.rb --ci -f "${from_rev}" -t "${to_rev}" -p "${jiraProjectId}" -v "${jiraFixedInProject} ${fix_ver}" ${AUTH_TOKEN_ARG}| sed 's/^/\t/g'
echo
popd
done
print_divider
echo "The following versions were used for JIRA searches (repo_name:version)"
echo_bold "If these versions are incorrect, you should create a version overrides file and try again. See the README."
printf "%b\n\n" ${versionsUsed}