| 123456789101112131415161718192021222324252627282930 |
- package user
- import (
- "net/http"
- "github.com/porter-dev/porter/api/server/authn"
- "github.com/porter-dev/porter/api/server/handlers"
- "github.com/porter-dev/porter/api/server/shared/apierrors"
- "github.com/porter-dev/porter/api/server/shared/config"
- )
- type UserLogoutHandler struct {
- handlers.PorterHandler
- }
- func NewUserLogoutHandler(
- config *config.Config,
- ) *UserLogoutHandler {
- return &UserLogoutHandler{
- PorterHandler: handlers.NewDefaultPorterHandler(config, nil, nil),
- }
- }
- func (u *UserLogoutHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
- if err := authn.SaveUserUnauthenticated(w, r, u.Config()); err != nil {
- u.HandleAPIError(w, r, apierrors.NewErrInternal(err))
- }
- return
- }
|