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
|
|
|
)
|
|
|
|
|
2022-04-07 00:58:51 +00:00
|
|
|
// OAuthRevocationPOST handles POST requests to the OAuth 2.0 Revocation endpoint.
|
|
|
|
//
|
|
|
|
// https://datatracker.ietf.org/doc/html/rfc7009
|
|
|
|
func OAuthRevocationPOST(ctx *middlewares.AutheliaCtx, rw http.ResponseWriter, req *http.Request) {
|
2022-03-15 22:55:38 +00:00
|
|
|
var err error
|
|
|
|
|
2022-10-20 02:16:36 +00:00
|
|
|
if err = ctx.Providers.OpenIDConnect.NewRevocationRequest(ctx, req); err != nil {
|
2022-03-15 22:55:38 +00:00
|
|
|
rfc := fosite.ErrorToRFC6749Error(err)
|
|
|
|
|
2022-04-25 00:31:05 +00:00
|
|
|
ctx.Logger.Errorf("Revocation Request failed with error: %s", rfc.WithExposeDebug(true).GetDescription())
|
2022-03-15 22:55:38 +00:00
|
|
|
}
|
2021-05-04 22:06:05 +00:00
|
|
|
|
2022-11-13 03:26:10 +00:00
|
|
|
ctx.Providers.OpenIDConnect.WriteRevocationResponse(ctx, rw, err)
|
2021-05-04 22:06:05 +00:00
|
|
|
}
|