
prerna.reactor.project.GetProjectUserAccessRequestReactor Maven / Gradle / Ivy
The newest version!
package prerna.reactor.project;
import java.util.List;
import java.util.Map;
import prerna.auth.User;
import prerna.auth.utils.SecurityAdminUtils;
import prerna.auth.utils.SecurityProjectUtils;
import prerna.reactor.AbstractReactor;
import prerna.sablecc2.om.PixelDataType;
import prerna.sablecc2.om.PixelOperationType;
import prerna.sablecc2.om.ReactorKeysEnum;
import prerna.sablecc2.om.nounmeta.NounMetadata;
public class GetProjectUserAccessRequestReactor extends AbstractReactor {
public GetProjectUserAccessRequestReactor() {
this.keysToGet = new String[]{ReactorKeysEnum.PROJECT.getKey()};
}
@Override
public NounMetadata execute() {
organizeKeys();
String projectId = this.keyValue.get(this.keysToGet[0]);
if(projectId == null) {
throw new IllegalArgumentException("Please define the project id.");
}
// check user permission for the database
User user = this.insight.getUser();
if(!SecurityAdminUtils.userIsAdmin(user) &&
!SecurityProjectUtils.userCanEditProject(user, projectId)) {
throw new IllegalArgumentException("User does not have permission to view access requests for this project");
}
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy