Punishments permission override

This commit is contained in:
LittleSheep 2025-03-25 23:29:39 +08:00
parent de28ae027f
commit c8e8104d5d
3 changed files with 19 additions and 4 deletions

View File

@ -39,6 +39,8 @@ type Account struct {
Relations []AccountRelationship `json:"relations,omitempty" gorm:"foreignKey:AccountID"`
Punishments []Punishment `json:"punishments,omitempty"`
// Keep this for backward compability
Description string `json:"description" gorm:"-"`
}

View File

@ -4,6 +4,8 @@ import (
"context"
"fmt"
"maps"
"git.solsynth.dev/hypernet/nexus/pkg/proto"
"git.solsynth.dev/hypernet/passport/pkg/authkit/models"
localCache "git.solsynth.dev/hypernet/passport/pkg/internal/cache"
@ -65,6 +67,17 @@ func (v *App) GetUser(ctx context.Context, request *proto.GetUserRequest) (*prot
}
}
punishments, err := services.ListPunishments(account)
if err != nil {
return nil, status.Errorf(codes.Internal, fmt.Sprintf("unable to get account punishments: %v", err))
}
account.Punishments = punishments
for _, punishment := range punishments {
if punishment.Type == models.PunishmentTypeLimited && len(punishment.PermNodes) > 0 {
maps.Copy(account.PermNodes, punishment.PermNodes)
}
}
services.CacheAccount(account)
}

View File

@ -2,11 +2,12 @@ package services
import (
"fmt"
"git.solsynth.dev/hypernet/nexus/pkg/nex/sec"
"git.solsynth.dev/hypernet/passport/pkg/authkit/models"
"strconv"
"time"
"git.solsynth.dev/hypernet/nexus/pkg/nex/sec"
"git.solsynth.dev/hypernet/passport/pkg/authkit/models"
"git.solsynth.dev/hypernet/passport/pkg/internal/database"
"github.com/samber/lo"
"github.com/spf13/viper"
@ -35,8 +36,7 @@ func GetToken(ticket models.AuthTicket) (atk, rtk string, err error) {
return
}
ticket.LastGrantAt = lo.ToPtr(time.Now())
database.C.Save(&ticket)
database.C.Model(&ticket).Update("last_grant_at", time.Now())
return
}