2022-08-30 02:30:36 +00:00
|
|
|
package services
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2022-09-24 19:33:38 +00:00
|
|
|
"github.com/google/uuid"
|
2022-09-27 23:52:13 +00:00
|
|
|
"github.com/hay-kot/homebox/backend/internal/repo"
|
2022-08-30 02:30:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type contextKeys struct {
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
ContextUser = &contextKeys{name: "User"}
|
|
|
|
ContextUserToken = &contextKeys{name: "UserToken"}
|
|
|
|
)
|
|
|
|
|
2022-09-24 19:33:38 +00:00
|
|
|
type Context struct {
|
|
|
|
context.Context
|
|
|
|
|
|
|
|
// UID is a unique identifier for the acting user.
|
|
|
|
UID uuid.UUID
|
|
|
|
|
|
|
|
// GID is a unique identifier for the acting users group.
|
|
|
|
GID uuid.UUID
|
|
|
|
|
|
|
|
// User is the acting user.
|
2022-09-27 23:52:13 +00:00
|
|
|
User *repo.UserOut
|
2022-09-24 19:33:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewContext is a helper function that returns the service context from the context.
|
|
|
|
// This extracts the users from the context and embeds it into the ServiceContext struct
|
|
|
|
func NewContext(ctx context.Context) Context {
|
|
|
|
user := UseUserCtx(ctx)
|
|
|
|
return Context{
|
|
|
|
Context: ctx,
|
|
|
|
UID: user.ID,
|
|
|
|
GID: user.GroupID,
|
|
|
|
User: user,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-30 02:30:36 +00:00
|
|
|
// SetUserCtx is a helper function that sets the ContextUser and ContextUserToken
|
|
|
|
// values within the context of a web request (or any context).
|
2022-09-27 23:52:13 +00:00
|
|
|
func SetUserCtx(ctx context.Context, user *repo.UserOut, token string) context.Context {
|
2022-08-30 02:30:36 +00:00
|
|
|
ctx = context.WithValue(ctx, ContextUser, user)
|
|
|
|
ctx = context.WithValue(ctx, ContextUserToken, token)
|
|
|
|
return ctx
|
|
|
|
}
|
|
|
|
|
|
|
|
// UseUserCtx is a helper function that returns the user from the context.
|
2022-09-27 23:52:13 +00:00
|
|
|
func UseUserCtx(ctx context.Context) *repo.UserOut {
|
2022-08-30 02:30:36 +00:00
|
|
|
if val := ctx.Value(ContextUser); val != nil {
|
2022-09-27 23:52:13 +00:00
|
|
|
return val.(*repo.UserOut)
|
2022-08-30 02:30:36 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// UseTokenCtx is a helper function that returns the user token from the context.
|
|
|
|
func UseTokenCtx(ctx context.Context) string {
|
|
|
|
if val := ctx.Value(ContextUserToken); val != nil {
|
|
|
|
return val.(string)
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|