mux/middleware/session/session.go

95 lines
2.2 KiB
Go
Raw Normal View History

package session
2024-07-29 02:38:17 +03:00
import (
"context"
"errors"
"net/http"
"sync"
2024-07-29 02:38:17 +03:00
"go.neonxp.ru/mux"
"go.neonxp.ru/mux/middleware"
2024-07-29 02:38:17 +03:00
"go.neonxp.ru/objectid"
)
type Config struct {
2024-07-29 02:38:17 +03:00
SessionCookie string
Path string
Domain string
Secure bool
HttpOnly bool
MaxAge int
}
var DefaultConfig Config = Config{
2024-07-29 02:38:17 +03:00
SessionCookie: "_session",
Path: "/",
Domain: "",
Secure: false,
HttpOnly: true,
MaxAge: 30 * 3600,
}
func Middleware(config Config, storer Store) mux.Middleware {
if storer == nil {
storer = &MemoryStore{store: sync.Map{}}
}
2024-07-29 02:38:17 +03:00
return func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
var (
sessionID string
values Value
2024-07-29 02:38:17 +03:00
)
cookie, err := r.Cookie(config.SessionCookie)
switch {
case err == nil:
sessionID = cookie.Value
values = storer.Load(r.Context(), sessionID)
case errors.Is(err, http.ErrNoCookie):
sessionID = objectid.New().String()
values = Value{}
2024-07-29 02:38:17 +03:00
}
http.SetCookie(w, &http.Cookie{
Name: config.SessionCookie,
Value: sessionID,
Path: config.Path,
Domain: config.Domain,
Secure: config.Secure,
HttpOnly: config.HttpOnly,
MaxAge: config.MaxAge,
})
ctx := context.WithValue(r.Context(), middleware.SessionValueKey, &values)
ctx = context.WithValue(ctx, middleware.SessionIDKey, sessionID)
ctx = context.WithValue(ctx, middleware.SessionConfigKey, config)
ctx = context.WithValue(ctx, middleware.SessionStorerKey, storer)
2024-07-29 02:38:17 +03:00
h.ServeHTTP(w, r.WithContext(ctx))
storer.Save(r.Context(), sessionID, values)
})
}
}
func FromRequest(r *http.Request) *Value {
return r.Context().Value(middleware.SessionValueKey).(*Value)
2024-07-29 02:38:17 +03:00
}
func Clear(w http.ResponseWriter, r *http.Request) {
storer := r.Context().Value(middleware.SessionStorerKey).(Store)
sessionID := r.Context().Value(middleware.SessionIDKey).(string)
2024-07-29 02:38:17 +03:00
storer.Remove(r.Context(), sessionID)
config := r.Context().Value(middleware.SessionConfigKey).(Config)
2024-07-29 02:38:17 +03:00
http.SetCookie(w, &http.Cookie{
Name: config.SessionCookie,
Value: sessionID,
Path: config.Path,
Domain: config.Domain,
Secure: config.Secure,
HttpOnly: config.HttpOnly,
MaxAge: -1,
})
}