-
Notifications
You must be signed in to change notification settings - Fork 12
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
ID-690 Get User(s) Endpoint v2 #1208
Merged
Merged
Changes from 9 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
0a36476
refactor SamUser into its own file
tlangs 8da07d8
endpoints
tlangs 5682628
a wee bit of a refactor
tlangs 6cd8837
tests
tlangs 6b3a257
tests for endpoints
tlangs bfa676d
user allowed endpoint
tlangs 6624bd2
Merge branch 'develop' into tl_ID-690_get_user_endpoint
tlangs c04a52f
update api doc
tlangs 52e47c5
Merge branch 'tl_ID-690_get_user_endpoint' of github.com:broadinstitu…
tlangs 4c5d9c5
PR comments and cleanup
tlangs d0b446b
Merge branch 'develop' into tl_ID-690_get_user_endpoint
tlangs c380e7d
Merge branch 'develop' into tl_ID-690_get_user_endpoint
tlangs 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
2 changes: 1 addition & 1 deletion
2
src/main/scala/org/broadinstitute/dsde/workbench/sam/api/ExtensionRoutes.scala
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
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
45 changes: 45 additions & 0 deletions
45
src/main/scala/org/broadinstitute/dsde/workbench/sam/api/UserRoutesV1.scala
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package org.broadinstitute.dsde.workbench.sam.api | ||
|
||
import akka.http.scaladsl.marshallers.sprayjson.SprayJsonSupport._ | ||
import akka.http.scaladsl.model.StatusCodes | ||
import akka.http.scaladsl.server | ||
import akka.http.scaladsl.server.Directives._ | ||
import org.broadinstitute.dsde.workbench.model._ | ||
import org.broadinstitute.dsde.workbench.sam.model.api.SamJsonSupport._ | ||
import org.broadinstitute.dsde.workbench.sam.model.api.SamUser | ||
import org.broadinstitute.dsde.workbench.sam.service.UserService | ||
import org.broadinstitute.dsde.workbench.sam.util.SamRequestContext | ||
|
||
trait UserRoutesV1 extends SamUserDirectives with SamRequestContextDirectives { | ||
val userService: UserService | ||
|
||
def userRoutesV1(samUser: SamUser, samRequestContext: SamRequestContext): server.Route = pathPrefix("users") { | ||
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. Should have happened before, but we should mark this as deprecated |
||
pathPrefix("v1") { | ||
get { | ||
path(Segment) { email => | ||
pathEnd { | ||
complete { | ||
userService.getUserIdInfoFromEmail(WorkbenchEmail(email), samRequestContext).map { | ||
case Left(_) => StatusCodes.NotFound -> None | ||
case Right(None) => StatusCodes.NoContent -> None | ||
case Right(Some(userIdInfo)) => StatusCodes.OK -> Some(userIdInfo) | ||
} | ||
} | ||
} | ||
} | ||
} ~ | ||
pathPrefix("invite") { | ||
post { | ||
path(Segment) { inviteeEmail => | ||
complete { | ||
userService | ||
.inviteUser(WorkbenchEmail(inviteeEmail.trim), samRequestContext) | ||
.map(userStatus => StatusCodes.Created -> userStatus) | ||
} | ||
} | ||
Ghost-in-a-Jar marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
} | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.
Oops, something went wrong.
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.
We should mark this as deprecated
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.
I think we should only mark as deprecated once all the functionality is implemented in the V2 routes