-
-
Notifications
You must be signed in to change notification settings - Fork 295
Expand file tree
/
Copy pathJiraSession.java
More file actions
467 lines (411 loc) · 16 KB
/
JiraSession.java
File metadata and controls
467 lines (411 loc) · 16 KB
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
package hudson.plugins.jira;
import static org.apache.commons.lang.StringUtils.isNotEmpty;
import com.atlassian.jira.rest.client.api.domain.BasicIssue;
import com.atlassian.jira.rest.client.api.domain.Component;
import com.atlassian.jira.rest.client.api.domain.Issue;
import com.atlassian.jira.rest.client.api.domain.IssueType;
import com.atlassian.jira.rest.client.api.domain.Permissions;
import com.atlassian.jira.rest.client.api.domain.Priority;
import com.atlassian.jira.rest.client.api.domain.Status;
import com.atlassian.jira.rest.client.api.domain.Transition;
import com.atlassian.jira.rest.client.api.domain.Version;
import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;
import hudson.plugins.jira.extension.ExtendedVersion;
import hudson.plugins.jira.model.JiraIssueField;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import java.util.concurrent.TimeoutException;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.commons.lang.StringUtils;
/**
* Connection to Jira.
* Jira has a built-in timeout for a session, so after some inactive period the
* session will become invalid. The caller must make sure that this doesn't
* happen.
*
* @author Kohsuke Kawaguchi
*/
public class JiraSession {
private static final Logger LOGGER = Logger.getLogger(JiraSession.class.getName());
public final JiraRestService service;
/**
* Lazily computed list of project keys.
*/
private Set<String> projectKeys;
private final String jiraSiteName;
private final Integer maxIssuesFromJqlSearch;
/* package */ JiraSession(JiraSite site, JiraRestService jiraRestService) {
this.service = jiraRestService;
this.jiraSiteName = site.getName();
this.maxIssuesFromJqlSearch = site.getMaxIssuesFromJqlSearch();
}
/**
* Returns the set of project keys (like MNG, JENKINS, etc) that are
* available in this Jira.
* Guarantees to return all project keys in upper case.
*/
public Set<String> getProjectKeys() {
if (projectKeys == null) {
LOGGER.fine("Fetching remote project key list from " + jiraSiteName);
final List<String> keys = service.getProjectsKeys();
projectKeys = new HashSet<>(keys);
LOGGER.fine("Project list=" + projectKeys);
}
return projectKeys;
}
/**
* Adds a comment to the existing issue. Constrains the visibility of the
* comment the the supplied groupVisibility.
*/
public void addComment(String issueId, String comment, String groupVisibility, String roleVisibility) {
service.addComment(issueId, comment, groupVisibility, roleVisibility);
}
/**
* Adds new labels to the existing issue.
* Old labels remains untouched.
*
* @param issueId Jira issue ID like "MNG-1235".
* @param labels New labels to add.
*/
public void addLabels(String issueId, List<String> labels) {
List<String> newLabels = new ArrayList();
Issue existingIssue = service.getIssue(issueId);
if (existingIssue.getLabels() != null) {
newLabels.addAll(existingIssue.getLabels());
}
boolean changed = false;
for (String label : labels) {
if (!newLabels.contains(label)) {
newLabels.add(label);
changed = true;
}
}
if (changed) {
service.setIssueLabels(issueId, newLabels);
}
}
/**
* Adds new to or updates existing fields of the issue.
* Can add or update custom fields.
*
* @param issueId Jira issue ID like "PRJ-123"
* @param fields Fields to add or update
*/
public void addFields(String issueId, List<JiraIssueField> fields) {
service.setIssueFields(issueId, fields);
}
/**
* Gets the details of one issue.
*
* @param id Issue ID like "MNG-1235".
* @return null if no such issue exists.
*/
public Issue getIssue(String id) {
return service.getIssue(id);
}
/**
* Gets all issues that match the given JQL filter
*
* @param jqlSearch JQL query string to execute
* @return issues matching the JQL query
*/
public List<Issue> getIssuesFromJqlSearch(final String jqlSearch) throws TimeoutException {
return service.getIssuesFromJqlSearch(jqlSearch, maxIssuesFromJqlSearch);
}
/**
* Get all versions from the given project
*
* @param projectKey The key for the project
* @return An array of versions
*/
public List<ExtendedVersion> getVersions(String projectKey) {
LOGGER.fine("Fetching versions from project: " + projectKey);
return service.getVersions(projectKey);
}
/**
* Get a version by its name
*
* @param projectKey The key for the project
* @param name The version name
* @return A RemoteVersion, or null if not found
*/
public ExtendedVersion getVersionByName(String projectKey, String name) {
LOGGER.fine("Fetching versions from project: " + projectKey);
List<ExtendedVersion> versions = getVersions(projectKey);
if (versions == null) {
return null;
}
for (ExtendedVersion version : versions) {
if (version.getName().equals(name)) {
return version;
}
}
return null;
}
public List<Issue> getIssuesWithFixVersion(String projectKey, String version) throws TimeoutException {
return getIssuesWithFixVersion(projectKey, version, "");
}
public List<Issue> getIssuesWithFixVersion(String projectKey, String version, String filter)
throws TimeoutException {
LOGGER.fine("Fetching versions from project: " + projectKey + " with fixVersion:" + version);
if (isNotEmpty(filter)) {
return service.getIssuesFromJqlSearch(
String.format("project = \"%s\" and fixVersion = \"%s\" and " + filter, projectKey, version),
maxIssuesFromJqlSearch);
}
return service.getIssuesFromJqlSearch(
String.format("project = \"%s\" and fixVersion = \"%s\"", projectKey, version), maxIssuesFromJqlSearch);
}
/**
* Get all issue types
*
* @return An array of issue types
*/
public List<IssueType> getIssueTypes() {
LOGGER.fine("Fetching issue types");
return service.getIssueTypes();
}
/**
* Get all priorities
*
* @return An array of priorities
*/
public List<Priority> getPriorities() {
LOGGER.fine("Fetching priorities");
return service.getPriorities();
}
/**
* Release given version in given project
*/
public void releaseVersion(String projectKey, ExtendedVersion version) {
LOGGER.fine("Releasing version: " + version.getName());
service.releaseVersion(projectKey, version);
}
/**
* Replaces the fix version list of all issues matching the JQL Query with the version specified.
*
* @param projectKey The Jira Project key
* @param version The replacement version
* @param query The JQL Query
*/
public void migrateIssuesToFixVersion(String projectKey, String version, String query) throws TimeoutException {
Version newVersion = getVersionByName(projectKey, version);
if (newVersion == null) {
LOGGER.warning("Version " + version + " was not found");
return;
}
LOGGER.fine("Fetching versions with JQL:" + query);
List<Issue> issues = service.getIssuesFromJqlSearch(query, maxIssuesFromJqlSearch);
if (issues == null || issues.isEmpty()) {
return;
}
LOGGER.fine("Found issues: " + issues.size());
issues.stream().forEach(issue -> {
LOGGER.fine("Migrating issue: " + issue.getKey());
service.updateIssue(issue.getKey(), Collections.singletonList(newVersion));
});
}
/**
* Replaces the given fromVersion with toVersion in all issues matching the JQL query.
*
* @param projectKey The Jira Project
* @param fromVersion The name of the version to replace
* @param toVersion The name of the replacement version
* @param query The JQL Query
*/
public void replaceFixVersion(String projectKey, String fromVersion, String toVersion, String query)
throws TimeoutException {
Version newVersion = getVersionByName(projectKey, toVersion);
if (newVersion == null) {
LOGGER.warning("Version " + toVersion + " was not found");
return;
}
LOGGER.fine("Fetching versions with JQL:" + query);
List<Issue> issues = service.getIssuesFromJqlSearch(query, maxIssuesFromJqlSearch);
if (issues == null) {
return;
}
LOGGER.fine("Found issues: " + issues.size());
for (Issue issue : issues) {
Set<Version> newVersions = new HashSet<>();
newVersions.add(newVersion);
Iterable<Version> issueVersions =
Optional.ofNullable(issue.getFixVersions()).orElse(Collections.emptyList());
LOGGER.fine(String.format("[%s] current versions: %s", issue.getKey(), issueVersions));
if (StringUtils.startsWith(fromVersion, "/") && StringUtils.endsWith(fromVersion, "/")) {
String regEx = StringUtils.removeStart(fromVersion, "/");
regEx = StringUtils.removeEnd(regEx, "/");
Pattern fromVersionPattern = Pattern.compile(regEx);
LOGGER.fine("Using regular expression: " + regEx);
for (Version currentVersion : issueVersions) {
Matcher versionToRemove = fromVersionPattern.matcher(currentVersion.getName());
if (!versionToRemove.matches()) {
newVersions.add(currentVersion);
}
}
} else {
for (Version currentVersion : issueVersions) {
if (!currentVersion.getName().equals(fromVersion)) {
newVersions.add(currentVersion);
}
}
}
LOGGER.info(String.format("Moving issues matching JQL query: \"%s\" to version %s", query, toVersion));
service.updateIssue(issue.getKey(), new ArrayList(newVersions));
}
}
/**
* Adds the specified version to the fix version list of all issues matching the JQL.
*
* @param projectKey The Jira Project
* @param version The version to add
* @param query The JQL Query
*/
public void addFixVersion(String projectKey, String version, String query) throws TimeoutException {
Version newVersion = getVersionByName(projectKey, version);
if (newVersion == null) {
LOGGER.warning("Version " + version + " was not found");
return;
}
LOGGER.fine("Fetching issues with JQL:" + query);
List<Issue> issues = service.getIssuesFromJqlSearch(query, maxIssuesFromJqlSearch);
if (issues == null || issues.isEmpty()) {
return;
}
LOGGER.fine("Found issues: " + issues.size());
for (Issue issue : issues) {
LOGGER.fine("Adding version: " + newVersion.getName() + " to issue: " + issue.getKey());
List<Version> fixVersions = new ArrayList<>();
Optional.ofNullable(issue.getFixVersions())
.orElse(Collections.emptyList())
.forEach(fixVersions::add);
fixVersions.add(newVersion);
service.updateIssue(issue.getKey(), fixVersions);
}
}
/**
* Progresses the issue's workflow by performing the specified action. The issue's new status is returned.
*
* @return The new status
*/
public String progressWorkflowAction(String issueKey, Integer actionId) {
LOGGER.fine("Progressing issue " + issueKey + " with workflow action: " + actionId);
final Issue issue = service.progressWorkflowAction(issueKey, actionId);
getStatusById(issue.getStatus().getId());
return getStatusById(issue.getStatus().getId());
}
/**
* Returns the matching action id for a given action name.
*
* @return The action id, or null if the action cannot be found.
*/
public Integer getActionIdForIssue(String issueKey, String workflowAction) {
List<Transition> actions = service.getAvailableActions(issueKey);
if (actions != null) {
for (Transition action : actions) {
if (action.getName() != null && action.getName().equalsIgnoreCase(workflowAction)) {
return action.getId();
}
}
}
return null;
}
/**
* Returns the status name by status id.
*
* @return status name
*/
public String getStatusById(Long statusId) {
String status = getKnownStatuses().get(statusId);
if (status == null) {
LOGGER.warning("Jira status could not be found: " + statusId + ". Checking Jira for new status types.");
knownStatuses = null;
// Try again, just in case the admin has recently added a new status. This should be a rare condition.
status = getKnownStatuses().get(statusId);
}
return status;
}
private Map<Long, String> knownStatuses = null;
/**
* Returns all known statuses.
*
* @return Map with statusId and status name
*/
private Map<Long, String> getKnownStatuses() {
if (knownStatuses == null) {
List<Status> statuses = service.getStatuses();
knownStatuses = new HashMap<>(statuses.size());
statuses.stream().forEach(status -> knownStatuses.put(status.getId(), status.getName()));
}
return knownStatuses;
}
/**
* Returns issue-id of the created issue
*
* @return The issue id
*/
@Deprecated
public Issue createIssue(
String projectKey, String description, String assignee, Iterable<String> components, String summary) {
return createIssue(projectKey, description, assignee, components, summary, null, null);
}
public Issue createIssue(
String projectKey,
String description,
String assignee,
Iterable<String> components,
String summary,
@NonNull Long issueTypeId,
@Nullable Long priorityId) {
final BasicIssue basicIssue =
service.createIssue(projectKey, description, assignee, components, summary, issueTypeId, priorityId);
return service.getIssue(basicIssue.getKey());
}
/**
* Adds a comment to the existing issue.There is no constrains to the visibility of the comment.
*/
public void addCommentWithoutConstrains(String issueId, String comment) {
service.addComment(issueId, comment, null, null);
}
/**
* Returns information about the specific issue as identified by the issue id
*
* @return issue object
*/
public Issue getIssueByKey(String issueId) {
return service.getIssue(issueId);
}
/**
* Returns all the components for the particular project
*
* @return An array of components
*/
public List<Component> getComponents(String projectKey) {
return service.getComponents(projectKey);
}
/**
* Creates a new version and returns it
*
* @param version version id to create
* @return created Version instance
*
*/
public Version addVersion(String version, String projectKey) {
return service.addVersion(projectKey, version);
}
/**
* Get User's permissions
*/
public Permissions getMyPermissions() {
return service.getMyPermissions();
}
}