chore(tfstated): change database account id format to uuidv7

This commit is contained in:
Julien Dessaux 2025-03-17 23:51:37 +01:00
parent 6763596582
commit 15e0a12f61
Signed by: adyxax
GPG key ID: F92E51B86E07177E
6 changed files with 10 additions and 7 deletions

View file

@ -115,7 +115,7 @@ func (db *DB) LoadAccountUsernames() (map[string]string, error) {
return accounts, nil return accounts, nil
} }
func (db *DB) LoadAccountById(id string) (*model.Account, error) { func (db *DB) LoadAccountById(id uuid.UUID) (*model.Account, error) {
account := model.Account{ account := model.Account{
Id: id, Id: id,
} }

View file

@ -12,7 +12,7 @@ import (
"go.n16f.net/uuid" "go.n16f.net/uuid"
) )
func (db *DB) CreateState(path string, accountId string, data []byte) (*model.Version, error) { func (db *DB) CreateState(path string, accountId uuid.UUID, data []byte) (*model.Version, error) {
encryptedData, err := db.dataEncryptionKey.EncryptAES256(data) encryptedData, err := db.dataEncryptionKey.EncryptAES256(data)
if err != nil { if err != nil {
return nil, fmt.Errorf("failed to encrypt state data: %w", err) return nil, fmt.Errorf("failed to encrypt state data: %w", err)
@ -142,7 +142,7 @@ func (db *DB) LoadStates() ([]model.State, error) {
} }
// returns true in case of lock mismatch // returns true in case of lock mismatch
func (db *DB) SetState(path string, accountId string, data []byte, lock string) (bool, error) { func (db *DB) SetState(path string, accountId uuid.UUID, data []byte, lock string) (bool, error) {
encryptedData, err := db.dataEncryptionKey.EncryptAES256(data) encryptedData, err := db.dataEncryptionKey.EncryptAES256(data)
if err != nil { if err != nil {
return false, fmt.Errorf("failed to encrypt state data: %w", err) return false, fmt.Errorf("failed to encrypt state data: %w", err)

View file

@ -6,12 +6,13 @@ import (
"time" "time"
"git.adyxax.org/adyxax/tfstated/pkg/helpers" "git.adyxax.org/adyxax/tfstated/pkg/helpers"
"go.n16f.net/uuid"
) )
type AccountContextKey struct{} type AccountContextKey struct{}
type Account struct { type Account struct {
Id string Id uuid.UUID
Username string Username string
Salt []byte Salt []byte
PasswordHash []byte PasswordHash []byte

View file

@ -2,13 +2,15 @@ package model
import ( import (
"time" "time"
"go.n16f.net/uuid"
) )
type SessionContextKey struct{} type SessionContextKey struct{}
type Session struct { type Session struct {
Id string Id string
AccountId string AccountId uuid.UUID
Created time.Time Created time.Time
Updated time.Time Updated time.Time
Data any Data any

View file

@ -8,7 +8,7 @@ import (
) )
type Version struct { type Version struct {
AccountId string AccountId uuid.UUID
Created time.Time Created time.Time
Data json.RawMessage Data json.RawMessage
Id uuid.UUID Id uuid.UUID

View file

@ -20,7 +20,7 @@
<tbody> <tbody>
{{ range .Versions }} {{ range .Versions }}
<tr> <tr>
<td><a href="/versions/{{ .Id }}">{{ index $.Usernames .AccountId }}</a></td> <td><a href="/versions/{{ .Id }}">{{ index $.Usernames .AccountId.String }}</a></td>
<td><a href="/versions/{{ .Id }}">{{ .Created }}</a></td> <td><a href="/versions/{{ .Id }}">{{ .Created }}</a></td>
</tr> </tr>
{{ end }} {{ end }}