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
|
/*
* SonarQube, open source software quality management tool.
* Copyright (C) 2008-2014 SonarSource
* mailto:contact AT sonarsource DOT com
*
* SonarQube is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* SonarQube is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.server.issue;
import com.google.common.base.Strings;
import org.sonar.api.ServerComponent;
import org.sonar.api.issue.ActionPlan;
import org.sonar.api.issue.Issue;
import org.sonar.api.issue.condition.IsUnResolved;
import org.sonar.api.issue.internal.DefaultIssue;
import org.sonar.core.issue.IssueUpdater;
import org.sonar.server.user.UserSession;
import java.util.List;
import java.util.Map;
public class PlanAction extends Action implements ServerComponent {
public static final String KEY = "plan";
public static final String VERIFIED_ACTION_PLAN = "verifiedActionPlan";
private final ActionPlanService actionPlanService;
private final IssueUpdater issueUpdater;
public PlanAction(ActionPlanService actionPlanService, IssueUpdater issueUpdater) {
super(KEY);
this.actionPlanService = actionPlanService;
this.issueUpdater = issueUpdater;
super.setConditions(new IsUnResolved());
}
@Override
public boolean verify(Map<String, Object> properties, List<Issue> issues, UserSession userSession) {
String actionPlanValue = planValue(properties);
if (!Strings.isNullOrEmpty(actionPlanValue)) {
ActionPlan actionPlan = selectActionPlan(actionPlanValue, userSession);
if (actionPlan == null) {
throw new IllegalArgumentException("Unknown action plan: " + actionPlanValue);
}
verifyIssuesAreAllRelatedOnActionPlanProject(issues, actionPlan);
properties.put(VERIFIED_ACTION_PLAN, actionPlan);
} else {
properties.put(VERIFIED_ACTION_PLAN, null);
}
return true;
}
@Override
public boolean execute(Map<String, Object> properties, Context context) {
if(!properties.containsKey(VERIFIED_ACTION_PLAN)) {
throw new IllegalArgumentException("Action plan is missing from the execution parameters");
}
ActionPlan actionPlan = (ActionPlan) properties.get(VERIFIED_ACTION_PLAN);
return issueUpdater.plan((DefaultIssue) context.issue(), actionPlan, context.issueChangeContext());
}
private String planValue(Map<String, Object> properties) {
return (String) properties.get("plan");
}
private void verifyIssuesAreAllRelatedOnActionPlanProject(List<Issue> issues, ActionPlan actionPlan) {
String projectKey = actionPlan.projectKey();
for (Issue issue : issues) {
DefaultIssue defaultIssue = (DefaultIssue) issue;
String issueProjectKey = defaultIssue.projectKey();
if (issueProjectKey == null || !issueProjectKey.equals(projectKey)) {
throw new IllegalArgumentException("Issues are not all related to the action plan project: " + projectKey);
}
}
}
private ActionPlan selectActionPlan(String planValue, UserSession userSession) {
return actionPlanService.findByKey(planValue, userSession);
}
}
|