Passport/pkg/internal/services/auth.go

130 lines
3.2 KiB
Go
Raw Normal View History

2024-02-20 13:46:15 +00:00
package services
import (
2024-09-22 05:13:05 +00:00
"context"
2024-02-20 13:46:15 +00:00
"fmt"
"time"
2024-03-20 12:56:43 +00:00
2024-09-22 05:13:05 +00:00
"github.com/eko/gocache/lib/v4/cache"
"github.com/eko/gocache/lib/v4/marshaler"
"github.com/eko/gocache/lib/v4/store"
jsoniter "github.com/json-iterator/go"
2024-09-22 05:13:05 +00:00
localCache "git.solsynth.dev/hydrogen/passport/pkg/internal/cache"
"git.solsynth.dev/hydrogen/passport/pkg/internal/models"
2024-02-20 13:46:15 +00:00
"github.com/gofiber/fiber/v2"
"github.com/rs/zerolog/log"
2024-02-20 13:46:15 +00:00
)
func Authenticate(atk, rtk string, rty int) (ctx models.AuthContext, perms map[string]any, newAtk, newRtk string, err error) {
2024-04-20 11:04:33 +00:00
var claims PayloadClaims
claims, err = DecodeJwt(atk)
2024-02-20 13:46:15 +00:00
if err != nil {
if len(rtk) > 0 && rty < 1 {
2024-02-20 13:46:15 +00:00
// Auto refresh and retry
newAtk, newRtk, err = RefreshToken(rtk)
2024-02-20 13:46:15 +00:00
if err == nil {
return Authenticate(newAtk, newRtk, rty+1)
2024-02-20 13:46:15 +00:00
}
}
err = fiber.NewError(fiber.StatusUnauthorized, fmt.Sprintf("invalid auth key: %v", err))
return
2024-02-20 13:46:15 +00:00
}
newAtk = atk
newRtk = rtk
if ctx, err = GetAuthContext(claims.ID); err == nil {
var heldPerms map[string]any
rawHeldPerms, _ := jsoniter.Marshal(ctx.Account.PermNodes)
_ = jsoniter.Unmarshal(rawHeldPerms, &heldPerms)
perms = FilterPermNodes(heldPerms, ctx.Ticket.Claims)
return
}
err = fiber.NewError(fiber.StatusUnauthorized, err.Error())
return
}
2024-09-22 05:13:05 +00:00
func GetAuthContextCacheKey(jti string) string {
return fmt.Sprintf("auth-context#%s", jti)
}
func GetAuthContext(jti string) (models.AuthContext, error) {
var err error
var ctx models.AuthContext
2024-09-22 05:13:05 +00:00
cacheManager := cache.New[any](localCache.S)
marshal := marshaler.New(cacheManager)
contx := context.Background()
if val, err := marshal.Get(contx, GetAuthContextCacheKey(jti), new(models.AuthContext)); err == nil {
ctx = val.(models.AuthContext)
2024-05-17 11:37:58 +00:00
} else {
ctx, err = CacheAuthContext(jti)
2024-05-17 11:37:58 +00:00
log.Debug().Str("jti", jti).Msg("Created a new auth context cache")
}
return ctx, err
}
func CacheAuthContext(jti string) (models.AuthContext, error) {
var ctx models.AuthContext
// Query data from primary database
2024-04-21 04:20:06 +00:00
ticket, err := GetTicketWithToken(jti)
2024-02-20 13:46:15 +00:00
if err != nil {
2024-04-21 04:20:06 +00:00
return ctx, fmt.Errorf("invalid auth ticket: %v", err)
} else if err := ticket.IsAvailable(); err != nil {
return ctx, fmt.Errorf("unavailable auth ticket: %v", err)
2024-02-20 13:46:15 +00:00
}
2024-04-21 04:20:06 +00:00
user, err := GetAccount(ticket.AccountID)
2024-02-20 13:46:15 +00:00
if err != nil {
return ctx, fmt.Errorf("invalid account: %v", err)
}
2024-07-24 09:23:44 +00:00
groups, err := GetUserAccountGroup(user)
if err != nil {
return ctx, fmt.Errorf("unable to get account groups: %v", err)
}
for _, group := range groups {
for k, v := range group.PermNodes {
if _, ok := user.PermNodes[k]; !ok {
user.PermNodes[k] = v
}
}
}
ctx = models.AuthContext{
2024-09-22 05:13:05 +00:00
Ticket: ticket,
Account: user,
2024-02-20 13:46:15 +00:00
}
2024-09-22 05:13:05 +00:00
// Put the data into cache
cacheManager := cache.New[any](localCache.S)
marshal := marshaler.New(cacheManager)
contx := context.Background()
2024-09-22 05:13:05 +00:00
marshal.Set(
contx,
GetAuthContextCacheKey(jti),
ctx,
store.WithExpiration(3*time.Minute),
store.WithTags([]string{"auth-context", fmt.Sprintf("user#%d", user.ID)}),
)
2024-09-22 05:13:05 +00:00
return ctx, nil
2024-05-17 11:37:58 +00:00
}
2024-05-17 11:37:58 +00:00
func InvalidAuthCacheWithUser(userId uint) {
2024-09-22 05:13:05 +00:00
cacheManager := cache.New[any](localCache.S)
contx := context.Background()
cacheManager.Invalidate(
contx,
store.WithInvalidateTags([]string{"auth-context", fmt.Sprintf("user#%d", userId)}),
)
2024-02-20 13:46:15 +00:00
}