2021-05-04 22:06:05 +00:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2022-03-15 22:55:38 +00:00
|
|
|
"github.com/ory/fosite"
|
|
|
|
|
2021-08-11 01:04:35 +00:00
|
|
|
"github.com/authelia/authelia/v4/internal/middlewares"
|
2021-05-04 22:06:05 +00:00
|
|
|
)
|
|
|
|
|
2021-08-10 00:31:08 +00:00
|
|
|
func oidcRevocation(ctx *middlewares.AutheliaCtx, rw http.ResponseWriter, req *http.Request) {
|
2022-03-15 22:55:38 +00:00
|
|
|
var err error
|
|
|
|
|
|
|
|
if err = ctx.Providers.OpenIDConnect.Fosite.NewRevocationRequest(ctx, req); err != nil {
|
|
|
|
rfc := fosite.ErrorToRFC6749Error(err)
|
|
|
|
|
|
|
|
ctx.Logger.Errorf("Revocation Request failed with error: %+v", rfc)
|
|
|
|
}
|
2021-05-04 22:06:05 +00:00
|
|
|
|
|
|
|
ctx.Providers.OpenIDConnect.Fosite.WriteRevocationResponse(rw, err)
|
|
|
|
}
|