Skip to content

Commit ce8d030

Browse files
committedJun 6, 2023
NewCredential/NewAccount: use types.AccountID instead of string.
1 parent d0885d6 commit ce8d030

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed
 

‎cmd/tempest-make-user/main.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package main
22

33
import (
4-
"encoding/base64"
54
"flag"
65

76
"zenhack.net/go/tempest/internal/common/types"
@@ -17,7 +16,7 @@ var (
1716
)
1817

1918
func main() {
20-
accountID := base64.RawStdEncoding.EncodeToString(tokenutil.GenToken()[:16])
19+
accountID := types.AccountID(tokenutil.Gen128Base64())
2120
flag.Parse()
2221
role := types.Role(*roleStr)
2322
if !role.IsValid() {

‎internal/server/database/legacy/import.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ func importUsers(snapshotDir string, tx database.Tx) error {
202202
return
203203
}
204204
throw(tx.AddAccount(database.NewAccount{
205-
ID: u.ID,
205+
ID: types.AccountID(u.ID),
206206
Role: u.Role,
207207
Profile: u.Profile,
208208
}))
@@ -229,7 +229,7 @@ func importUsers(snapshotDir string, tx database.Tx) error {
229229
}
230230
owner := credentialOwners[u.ID]
231231
var entry database.NewCredential
232-
entry.AccountID = owner.accountID
232+
entry.AccountID = types.AccountID(owner.accountID)
233233
entry.Login = owner.login
234234
if u.Services.Dev.Name != "" {
235235
entry.Credential = types.Credential{

‎internal/server/database/queries.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ type NewGrain struct {
8383
}
8484

8585
type NewAccount struct {
86-
ID string
86+
ID types.AccountID
8787
Role types.Role
8888
Profile Profile
8989
}
@@ -94,7 +94,7 @@ type Profile struct {
9494
}
9595

9696
type NewCredential struct {
97-
AccountID string
97+
AccountID types.AccountID
9898
Login bool
9999
Credential types.Credential
100100
}
@@ -256,11 +256,11 @@ func (tx Tx) CredentialAccount(cred types.Credential) (types.AccountID, error) {
256256
// No account; create one and link it to the credential:
257257
accountID = types.AccountID(tokenutil.Gen128Base64())
258258
throw(tx.AddAccount(NewAccount{
259-
ID: string(accountID),
259+
ID: accountID,
260260
Role: types.RoleVisitor,
261261
}))
262262
throw(tx.AddCredential(NewCredential{
263-
AccountID: string(accountID),
263+
AccountID: accountID,
264264
Login: true,
265265
Credential: cred,
266266
}))

0 commit comments

Comments
 (0)