-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 48499: Use preferred SecurityPolicyManager.savePolicy() variant #375
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
94bcf23
Issue 48499: Use preferred SecurityPolicyManager.savePolicy() variant
labkey-jeckels 908769f
User may not have direct access
labkey-jeckels 639993f
Another try at the right mix of users
labkey-jeckels 85bedee
In callers of SecurityPolicyManager.savePolicy() in CopyExperimentFin…
vagisha File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -354,7 +354,7 @@ private Pair<User, String> assignReviewer(JournalSubmission js, ExperimentAnnota | |
{ | ||
throw new PipelineJobException("Error creating a new account for reviewer", e); | ||
} | ||
assignReader(reviewer, targetExperiment.getContainer()); | ||
assignReader(reviewer, targetExperiment.getContainer(), user); | ||
js.getJournalExperiment().setReviewer(reviewer.getUserId()); | ||
SubmissionManager.updateJournalExperiment(js.getJournalExperiment(), user); | ||
|
||
|
@@ -370,7 +370,7 @@ private Pair<User, String> assignReviewer(JournalSubmission js, ExperimentAnnota | |
{ | ||
// Assign Site:Guests to reader role | ||
log.info("Making folder public."); | ||
assignReader(SecurityManager.getGroup(Group.groupGuests), targetExperiment.getContainer()); | ||
assignReader(SecurityManager.getGroup(Group.groupGuests), targetExperiment.getContainer(), user); | ||
} | ||
return new Pair<>(null, null); | ||
} | ||
|
@@ -544,7 +544,7 @@ private void updatePermissions(User formSubmitter, ExperimentAnnotations targetE | |
assignPanoramaPublicSubmitterRole(newPolicy, log, targetExperiment.getSubmitterUser(), targetExperiment.getLabHeadUser(), | ||
formSubmitter); // User that submitted the form. Can be different from the user selected as the data submitter | ||
|
||
SecurityPolicyManager.savePolicy(newPolicy); | ||
SecurityPolicyManager.savePolicy(newPolicy, pipelineJobUser); | ||
|
||
addToSubmittersGroup(target.getProject(), log, targetExperiment.getSubmitterUser(), targetExperiment.getLabHeadUser(), formSubmitter); | ||
} | ||
|
@@ -650,11 +650,11 @@ private User createReviewerAccount(String reviewerEmailPrefix, String password, | |
return newUser.getUser(); | ||
} | ||
|
||
private void assignReader(UserPrincipal reader, Container target) | ||
private void assignReader(UserPrincipal reader, Container target, User pipelineJobUser) | ||
{ | ||
MutableSecurityPolicy newPolicy = new MutableSecurityPolicy(target, target.getPolicy()); | ||
newPolicy.addRoleAssignment(reader, ReaderRole.class); | ||
SecurityPolicyManager.savePolicy(newPolicy); | ||
SecurityPolicyManager.savePolicy(newPolicy, pipelineJobUser); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here. It should be OK to pass in the User that started the pipeline job instead of User.getAdminServiceUser(). |
||
} | ||
|
||
public static String createPassword() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be OK to pass in the User that started the pipeline job instead of User.getAdminServiceUser(). I will revert the changes in my commit if tests fail due to this change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!