32 lines
865 B
Go
32 lines
865 B
Go
package cache
|
|
|
|
import (
|
|
"context"
|
|
"github.com/fthvgb1/wp-go/app/pkg/logs"
|
|
"github.com/fthvgb1/wp-go/app/pkg/models"
|
|
"github.com/fthvgb1/wp-go/cache/cachemanager"
|
|
"github.com/fthvgb1/wp-go/model"
|
|
"time"
|
|
)
|
|
|
|
func getUserById(a ...any) (r models.Users, err error) {
|
|
ctx := a[0].(context.Context)
|
|
uid := a[1].(uint64)
|
|
r, err = model.FindOneById[models.Users](ctx, uid)
|
|
return
|
|
}
|
|
|
|
func GetUserByName(ctx context.Context, username string) (models.Users, error) {
|
|
return usersNameCache.GetCache(ctx, username, time.Second, ctx, username)
|
|
}
|
|
|
|
func GetAllUsername(ctx context.Context) (map[string]struct{}, error) {
|
|
return allUsernameCache.GetCache(ctx, time.Second, ctx)
|
|
}
|
|
|
|
func GetUserById(ctx context.Context, uid uint64) models.Users {
|
|
r, err := cachemanager.Get[models.Users]("userData", ctx, uid, time.Second)
|
|
logs.IfError(err, "get user", uid)
|
|
return r
|
|
}
|