-
Notifications
You must be signed in to change notification settings - Fork 180
/
sql.go
261 lines (239 loc) · 6.83 KB
/
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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
/*
* Copyright (c) 2018. Abstrium SAS <team (at) pydio.com>
* This file is part of Pydio Cells.
*
* Pydio Cells is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio Cells is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio Cells. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <https://pydio.com>.
*/
package oauth
import (
"context"
sql2 "database/sql"
"embed"
"fmt"
"time"
"github.com/pydio/cells/v4/common"
"github.com/pydio/cells/v4/common/log"
servicecontext "github.com/pydio/cells/v4/common/service/context"
"github.com/pydio/cells/v4/common/utils/statics"
"github.com/pydio/cells/v4/common/utils/std"
migrate "github.com/rubenv/sql-migrate"
"github.com/pydio/cells/v4/common/proto/auth"
"github.com/pydio/cells/v4/common/sql"
"github.com/pydio/cells/v4/common/utils/configx"
json "github.com/pydio/cells/v4/common/utils/jsonx"
)
var (
//go:embed migrations/*
migrationsFS embed.FS
queries = map[string]string{
"insert": `INSERT INTO idm_personal_tokens VALUES (?,CONCAT('sha256:', SHA2(?, 256)),?,?,?,?,?,?,?,?,?,?)`,
"updateExpire": `UPDATE idm_personal_tokens SET expire_at=? WHERE uuid=?`,
"validToken": `SELECT * FROM idm_personal_tokens WHERE access_token=CONCAT('sha256:', SHA2(?, 256)) AND expire_at > ? LIMIT 0,1`,
"listAll": `SELECT * FROM idm_personal_tokens ORDER BY created_by DESC`,
"listByUser": `SELECT * FROM idm_personal_tokens WHERE user_login LIKE ? ORDER BY created_by DESC`,
"listByType": `SELECT * FROM idm_personal_tokens WHERE pat_type=? ORDER BY created_by DESC`,
"listByBoth": `SELECT * FROM idm_personal_tokens WHERE pat_type=? AND user_login LIKE ? ORDER BY created_by DESC`,
"delete": `DELETE FROM idm_personal_tokens WHERE uuid=?`,
"pruneExpired": `DELETE FROM idm_personal_tokens WHERE expire_at < ?`,
// Sqlite does not support CONCAT and SHA2 functions
"insert-sqlite": `INSERT INTO idm_personal_tokens VALUES (?,?,?,?,?,?,?,?,?,?,?,?)`,
"validToken-sqlite": `SELECT * FROM idm_personal_tokens WHERE access_token=? AND expire_at > ? LIMIT 0,1`,
}
)
type sqlImpl struct {
*sql.Handler
}
// Init handler for the SQL DAO
func (s *sqlImpl) Init(ctx context.Context, options configx.Values) error {
// super
if er := s.DAO.Init(ctx, options); er != nil {
return er
}
// Doing the database migrations
migrations := &sql.FSMigrationSource{
Box: statics.AsFS(migrationsFS, "migrations"),
Dir: s.Driver(),
TablePrefix: s.Prefix(),
}
var isRetry bool
sC := servicecontext.WithServiceName(context.Background(), common.ServiceGrpcNamespace_+common.ServiceOAuth)
err := std.Retry(sC, func() error {
_, err := sql.ExecMigration(s.DB(), s.Driver(), migrations, migrate.Up, "idm_oauth_")
if err != nil {
log.Logger(sC).Warn("Could not apply idm_oauth_ migration, maybe because of concurrent access, retrying...")
isRetry = true
} else if isRetry {
log.Logger(sC).Info("Migration now applied successfully")
}
return err
}, 1*time.Second, 10*time.Second)
if err != nil {
return err
}
// Preparing the db statements
if options.Val("prepare").Default(true).Bool() {
for key, query := range queries {
if err := s.Prepare(key, query); err != nil {
return fmt.Errorf("unable to prepare query[%s]: %s - error: %v", key, query, err)
}
}
}
return nil
}
func (s *sqlImpl) Load(accessToken string) (*auth.PersonalAccessToken, error) {
s.Lock()
defer s.Unlock()
key := "validToken"
if s.Driver() == "sqlite3" {
key = "validToken-sqlite"
}
stmt, er := s.GetStmt(key)
if er != nil {
return nil, er
}
rows, er := stmt.Query(accessToken, int32(time.Now().Unix()))
if er != nil {
return nil, er
}
defer rows.Close()
if rows.Next() {
return s.scan(rows)
}
return nil, fmt.Errorf("not.found")
}
func (s *sqlImpl) Store(accessToken string, token *auth.PersonalAccessToken, update bool) error {
s.Lock()
defer s.Unlock()
if update {
updateStmt, er := s.GetStmt("updateExpire")
if er != nil {
return er
}
_, e := updateStmt.Exec(int32(token.ExpiresAt), token.Uuid)
return e
} else {
insertKey := "insert"
if s.Driver() == "sqlite3" {
insertKey = "insert-sqlite"
}
insertStmt, er := s.GetStmt(insertKey)
if er != nil {
return er
}
scopes, _ := json.Marshal(token.Scopes)
_, err := insertStmt.Exec(
token.Uuid,
accessToken,
token.Type,
token.Label,
token.UserUuid,
token.UserLogin,
token.AutoRefreshWindow,
int32(token.ExpiresAt),
int32(token.CreatedAt),
token.CreatedBy,
int32(token.UpdatedAt),
string(scopes),
)
return err
}
}
func (s *sqlImpl) Delete(patUuid string) error {
s.Lock()
defer s.Unlock()
stmt, err := s.GetStmt("delete")
if err != nil {
return err
}
_, e := stmt.Exec(patUuid)
return e
}
func (s *sqlImpl) List(byType auth.PatType, byUser string) (tt []*auth.PersonalAccessToken, e error) {
s.Lock()
defer s.Unlock()
var stmt sql.Stmt
var err error
var args []interface{}
if byUser != "" && byType != auth.PatType_ANY {
stmt, err = s.GetStmt("listByBoth")
args = append(args, byType, byUser)
} else if byUser != "" {
stmt, err = s.GetStmt("listByUser")
args = append(args, byUser)
} else if byType != auth.PatType_ANY {
stmt, err = s.GetStmt("listByType")
args = append(args, byType)
} else {
stmt, err = s.GetStmt("listAll")
}
if err != nil {
return tt, err
}
rows, err := stmt.Query(args...)
if err != nil {
return tt, err
}
defer rows.Close()
for rows.Next() {
if t, e := s.scan(rows); e != nil {
return tt, e
} else {
tt = append(tt, t)
}
}
return
}
func (s *sqlImpl) scan(rows *sql2.Rows) (*auth.PersonalAccessToken, error) {
token := auth.PersonalAccessToken{}
var exp, cAt, uAt int32
var scopes, parsedToken string
e := rows.Scan(
&token.Uuid,
&parsedToken,
&token.Type,
&token.Label,
&token.UserUuid,
&token.UserLogin,
&token.AutoRefreshWindow,
&exp,
&cAt,
&token.CreatedBy,
&uAt,
&scopes,
)
if e != nil {
return nil, e
}
token.ExpiresAt = int64(exp)
token.CreatedAt = int64(cAt)
token.UpdatedAt = int64(uAt)
if e := json.Unmarshal([]byte(scopes), &token.Scopes); e != nil {
return nil, e
}
return &token, nil
}
func (s *sqlImpl) PruneExpired() (int, error) {
stmt, e := s.GetStmt("pruneExpired")
if e != nil {
return 0, e
}
if res, er := stmt.Exec(time.Now().Unix()); er != nil {
return 0, er
} else {
count, _ := res.RowsAffected()
return int(count), nil
}
}