✨ Punishments permission override
This commit is contained in:
parent
de28ae027f
commit
c8e8104d5d
@ -39,6 +39,8 @@ type Account struct {
|
|||||||
|
|
||||||
Relations []AccountRelationship `json:"relations,omitempty" gorm:"foreignKey:AccountID"`
|
Relations []AccountRelationship `json:"relations,omitempty" gorm:"foreignKey:AccountID"`
|
||||||
|
|
||||||
|
Punishments []Punishment `json:"punishments,omitempty"`
|
||||||
|
|
||||||
// Keep this for backward compability
|
// Keep this for backward compability
|
||||||
Description string `json:"description" gorm:"-"`
|
Description string `json:"description" gorm:"-"`
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,8 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
|
"maps"
|
||||||
|
|
||||||
"git.solsynth.dev/hypernet/nexus/pkg/proto"
|
"git.solsynth.dev/hypernet/nexus/pkg/proto"
|
||||||
"git.solsynth.dev/hypernet/passport/pkg/authkit/models"
|
"git.solsynth.dev/hypernet/passport/pkg/authkit/models"
|
||||||
localCache "git.solsynth.dev/hypernet/passport/pkg/internal/cache"
|
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)
|
services.CacheAccount(account)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,11 +2,12 @@ package services
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"git.solsynth.dev/hypernet/nexus/pkg/nex/sec"
|
|
||||||
"git.solsynth.dev/hypernet/passport/pkg/authkit/models"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"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"
|
"git.solsynth.dev/hypernet/passport/pkg/internal/database"
|
||||||
"github.com/samber/lo"
|
"github.com/samber/lo"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
@ -35,8 +36,7 @@ func GetToken(ticket models.AuthTicket) (atk, rtk string, err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
ticket.LastGrantAt = lo.ToPtr(time.Now())
|
database.C.Model(&ticket).Update("last_grant_at", time.Now())
|
||||||
database.C.Save(&ticket)
|
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user