30 lines
758 B
Go
30 lines
758 B
Go
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/authelia/authelia/internal/middlewares"
|
|
)
|
|
|
|
func oidcIntrospect(ctx *middlewares.AutheliaCtx, rw http.ResponseWriter, req *http.Request) {
|
|
oidcSession, err := newDefaultOIDCSession(ctx)
|
|
|
|
if err != nil {
|
|
ctx.Logger.Errorf("Error occurred in NewDefaultOIDCSession: %+v", err)
|
|
ctx.Providers.OpenIDConnect.Fosite.WriteIntrospectionError(rw, err)
|
|
|
|
return
|
|
}
|
|
|
|
ir, err := ctx.Providers.OpenIDConnect.Fosite.NewIntrospectionRequest(ctx, req, oidcSession)
|
|
|
|
if err != nil {
|
|
ctx.Logger.Errorf("Error occurred in NewIntrospectionRequest: %+v", err)
|
|
ctx.Providers.OpenIDConnect.Fosite.WriteIntrospectionError(rw, err)
|
|
|
|
return
|
|
}
|
|
|
|
ctx.Providers.OpenIDConnect.Fosite.WriteIntrospectionResponse(rw, ir)
|
|
}
|