-
Notifications
You must be signed in to change notification settings - Fork 402
/
registrationtoken.go
75 lines (59 loc) · 2.07 KB
/
registrationtoken.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
package console
import (
"context"
"crypto/rand"
"encoding/base64"
"time"
"github.com/skyrings/skyring-common/tools/uuid"
"github.com/zeebo/errs"
)
// RegistrationTokens is interface for working with registration tokens
//
// architecture: Database
type RegistrationTokens interface {
// Create creates new registration token
Create(ctx context.Context, projectLimit int) (*RegistrationToken, error)
// GetBySecret retrieves RegTokenInfo with given Secret
GetBySecret(ctx context.Context, secret RegistrationSecret) (*RegistrationToken, error)
// GetByOwnerID retrieves RegTokenInfo by ownerID
GetByOwnerID(ctx context.Context, ownerID uuid.UUID) (*RegistrationToken, error)
// UpdateOwner updates registration token's owner
UpdateOwner(ctx context.Context, secret RegistrationSecret, ownerID uuid.UUID) error
}
// RegistrationSecret stores secret of registration token
type RegistrationSecret [32]byte
// RegistrationToken describing api key model in the database
type RegistrationToken struct {
// Secret is PK of the table and keeps unique value forRegToken
Secret RegistrationSecret
// OwnerID stores current token owner ID
OwnerID *uuid.UUID
// ProjectLimit defines how many projects user is able to create
ProjectLimit int `json:"projectLimit"`
CreatedAt time.Time `json:"createdAt"`
}
// NewRegistrationSecret creates new registration secret
func NewRegistrationSecret() (RegistrationSecret, error) {
var b [32]byte
_, err := rand.Read(b[:])
if err != nil {
return b, errs.New("error creating registration secret")
}
return b, nil
}
// String implements Stringer
func (secret RegistrationSecret) String() string {
return base64.URLEncoding.EncodeToString(secret[:])
}
// RegistrationSecretFromBase64 creates new registration secret from base64 string
func RegistrationSecretFromBase64(s string) (RegistrationSecret, error) {
var secret RegistrationSecret
b, err := base64.URLEncoding.DecodeString(s)
if err != nil {
return secret, err
}
copy(secret[:], b)
return secret, nil
}