mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
e2ebdb7e41
* fix: oidc issuer path and strip path middleware This ensures the server.path requests append the base_url to the oidc well-known issuer information and adjusts server.path configuration to only strip the configured path instead of the first level entirely regardless of its content. * fix: only log the token error and general refactoring * refactor: factorize base_url functions * refactor(server): include all paths in startup logging * refactor: factorize * refactor: GetExternalRootURL -> ExternalRootURL Co-authored-by: James Elliott <james-d-elliott@users.noreply.github.com>
41 lines
1.2 KiB
Go
41 lines
1.2 KiB
Go
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/ory/fosite"
|
|
|
|
"github.com/authelia/authelia/internal/middlewares"
|
|
)
|
|
|
|
func oidcToken(ctx *middlewares.AutheliaCtx, rw http.ResponseWriter, req *http.Request) {
|
|
oidcSession := newOpenIDSession("")
|
|
|
|
accessRequest, err := ctx.Providers.OpenIDConnect.Fosite.NewAccessRequest(ctx, req, oidcSession)
|
|
if err != nil {
|
|
ctx.Logger.Errorf("Error occurred in NewAccessRequest: %+v", err)
|
|
ctx.Providers.OpenIDConnect.Fosite.WriteAccessError(rw, accessRequest, err)
|
|
|
|
return
|
|
}
|
|
|
|
// If this is a client_credentials grant, grant all scopes the client is allowed to perform.
|
|
if accessRequest.GetGrantTypes().ExactOne("client_credentials") {
|
|
for _, scope := range accessRequest.GetRequestedScopes() {
|
|
if fosite.HierarchicScopeStrategy(accessRequest.GetClient().GetScopes(), scope) {
|
|
accessRequest.GrantScope(scope)
|
|
}
|
|
}
|
|
}
|
|
|
|
response, err := ctx.Providers.OpenIDConnect.Fosite.NewAccessResponse(ctx, accessRequest)
|
|
if err != nil {
|
|
ctx.Logger.Errorf("Error occurred in NewAccessResponse: %+v", err)
|
|
ctx.Providers.OpenIDConnect.Fosite.WriteAccessError(rw, accessRequest, err)
|
|
|
|
return
|
|
}
|
|
|
|
ctx.Providers.OpenIDConnect.Fosite.WriteAccessResponse(rw, accessRequest, response)
|
|
}
|