From: Julien Lancelot Date: Mon, 7 Apr 2014 13:14:51 +0000 (+0200) Subject: SONAR-5179 Project administrator cannot create action plans X-Git-Tag: 4.3~115 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bb71eb37d63ae532747f71a0bbc4e139a0ff0ad4;p=sonarqube.git SONAR-5179 Project administrator cannot create action plans --- diff --git a/sonar-server/src/main/java/org/sonar/server/issue/ActionPlanService.java b/sonar-server/src/main/java/org/sonar/server/issue/ActionPlanService.java index 4d0f6eeca14..4ddaec8baf3 100644 --- a/sonar-server/src/main/java/org/sonar/server/issue/ActionPlanService.java +++ b/sonar-server/src/main/java/org/sonar/server/issue/ActionPlanService.java @@ -36,10 +36,11 @@ import org.sonar.core.issue.db.*; import org.sonar.core.resource.ResourceDao; import org.sonar.core.resource.ResourceDto; import org.sonar.core.resource.ResourceQuery; -import org.sonar.core.user.AuthorizationDao; +import org.sonar.server.exceptions.NotFoundException; import org.sonar.server.user.UserSession; import javax.annotation.CheckForNull; + import java.util.*; import static com.google.common.collect.Lists.newArrayList; @@ -52,17 +53,15 @@ public class ActionPlanService implements ServerComponent { private final ActionPlanDao actionPlanDao; private final ActionPlanStatsDao actionPlanStatsDao; private final ResourceDao resourceDao; - private final AuthorizationDao authorizationDao; private final IssueDao issueDao; private final IssueUpdater issueUpdater; private final IssueStorage issueStorage; - public ActionPlanService(ActionPlanDao actionPlanDao, ActionPlanStatsDao actionPlanStatsDao, ResourceDao resourceDao, AuthorizationDao authorizationDao, + public ActionPlanService(ActionPlanDao actionPlanDao, ActionPlanStatsDao actionPlanStatsDao, ResourceDao resourceDao, IssueDao issueDao, IssueUpdater issueUpdater, IssueStorage issueStorage) { this.actionPlanDao = actionPlanDao; this.actionPlanStatsDao = actionPlanStatsDao; this.resourceDao = resourceDao; - this.authorizationDao = authorizationDao; this.issueDao = issueDao; this.issueUpdater = issueUpdater; this.issueStorage = issueStorage; @@ -70,21 +69,21 @@ public class ActionPlanService implements ServerComponent { public ActionPlan create(ActionPlan actionPlan, UserSession userSession) { ResourceDto project = findProject(actionPlan.projectKey()); - checkAuthorization(userSession, project, UserRole.ADMIN); + checkUserIsProjectAdministrator(project.getKey(), userSession); actionPlanDao.save(ActionPlanDto.toActionDto(actionPlan, project.getId())); return actionPlan; } public ActionPlan update(ActionPlan actionPlan, UserSession userSession) { ResourceDto project = findProject(actionPlan.projectKey()); - checkAuthorization(userSession, project, UserRole.ADMIN); + checkUserIsProjectAdministrator(project.getKey(), userSession); actionPlanDao.update(ActionPlanDto.toActionDto(actionPlan, project.getId())); return actionPlan; } public void delete(String actionPlanKey, UserSession userSession) { ActionPlanDto dto = findActionPlanDto(actionPlanKey); - checkAuthorization(userSession, dto.getProjectKey(), UserRole.ADMIN); + checkUserIsProjectAdministrator(dto.getProjectKey(), userSession); unplanIssues(dto.toActionPlan(), userSession); actionPlanDao.delete(actionPlanKey); } @@ -111,7 +110,7 @@ public class ActionPlanService implements ServerComponent { public ActionPlan setStatus(String actionPlanKey, String status, UserSession userSession) { ActionPlanDto actionPlanDto = findActionPlanDto(actionPlanKey); - checkAuthorization(userSession, actionPlanDto.getProjectKey(), UserRole.ADMIN); + checkUserIsProjectAdministrator(actionPlanDto.getProjectKey(), userSession); actionPlanDto.setStatus(status); actionPlanDto.setCreatedAt(new Date()); @@ -125,7 +124,7 @@ public class ActionPlanService implements ServerComponent { if (actionPlanDto == null) { return null; } - checkAuthorization(userSession, actionPlanDto.getProjectKey(), UserRole.USER); + checkUserCanAccessProject(actionPlanDto.getProjectKey(), userSession); return actionPlanDto.toActionPlan(); } @@ -136,7 +135,7 @@ public class ActionPlanService implements ServerComponent { public Collection findOpenByProjectKey(String projectKey, UserSession userSession) { ResourceDto project = findProject(projectKey); - checkAuthorization(userSession, project, UserRole.USER); + checkUserCanAccessProject(project.getKey(), userSession); List dtos = actionPlanDao.findOpenByProjectId(project.getId()); List plans = toActionPlans(dtos); @@ -146,7 +145,7 @@ public class ActionPlanService implements ServerComponent { public List findActionPlanStats(String projectKey, UserSession userSession) { ResourceDto project = findProject(projectKey); - checkAuthorization(userSession, project, UserRole.USER); + checkUserCanAccessProject(project.getKey(), userSession); List actionPlanStatsDtos = actionPlanStatsDao.findByProjectId(project.getId()); List actionPlanStats = newArrayList(Iterables.transform(actionPlanStatsDtos, new Function() { @@ -175,8 +174,7 @@ public class ActionPlanService implements ServerComponent { private ActionPlanDto findActionPlanDto(String actionPlanKey) { ActionPlanDto actionPlanDto = actionPlanDao.findByKey(actionPlanKey); if (actionPlanDto == null) { - // TODO throw 404 - throw new IllegalArgumentException("Action plan " + actionPlanKey + " has not been found."); + throw new NotFoundException("Action plan " + actionPlanKey + " has not been found."); } return actionPlanDto; } @@ -184,21 +182,17 @@ public class ActionPlanService implements ServerComponent { private ResourceDto findProject(String projectKey) { ResourceDto resourceDto = resourceDao.getResource(ResourceQuery.create().setKey(projectKey)); if (resourceDto == null) { - // TODO throw 404 - throw new IllegalArgumentException("Project " + projectKey + " does not exists."); + throw new NotFoundException("Project " + projectKey + " does not exists."); } return resourceDto; } - private void checkAuthorization(UserSession userSession, String projectKey, String requiredRole) { - checkAuthorization(userSession, findProject(projectKey), requiredRole); + private void checkUserCanAccessProject(String projectKey, UserSession userSession) { + userSession.checkProjectPermission(UserRole.USER, projectKey); } - private void checkAuthorization(UserSession userSession, ResourceDto project, String requiredRole) { - if (!authorizationDao.isAuthorizedComponentKey(project.getKey(), userSession.userId(), requiredRole)) { - // TODO throw unauthorized - throw new IllegalStateException("User does not have the required role on the project: " + project.getKey()); - } + private void checkUserIsProjectAdministrator(String projectKey, UserSession userSession) { + userSession.checkProjectPermission(UserRole.ADMIN, projectKey); } } diff --git a/sonar-server/src/main/java/org/sonar/server/issue/InternalRubyIssueService.java b/sonar-server/src/main/java/org/sonar/server/issue/InternalRubyIssueService.java index 2ec80be5110..bef324ee95f 100644 --- a/sonar-server/src/main/java/org/sonar/server/issue/InternalRubyIssueService.java +++ b/sonar-server/src/main/java/org/sonar/server/issue/InternalRubyIssueService.java @@ -65,6 +65,8 @@ import java.util.Map; import static com.google.common.collect.Lists.newArrayList; /** + * Used through ruby code
Internal.issues
+ * * All the issue features that are not published to public API. * * @since 3.6 diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/action_plans/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/action_plans/index.html.erb index 9e7d5e512df..882fd3bc3dd 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/action_plans/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/action_plans/index.html.erb @@ -1,5 +1,5 @@
- <% if profiles_administrator? %> + <% if is_admin?(@resource.id) %>