-
Notifications
You must be signed in to change notification settings - Fork 0
/
manager_sql.go
241 lines (214 loc) · 6.22 KB
/
manager_sql.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
// Copyright © 2017 Aeneas Rekkas <aeneas+oss@aeneas.io>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package client
import (
"context"
"database/sql"
"fmt"
"strings"
"github.com/jmoiron/sqlx"
"github.com/ory/fosite"
"github.com/ory/hydra/pkg"
"github.com/pborman/uuid"
"github.com/pkg/errors"
"github.com/rubenv/sql-migrate"
)
var migrations = &migrate.MemoryMigrationSource{
Migrations: []*migrate.Migration{
{
Id: "1",
Up: []string{`CREATE TABLE IF NOT EXISTS hydra_client (
id varchar(255) NOT NULL PRIMARY KEY,
client_name text NOT NULL,
client_secret text NOT NULL,
redirect_uris text NOT NULL,
grant_types text NOT NULL,
response_types text NOT NULL,
scope text NOT NULL,
owner text NOT NULL,
policy_uri text NOT NULL,
tos_uri text NOT NULL,
client_uri text NOT NULL,
logo_uri text NOT NULL,
contacts text NOT NULL,
public boolean NOT NULL
)`},
Down: []string{
"DROP TABLE hydra_client",
},
},
},
}
type SQLManager struct {
Hasher fosite.Hasher
DB *sqlx.DB
}
type sqlData struct {
ID string `db:"id"`
Name string `db:"client_name"`
Secret string `db:"client_secret"`
RedirectURIs string `db:"redirect_uris"`
GrantTypes string `db:"grant_types"`
ResponseTypes string `db:"response_types"`
Scope string `db:"scope"`
Owner string `db:"owner"`
PolicyURI string `db:"policy_uri"`
TermsOfServiceURI string `db:"tos_uri"`
ClientURI string `db:"client_uri"`
LogoURI string `db:"logo_uri"`
Contacts string `db:"contacts"`
Public bool `db:"public"`
}
var sqlParams = []string{
"id",
"client_name",
"client_secret",
"redirect_uris",
"grant_types",
"response_types",
"scope",
"owner",
"policy_uri",
"tos_uri",
"client_uri",
"logo_uri",
"contacts",
"public",
}
func sqlDataFromClient(d *Client) *sqlData {
return &sqlData{
ID: d.ID,
Name: d.Name,
Secret: d.Secret,
RedirectURIs: strings.Join(d.RedirectURIs, "|"),
GrantTypes: strings.Join(d.GrantTypes, "|"),
ResponseTypes: strings.Join(d.ResponseTypes, "|"),
Scope: d.Scope,
Owner: d.Owner,
PolicyURI: d.PolicyURI,
TermsOfServiceURI: d.TermsOfServiceURI,
ClientURI: d.ClientURI,
LogoURI: d.LogoURI,
Contacts: strings.Join(d.Contacts, "|"),
Public: d.Public,
}
}
func (d *sqlData) ToClient() *Client {
return &Client{
ID: d.ID,
Name: d.Name,
Secret: d.Secret,
RedirectURIs: pkg.SplitNonEmpty(d.RedirectURIs, "|"),
GrantTypes: pkg.SplitNonEmpty(d.GrantTypes, "|"),
ResponseTypes: pkg.SplitNonEmpty(d.ResponseTypes, "|"),
Scope: d.Scope,
Owner: d.Owner,
PolicyURI: d.PolicyURI,
TermsOfServiceURI: d.TermsOfServiceURI,
ClientURI: d.ClientURI,
LogoURI: d.LogoURI,
Contacts: pkg.SplitNonEmpty(d.Contacts, "|"),
Public: d.Public,
}
}
func (s *SQLManager) CreateSchemas() (int, error) {
migrate.SetTable("hydra_client_migration")
n, err := migrate.Exec(s.DB.DB, s.DB.DriverName(), migrations, migrate.Up)
if err != nil {
return 0, errors.Wrapf(err, "Could not migrate sql schema, applied %d migrations", n)
}
return n, nil
}
func (m *SQLManager) GetConcreteClient(id string) (*Client, error) {
var d sqlData
if err := m.DB.Get(&d, m.DB.Rebind("SELECT * FROM hydra_client WHERE id=?"), id); err == sql.ErrNoRows {
return nil, errors.Wrap(pkg.ErrNotFound, "")
} else if err != nil {
return nil, errors.WithStack(err)
}
return d.ToClient(), nil
}
func (m *SQLManager) GetClient(_ context.Context, id string) (fosite.Client, error) {
return m.GetConcreteClient(id)
}
func (m *SQLManager) UpdateClient(c *Client) error {
o, err := m.GetClient(context.Background(), c.ID)
if err != nil {
return errors.WithStack(err)
}
if c.Secret == "" {
c.Secret = string(o.GetHashedSecret())
} else {
h, err := m.Hasher.Hash([]byte(c.Secret))
if err != nil {
return errors.WithStack(err)
}
c.Secret = string(h)
}
s := sqlDataFromClient(c)
var query []string
for _, param := range sqlParams {
query = append(query, fmt.Sprintf("%s=:%s", param, param))
}
if _, err := m.DB.NamedExec(fmt.Sprintf(`UPDATE hydra_client SET %s WHERE id=:id`, strings.Join(query, ", ")), s); err != nil {
return errors.WithStack(err)
}
return nil
}
func (m *SQLManager) Authenticate(id string, secret []byte) (*Client, error) {
c, err := m.GetConcreteClient(id)
if err != nil {
return nil, errors.WithStack(err)
}
if err := m.Hasher.Compare(c.GetHashedSecret(), secret); err != nil {
return nil, errors.WithStack(err)
}
return c, nil
}
func (m *SQLManager) CreateClient(c *Client) error {
if c.ID == "" {
c.ID = uuid.New()
}
h, err := m.Hasher.Hash([]byte(c.Secret))
if err != nil {
return errors.WithStack(err)
}
c.Secret = string(h)
data := sqlDataFromClient(c)
if _, err := m.DB.NamedExec(fmt.Sprintf(
"INSERT INTO hydra_client (%s) VALUES (%s)",
strings.Join(sqlParams, ", "),
":"+strings.Join(sqlParams, ", :"),
), data); err != nil {
return errors.WithStack(err)
}
return nil
}
func (m *SQLManager) DeleteClient(id string) error {
if _, err := m.DB.Exec(m.DB.Rebind(`DELETE FROM hydra_client WHERE id=?`), id); err != nil {
return errors.WithStack(err)
}
return nil
}
func (m *SQLManager) GetClients() (clients map[string]Client, err error) {
var d = []sqlData{}
clients = make(map[string]Client)
if err := m.DB.Select(&d, "SELECT * FROM hydra_client"); err != nil {
return nil, errors.WithStack(err)
}
for _, k := range d {
clients[k.ID] = *k.ToClient()
}
return clients, nil
}