Skip to content
Snippets Groups Projects
Commit 82e8eefe authored by Mike McKay's avatar Mike McKay
Browse files

XNAT-4519 Fixed cases where wrong user permissions were being checked,...

XNAT-4519 Fixed cases where wrong user permissions were being checked, preventing the admin from removing project access.
parent e1d07036
No related branches found
No related tags found
No related merge requests found
...@@ -632,7 +632,7 @@ public class UsersApi extends AbstractXapiRestController { ...@@ -632,7 +632,7 @@ public class UsersApi extends AbstractXapiRestController {
return new ResponseEntity<>(HttpStatus.NOT_FOUND); return new ResponseEntity<>(HttpStatus.NOT_FOUND);
} }
try { try {
Groups.removeUserFromGroup(user, group, null); Groups.removeUserFromGroup(user, getSessionUser(), group, null);
return new ResponseEntity<>(HttpStatus.OK); return new ResponseEntity<>(HttpStatus.OK);
} catch (Exception e) { } catch (Exception e) {
_log.error("Error occurred removing user " + user.getLogin() + " from group " + group + "."); _log.error("Error occurred removing user " + user.getLogin() + " from group " + group + ".");
......
...@@ -72,7 +72,7 @@ public class ProcessAccessRequest extends SecureAction { ...@@ -72,7 +72,7 @@ public class ProcessAccessRequest extends SecureAction {
for (Map.Entry<String, UserGroupI> entry:Groups.getGroupsForUser(other).entrySet()){ for (Map.Entry<String, UserGroupI> entry:Groups.getGroupsForUser(other).entrySet()){
if (entry.getValue().getTag().equals(project.getId())){ if (entry.getValue().getTag().equals(project.getId())){
Groups.removeUserFromGroup(other, entry.getValue().getId(), c); Groups.removeUserFromGroup(other, user, entry.getValue().getId(), c);
} }
} }
...@@ -153,7 +153,7 @@ public class ProcessAccessRequest extends SecureAction { ...@@ -153,7 +153,7 @@ public class ProcessAccessRequest extends SecureAction {
try { try {
for (Map.Entry<String, UserGroupI> entry:Groups.getGroupsForUser(user).entrySet()){ for (Map.Entry<String, UserGroupI> entry:Groups.getGroupsForUser(user).entrySet()){
if (entry.getValue()!=null && entry.getValue().getTag()!=null && entry.getValue().getTag().equals(project.getId())){ if (entry.getValue()!=null && entry.getValue().getTag()!=null && entry.getValue().getTag().equals(project.getId())){
Groups.removeUserFromGroup(other, entry.getValue().getId(), c); Groups.removeUserFromGroup(other, user, entry.getValue().getId(), c);
} }
} }
......
...@@ -525,7 +525,7 @@ public class ProjectAccessRequest { ...@@ -525,7 +525,7 @@ public class ProjectAccessRequest {
for (Map.Entry<String, UserGroupI> entry : Groups.getGroupsForUser(user).entrySet()) { for (Map.Entry<String, UserGroupI> entry : Groups.getGroupsForUser(user).entrySet()) {
if (StringUtils.equals(entry.getValue().getTag(),_projectId)) { if (StringUtils.equals(entry.getValue().getTag(),_projectId)) {
if(!UserHelper.getUserHelperService(user).isOwner(_projectId)){ if(!UserHelper.getUserHelperService(user).isOwner(_projectId)){
Groups.removeUserFromGroup(user, entry.getValue().getId(), eventInfo); Groups.removeUserFromGroup(user, user, entry.getValue().getId(), eventInfo);
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment