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
|
/*
* Copyright 2000-2014 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.vaadin.buildhelpers;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.io.IOUtils;
public class FetchReleaseNotesTickets {
private static final String queryURL = "https://dev.vaadin.com/query?status=pending-release&status=released&@milestone@&resolution=fixed&col=id&col=summary&col=owner&col=type&col=priority&col=component&col=version&col=bfptime&col=fv&format=tab&order=id";
private static final String ticketTemplate = "<tr>" + "@badge@" //
+ "<td class=\"ticket\"><a href=\"https://dev.vaadin.com/ticket/@ticket@\">#@ticket@</a></td>" //
+ "<td>@description@</td>" //
+ "</tr>"; //
public static void main(String[] args) throws IOException {
String versionsProperty = System.getProperty("vaadin.version");
if (versionsProperty == null || versionsProperty.equals("")) {
usage();
}
String milestone = "";
List<String> versions = new ArrayList<String>();
for (String version : versionsProperty.split(" ")) {
if (version.endsWith(".0") || version.matches(".*\\.rc\\d+")) {
// Find all prerelease versions for final or rc
// Strip potential rc prefix
version = version.replaceAll("\\.rc\\d+$", "");
versions.addAll(findPrereleaseVersions(version));
} else {
versions.add(version);
}
}
for (String version : versions) {
if (!milestone.equals("")) {
milestone += "&";
}
milestone += "milestone=Vaadin+" + version;
}
printMilestone(milestone);
}
private static List<String> findPrereleaseVersions(String baseVersion) {
List<String> versions = new ArrayList<String>();
for (int i = 0; i < 50; i++) {
versions.add(baseVersion + ".alpha" + i);
}
for (int i = 0; i < 10; i++) {
versions.add(baseVersion + ".beta" + i);
}
for (int i = 0; i < 10; i++) {
versions.add(baseVersion + ".rc" + i);
}
return versions;
}
private static void printMilestone(String milestone)
throws MalformedURLException, IOException {
URL url = new URL(queryURL.replace("@milestone@", milestone));
URLConnection connection = url.openConnection();
InputStream urlStream = connection.getInputStream();
List<String> tickets = IOUtils.readLines(urlStream);
for (String ticket : tickets) {
// Omit BOM
if (!ticket.isEmpty() && ticket.charAt(0) == 65279) {
ticket = ticket.substring(1);
}
String[] fields = ticket.split("\t");
if ("id".equals(fields[0])) {
// This is the header
continue;
}
String summary = fields[1];
summary = modifySummaryString(summary);
String badge = "<td></td>";
if (fields.length >= 8 && !fields[7].equals("")) {
badge = "<td class=\"bfp\"><span class=\"bfp\">Priority</span></td>";
} else if (fields.length >= 9
&& fields[8].equalsIgnoreCase("true")) {
badge = "<td class=\"fv\"><span class=\"fv\">Vote</span></td>";
}
System.out.println(ticketTemplate.replace("@ticket@", fields[0])
.replace("@description@", summary)
.replace("@badge@", badge));
}
urlStream.close();
}
private static String modifySummaryString(String summary) {
if (summary.startsWith("\"") && summary.endsWith("\"")) {
// If a summary starts with " and ends with " then all quotes in
// the summary are encoded as double quotes
summary = summary.substring(1, summary.length() - 1);
summary = summary.replace("\"\"", "\"");
}
// this is needed for escaping html
summary = escapeHtml(summary);
return summary;
}
/**
* @since 7.4
* @param string
* the string to be html-escaped
* @return string in html-escape format
*/
private static String escapeHtml(String string) {
StringBuffer buf = new StringBuffer(string.length() * 2);
// we check the string character by character and escape only special
// characters
for (int i = 0; i < string.length(); ++i) {
char ch = string.charAt(i);
String charString = ch + "";
if ((charString).matches("[a-zA-Z0-9., ]")) {
// character is letter, digit, dot, comma or whitespace
buf.append(ch);
} else {
int charInt = ch;
buf.append("&");
buf.append("#");
buf.append(charInt);
buf.append(";");
}
}
return buf.toString();
}
private static void usage() {
System.err.println(
"Usage: " + FetchReleaseNotesTickets.class.getSimpleName()
+ " -Dvaadin.version=<version>");
System.exit(1);
}
}
|