-
Notifications
You must be signed in to change notification settings - Fork 0
refactor: simplify NDLA and Feide auth logic #949
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
Merged
Merged
Changes from all commits
Commits
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
46 changes: 0 additions & 46 deletions
46
common/src/main/scala/no/ndla/common/model/domain/myndla/auth/AuthUtility.scala
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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
62 changes: 62 additions & 0 deletions
62
network/src/main/scala/no/ndla/network/tapir/auth/FeideAuth.scala
This file contains hidden or 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,62 @@ | ||
| /* | ||
| * Part of NDLA network | ||
| * Copyright (C) 2024 NDLA | ||
| * | ||
| * See LICENSE | ||
| * | ||
| */ | ||
|
|
||
| package no.ndla.network.tapir.auth | ||
|
|
||
| import no.ndla.network.clients.MyNDLAProvider | ||
| import no.ndla.network.model.FeideUserWrapper | ||
| import sttp.model.headers.{AuthenticationScheme, WWWAuthenticateChallenge} | ||
| import sttp.tapir.* | ||
| import sttp.tapir.EndpointInput.AuthType | ||
|
|
||
| import scala.collection.immutable.ListMap | ||
| import scala.util.{Failure, Success} | ||
|
|
||
| trait FeideAuth(using myNdlaApiClient: MyNDLAProvider) { | ||
| private val headerName = "FeideAuthorization" | ||
| private val schemeName = "FeideAuth" | ||
| private val issuer = "https://auth.dataporten.no" | ||
| private val authorizationUrl = s"$issuer/oauth/authorization" | ||
| private val tokenUrl = s"$issuer/oauth/token" | ||
| private val challenge = WWWAuthenticateChallenge.bearer | ||
|
|
||
| private val bearerMapping: Mapping[String, String] = | ||
| Mapping.stringPrefixCaseInsensitive(AuthenticationScheme.Bearer.name + " ") | ||
| private val feideUserWrapperMapping = Mapping.fromDecode(decodeFeideUserWrapper)(encodeFeideUserWrapper) | ||
| private val bearerFeideUserWrapperMapping = bearerMapping.map(feideUserWrapperMapping) | ||
| private val optionalBearerFeideUserWrapperMapping = TapirAuthUtil.makeOptionalMapping(bearerFeideUserWrapperMapping) | ||
| private val optionalBearerMapping = TapirAuthUtil.makeOptionalMapping(bearerMapping) | ||
|
|
||
| private val requiredHeaderInput = header[String](headerName).map(bearerFeideUserWrapperMapping) | ||
| private val optionalHeaderInput = header[Option[String]](headerName).map(optionalBearerFeideUserWrapperMapping) | ||
| private val optionalUncheckedHeaderInput = header[Option[String]](headerName).map(optionalBearerMapping) | ||
|
|
||
| val feideRequiredAuth: EndpointInput.Auth[FeideUserWrapper, AuthType.OAuth2] = | ||
| oauth2EndpointInput(requiredHeaderInput) | ||
| val feideOptionalAuth: EndpointInput.Auth[Option[FeideUserWrapper], AuthType.OAuth2] = | ||
| oauth2EndpointInput(optionalHeaderInput) | ||
| val feideOptionalUncheckedAuth: EndpointInput.Auth[Option[String], AuthType.OAuth2] = | ||
| oauth2EndpointInput(optionalUncheckedHeaderInput) | ||
|
|
||
| private def encodeFeideUserWrapper(user: FeideUserWrapper): String = user.token | ||
| private def decodeFeideUserWrapper(s: String): DecodeResult[FeideUserWrapper] = { | ||
| myNdlaApiClient.getDomainUser(s) match { | ||
| case Success(user) => DecodeResult.Value(FeideUserWrapper(s, Some(user))) | ||
| case Failure(ex) => DecodeResult.Error(s, ex) | ||
| } | ||
| } | ||
|
|
||
| private def oauth2EndpointInput[T]( | ||
| headerInput: EndpointIO.Header[T] | ||
| ): EndpointInput.Auth[T, EndpointInput.AuthType.OAuth2] = EndpointInput.Auth( | ||
| headerInput, | ||
| challenge, | ||
| EndpointInput.AuthType.OAuth2(Some(authorizationUrl), Some(tokenUrl), ListMap(), None), | ||
| EndpointInput.AuthInfo.Empty.securitySchemeName(schemeName), | ||
| ) | ||
| } | ||
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.
Uh oh!
There was an error while loading. Please reload this page.