-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_store.go
126 lines (101 loc) · 2.59 KB
/
client_store.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package arangostore
import (
"context"
"encoding/json"
arangoDriver "github.com/arangodb/go-driver"
"github.com/go-oauth2/oauth2/v4"
"github.com/go-oauth2/oauth2/v4/models"
)
const (
// DefaultClientStoreCollection is the default collection for storing clients.
DefaultClientStoreCollection = "oauth2_clients"
)
// ClientStoreOption is a function that configures the ClientStore.
type ClientStoreOption func(*ClientStore) error
// WithClientStoreCollection configures the collection for the ClientStore.
func WithClientStoreCollection(collection string) ClientStoreOption {
return func(s *ClientStore) error {
if collection == "" {
return ErrNoCollection
}
s.collection = collection
return nil
}
}
// WithClientStoreDatabase configures the database for the ClientStore.
func WithClientStoreDatabase(db arangoDriver.Database) ClientStoreOption {
return func(s *ClientStore) error {
if db == nil {
return ErrNoDatabase
}
s.db = db
return nil
}
}
// ClientStoreItem data item
type ClientStoreItem struct {
Key string `json:"_key"`
Secret string `json:"secret"`
Domain string `json:"domain"`
Data []byte `json:"data"`
}
// ClientStore is a data struct that stores oauth2 client information.
type ClientStore struct {
db arangoDriver.Database
collection string
}
// Create creates a new client in the store.
func (s *ClientStore) Create(info oauth2.ClientInfo) error {
data, err := json.Marshal(info)
if err != nil {
return err
}
coll, err := s.db.Collection(context.Background(), s.collection)
if err != nil {
return err
}
doc := &ClientStoreItem{
Key: info.GetID(),
Secret: info.GetSecret(),
Domain: info.GetDomain(),
Data: data,
}
_, err = coll.CreateDocument(context.Background(), doc)
if err != nil {
return err
}
return nil
}
// GetByID returns the client information by key from the store.
func (s *ClientStore) GetByID(ctx context.Context, key string) (oauth2.ClientInfo, error) {
coll, err := s.db.Collection(ctx, s.collection)
if err != nil {
return nil, err
}
var client ClientStoreItem
_, err = coll.ReadDocument(ctx, key, &client)
if err != nil {
return nil, err
}
var info models.Client
err = json.Unmarshal(client.Data, &info)
if err != nil {
return nil, err
}
return &info, nil
}
// NewClientStore creates a new ClientStore.
func NewClientStore(opts ...ClientStoreOption) (*ClientStore, error) {
s := &ClientStore{
collection: DefaultClientStoreCollection,
}
for _, o := range opts {
if err := o(s); err != nil {
return nil, err
}
}
if s.db == nil {
return nil, ErrNoDatabase
}
return s, nil
}