-
Notifications
You must be signed in to change notification settings - Fork 4
/
zanata-jira-get-release-notes
executable file
·263 lines (200 loc) · 5.78 KB
/
zanata-jira-get-release-notes
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
#!/usr/bin/env perl
=pod
=head1 NAME
zanata-jira-get-release-notes - Extract release note from Jira
=head1 SYNOPSIS
zanata-jira-get-release-notes [options] <VersionName>
=head1 ARGUMENTS
=over 4
=item <Version-Name>
Version name in Jira, e.g. client-3.9.0, python-client-3.9.0
=back
=head1 OPTIONS
=over 4
=item B<-h>
Show this help
=item B<-v>
Show verbose message
=back
=head1 DESCRIPTION
This program get list of issue given Version name like 'client-3.8.4'.
=head1 EXIT STATUS
=over 4
=item B<EXIT_OK (0)>
Successfully found the repository, version,
and the issue list has been changed.
=item B<EXIT_FATAL_INVALID_OPTIONS (3)>
Invalid options are given.
=item B<EXIT_FATAL_UNKNOWN_MODULE (5)>
Module is not provided.
=item B<EXIT_FATAL_FAIL (6)>
Failed to retrieve the issue list from Jira.
Perhaps the network issues.
=item B<EXIT_ERROR_UNKNOWN_VERSION (21)>
The specified version is unknown.
=item B<EXIT_RETURN_FALSE (40)>
Not actually an error, just nothing new in issue list.
=cut
#== Common use ==
use strict;
use Cwd 'abs_path';
use Data::Dumper qw(Dumper);
use File::Basename;
use Getopt::Std qw(getopts);
use Pod::Usage qw(pod2usage);
my $scriptDir;
BEGIN {
$scriptDir = dirname( abs_path($0) );
push @INC, $scriptDir;
}
use ZanataScriptsCommon;
use constant JIRA_JQL_MAX_RESULTS => 50;
##== Program dependency ==
use HTTP::Request;
use HTTP::Response;
use LWP::UserAgent;
use JSON::XS;
##== Parse options ==
my %opts = ();
getopts( 'hv', \%opts );
pod2usage( -verbose => 3, -output => \*STDERR ) if $opts{'h'};
pod2usage(
-verbose => 2,
-exitval => EXIT_FATAL_UNKNOWN_MODULE,
-output => \*STDERR
) if ( @ARGV == 0 );
my $versionName = $ARGV[0];
my $verboseMode = 0;
$verboseMode = 1 if $opts{'v'};
##== Download JSON using REST
## Note that by default, Jira only return 50 results
## So we may need to retrieve more than once.
my $total = -1;
my $startAt = 0;
my $changeBuf = "";
my $bugBuf = "";
while ( $total < 0 or $startAt < $total ) {
my $response = rest_response( 'GET',
JIRA_SERVER_URL
. "/rest/api/2/search?"
. "jql=fixVersion=$versionName&startAt=$startAt&maxResults="
. JIRA_JQL_MAX_RESULTS );
if ( $response->code == 200 ) {
}
elsif ( $response->code =~ /40.*/ ) {
$! = EXIT_ERROR_UNKNOWN_VERSION;
die "[ERROR] Version $versionName is unknown to Jira. "
. $response->code . " "
. $response->message;
}
else {
$! = EXIT_FATAL_FAIL;
die "[FATAL] Failed with " . $response->code . " " . $response->message;
}
##== Extract from JSon
my $versionHashRef = decode_json $response->content;
$total = $versionHashRef->{total};
if ( $total == 0 ) {
$! = EXIT_RETURN_FALSE;
die "[FALSE] No issue associate with Version-Name $versionName";
}
##== Issue split
## Two types of issues, Bug for "Bugs fix", "Changes" for other types.
foreach my $issue ( @{ $versionHashRef->{issues} } ) {
if ( lc $issue->{fields}->{issuetype}->{name} eq "bug" ) {
add_issue( \$bugBuf, $issue );
}
else {
add_issue( \$changeBuf, $issue );
}
}
$startAt += JIRA_JQL_MAX_RESULTS;
}
sub echo_stderr{
if ($verboseMode){
print {*STDERR} @_;
}
}
sub add_issue {
my ( $bufRef, $issue ) = @_;
# includeMode: 1 for include, -1 for exclude, 0 for undecided.
my $includeMode = 0;
echo_stderr "@@@@@@@@@@@@@ key " . $issue->{key} . "\n";
if ( $issue->{fields}->{labels} ) {
foreach my $l ( @{ $issue->{fields}->{labels} } ) {
my $label = lc $l;
echo_stderr "@ level=$label\n";
if ( $label =~ /^release.*note[s]?/ ) {
$includeMode = 1;
}
elsif ( $label =~ /no.*release.*note[s]?/ ) {
$includeMode = -1;
}
elsif ( $label eq "chore" ) {
$includeMode = -1;
}
elsif ( $label eq "design" ) {
$includeMode = -1;
}
elsif ( $label eq "jenkins" ) {
$includeMode = -1;
}
}
}
if ( $includeMode == 0 ) {
foreach my $component ( @{ $issue->{fields}->{components} } ) {
my $componentName = lc $component->{name};
echo_stderr "@ componentName=$componentName\n";
if ( $componentName eq 'chore' ) {
$includeMode = -1;
}
elsif ( $componentName eq 'deployment' ) {
$includeMode = -1;
}
elsif ( $componentName eq 'drupalplugin' ) {
$includeMode = -1;
}
elsif ( $componentName eq 'jenkins' ) {
$includeMode = -1;
}
elsif ( $componentName eq 'zanata-scripts' ) {
$includeMode = -1;
}
}
}
if ( $includeMode == 0 ) {
my $issueType = lc $issue->{fields}->{issuetype}->{name};
echo_stderr "@ issueType=$issueType\n";
if ( $issueType eq "epic" ) {
$includeMode = -1;
}
elsif ( $issueType eq "feedback" ) {
$includeMode = -1;
}
elsif ( $issueType eq "sub-type" ) {
$includeMode = -1;
}
}
echo_stderr "@ includeMode=$includeMode\n";
return if $includeMode < 0;
$$bufRef .= " * ["
. $issue->{key} . "]("
. JIRA_SERVER_URL
. "/browse/"
. $issue->{key} . ") - "
. $issue->{fields}->{summary} . "\n";
}
##== Print result
unless ( $changeBuf eq "" ) {
print "##### Changes\n";
print $changeBuf;
## Insert blank line if we have bug as well
unless ( $bugBuf eq "" ) {
print "\n";
}
}
unless ( $bugBuf eq "" ) {
print "##### Bug Fixes\n";
print $bugBuf;
}
exit EXIT_OK;