mirror of https://github.com/authelia/authelia.git
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
package handlers
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
|
|
"github.com/authelia/authelia/v4/internal/middlewares"
|
|
)
|
|
|
|
type logoutBody struct {
|
|
TargetURL string `json:"targetURL"`
|
|
}
|
|
|
|
type logoutResponseBody struct {
|
|
SafeTargetURL bool `json:"safeTargetURL"`
|
|
}
|
|
|
|
// LogoutPOST is the handler logging out the user attached to the given cookie.
|
|
func LogoutPOST(ctx *middlewares.AutheliaCtx) {
|
|
body := logoutBody{}
|
|
responseBody := logoutResponseBody{SafeTargetURL: false}
|
|
|
|
err := ctx.ParseBody(&body)
|
|
if err != nil {
|
|
ctx.Error(fmt.Errorf("unable to parse body during logout: %w", err), messageOperationFailed)
|
|
}
|
|
|
|
err = ctx.DestroySession()
|
|
if err != nil {
|
|
ctx.Error(fmt.Errorf("unable to destroy session during logout: %w", err), messageOperationFailed)
|
|
}
|
|
|
|
redirectionURL, err := url.ParseRequestURI(body.TargetURL)
|
|
if err == nil {
|
|
responseBody.SafeTargetURL = ctx.IsSafeRedirectionTargetURI(redirectionURL)
|
|
}
|
|
|
|
if body.TargetURL != "" {
|
|
ctx.Logger.Debugf("Logout target url is %s, safe %t", body.TargetURL, responseBody.SafeTargetURL)
|
|
}
|
|
|
|
err = ctx.SetJSONBody(responseBody)
|
|
if err != nil {
|
|
ctx.Error(fmt.Errorf("unable to set body during logout: %w", err), messageOperationFailed)
|
|
}
|
|
}
|