-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
adapter.go
626 lines (541 loc) · 14.5 KB
/
adapter.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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
package pgadapter
import (
"context"
"fmt"
"strings"
"github.com/casbin/casbin/v2/model"
"github.com/casbin/casbin/v2/persist"
"github.com/go-pg/pg/v10"
"github.com/go-pg/pg/v10/orm"
"github.com/mmcloughlin/meow"
)
const DefaultTableName = "casbin_rule"
const DefaultDatabaseName = "casbin"
// CasbinRule represents a rule in Casbin.
type CasbinRule struct {
tableName struct{} `pg:"_"`
ID string
Ptype string
V0 string
V1 string
V2 string
V3 string
V4 string
V5 string
}
type Filter struct {
P []string
G []string
}
// Adapter represents the github.com/go-pg/pg adapter for policy storage.
type Adapter struct {
db *pg.DB
tableName string
skipTableCreate bool
filtered bool
}
type Option func(a *Adapter)
// NewAdapter is the constructor for Adapter.
// param:arg should be a PostgreS URL string or of type *pg.Options
// param:dbname is the name of the database to use and can is optional.
// If no dbname is provided, the default database name is "casbin" which will be created automatically.
// If arg is *pg.Options, the arg.Database field is omitted and will be modified according to dbname
func NewAdapter(arg interface{}, dbname ...string) (*Adapter, error) {
var db *pg.DB
var err error
if len(dbname) > 0 {
db, err = createCasbinDatabase(arg, dbname[0])
} else {
db, err = createCasbinDatabase(arg, DefaultDatabaseName)
}
if err != nil {
return nil, fmt.Errorf("pgadapter.NewAdapter: %v", err)
}
a := &Adapter{db: db, tableName: DefaultTableName}
if err := a.createTableifNotExists(); err != nil {
return nil, fmt.Errorf("pgadapter.NewAdapter: %v", err)
}
return a, nil
}
// NewAdapterByDB creates new Adapter by using existing DB connection
// creates table from CasbinRule struct if it doesn't exist
func NewAdapterByDB(db *pg.DB, opts ...Option) (*Adapter, error) {
a := &Adapter{db: db, tableName: DefaultTableName}
for _, opt := range opts {
opt(a)
}
if !a.skipTableCreate {
if err := a.createTableifNotExists(); err != nil {
return nil, fmt.Errorf("pgadapter.NewAdapter: %v", err)
}
}
return a, nil
}
// WithTableName can be used to pass custom table name for Casbin rules
func WithTableName(tableName string) Option {
return func(a *Adapter) {
a.tableName = tableName
}
}
// SkipTableCreate skips the table creation step when the adapter starts
// If the Casbin rules table does not exist, it will lead to issues when using the adapter
func SkipTableCreate() Option {
return func(a *Adapter) {
a.skipTableCreate = true
}
}
func createCasbinDatabase(arg interface{}, dbname string) (*pg.DB, error) {
var opts *pg.Options
var err error
if connURL, ok := arg.(string); ok {
opts, err = pg.ParseURL(connURL)
if err != nil {
return nil, err
}
} else {
opts, ok = arg.(*pg.Options)
if !ok {
return nil, fmt.Errorf("must pass in a PostgreS URL string or an instance of *pg.Options, received %T instead", arg)
}
}
db := pg.Connect(opts)
defer db.Close()
_, err = db.Exec(fmt.Sprintf("CREATE DATABASE %s", dbname))
if err != nil && !strings.Contains(err.Error(), "42P04") {
return nil, err
}
db.Close()
opts.Database = dbname
db = pg.Connect(opts)
return db, nil
}
// Close close database connection
func (a *Adapter) Close() error {
if a != nil && a.db != nil {
return a.db.Close()
}
return nil
}
func (a *Adapter) createTableifNotExists() error {
err := a.db.Model((*CasbinRule)(nil)).Table(a.tableName).CreateTable(&orm.CreateTableOptions{
Temp: false,
IfNotExists: true,
})
if err != nil {
return err
}
return nil
}
func (r *CasbinRule) String() string {
const prefixLine = ", "
var sb strings.Builder
sb.Grow(
len(r.Ptype) +
len(r.V0) + len(r.V1) + len(r.V2) +
len(r.V3) + len(r.V4) + len(r.V5),
)
sb.WriteString(r.Ptype)
if len(r.V0) > 0 {
sb.WriteString(prefixLine)
sb.WriteString(r.V0)
}
if len(r.V1) > 0 {
sb.WriteString(prefixLine)
sb.WriteString(r.V1)
}
if len(r.V2) > 0 {
sb.WriteString(prefixLine)
sb.WriteString(r.V2)
}
if len(r.V3) > 0 {
sb.WriteString(prefixLine)
sb.WriteString(r.V3)
}
if len(r.V4) > 0 {
sb.WriteString(prefixLine)
sb.WriteString(r.V4)
}
if len(r.V5) > 0 {
sb.WriteString(prefixLine)
sb.WriteString(r.V5)
}
return sb.String()
}
// LoadPolicy loads policy from database.
func (a *Adapter) LoadPolicy(model model.Model) error {
var lines []*CasbinRule
if err := a.db.Model(&lines).Table(a.tableName).Select(); err != nil {
return err
}
for _, line := range lines {
err := persist.LoadPolicyLine(line.String(), model)
if err != nil {
return err
}
}
a.filtered = false
return nil
}
func policyID(ptype string, rule []string) string {
data := strings.Join(append([]string{ptype}, rule...), ",")
sum := meow.Checksum(0, []byte(data))
return fmt.Sprintf("%x", sum)
}
func savePolicyLine(ptype string, rule []string) *CasbinRule {
line := &CasbinRule{Ptype: ptype}
l := len(rule)
if l > 0 {
line.V0 = rule[0]
}
if l > 1 {
line.V1 = rule[1]
}
if l > 2 {
line.V2 = rule[2]
}
if l > 3 {
line.V3 = rule[3]
}
if l > 4 {
line.V4 = rule[4]
}
if l > 5 {
line.V5 = rule[5]
}
line.ID = policyID(ptype, rule)
return line
}
// SavePolicy saves policy to database.
func (a *Adapter) SavePolicy(model model.Model) error {
tx, err := a.db.Begin()
if err != nil {
return fmt.Errorf("start DB transaction: %v", err)
}
defer tx.Close()
_, err = tx.Model((*CasbinRule)(nil)).Table(a.tableName).Where("id IS NOT NULL").Delete()
if err != nil {
return err
}
var lines []*CasbinRule
for ptype, ast := range model["p"] {
for _, rule := range ast.Policy {
line := savePolicyLine(ptype, rule)
lines = append(lines, line)
}
}
for ptype, ast := range model["g"] {
for _, rule := range ast.Policy {
line := savePolicyLine(ptype, rule)
lines = append(lines, line)
}
}
for _, line := range lines {
_, err = tx.Model(line).Table(a.tableName).
OnConflict("DO NOTHING").
Insert()
if err != nil {
return err
}
}
err = tx.Commit()
if err != nil {
return fmt.Errorf("commit DB transaction: %v", err)
}
return nil
}
// AddPolicy adds a policy rule to the storage.
func (a *Adapter) AddPolicy(sec string, ptype string, rule []string) error {
line := savePolicyLine(ptype, rule)
err := a.db.RunInTransaction(context.Background(), func(tx *pg.Tx) error {
_, err := a.db.Model(line).
Table(a.tableName).
OnConflict("DO NOTHING").
Insert()
return err
})
return err
}
// AddPolicies adds policy rules to the storage.
func (a *Adapter) AddPolicies(sec string, ptype string, rules [][]string) error {
var lines []*CasbinRule
for _, rule := range rules {
line := savePolicyLine(ptype, rule)
lines = append(lines, line)
}
err := a.db.RunInTransaction(context.Background(), func(tx *pg.Tx) error {
_, err := tx.Model(&lines).
Table(a.tableName).
OnConflict("DO NOTHING").
Insert()
return err
})
return err
}
// RemovePolicy removes a policy rule from the storage.
func (a *Adapter) RemovePolicy(sec string, ptype string, rule []string) error {
line := savePolicyLine(ptype, rule)
err := a.db.RunInTransaction(context.Background(), func(tx *pg.Tx) error {
_, err := a.db.Model(line).Table(a.tableName).WherePK().Delete()
return err
})
return err
}
// RemovePolicies removes policy rules from the storage.
func (a *Adapter) RemovePolicies(sec string, ptype string, rules [][]string) error {
var lines []*CasbinRule
for _, rule := range rules {
line := savePolicyLine(ptype, rule)
lines = append(lines, line)
}
err := a.db.RunInTransaction(context.Background(), func(tx *pg.Tx) error {
_, err := tx.Model(&lines).Table(a.tableName).
Delete()
return err
})
return err
}
// RemoveFilteredPolicy removes policy rules that match the filter from the storage.
func (a *Adapter) RemoveFilteredPolicy(sec string, ptype string, fieldIndex int, fieldValues ...string) error {
query := a.db.Model((*CasbinRule)(nil)).Table(a.tableName).Where("ptype = ?", ptype)
idx := fieldIndex + len(fieldValues)
if fieldIndex <= 0 && idx > 0 && fieldValues[0-fieldIndex] != "" {
query = query.Where("v0 = ?", fieldValues[0-fieldIndex])
}
if fieldIndex <= 1 && idx > 1 && fieldValues[1-fieldIndex] != "" {
query = query.Where("v1 = ?", fieldValues[1-fieldIndex])
}
if fieldIndex <= 2 && idx > 2 && fieldValues[2-fieldIndex] != "" {
query = query.Where("v2 = ?", fieldValues[2-fieldIndex])
}
if fieldIndex <= 3 && idx > 3 && fieldValues[3-fieldIndex] != "" {
query = query.Where("v3 = ?", fieldValues[3-fieldIndex])
}
if fieldIndex <= 4 && idx > 4 && fieldValues[4-fieldIndex] != "" {
query = query.Where("v4 = ?", fieldValues[4-fieldIndex])
}
if fieldIndex <= 5 && idx > 5 && fieldValues[5-fieldIndex] != "" {
query = query.Where("v5 = ?", fieldValues[5-fieldIndex])
}
err := a.db.RunInTransaction(context.Background(), func(tx *pg.Tx) error {
_, err := query.Delete()
return err
})
return err
}
func (a *Adapter) LoadFilteredPolicy(model model.Model, filter interface{}) error {
if filter == nil {
return a.LoadPolicy(model)
}
filterValue, ok := filter.(*Filter)
if !ok {
return fmt.Errorf("invalid filter type")
}
err := a.loadFilteredPolicy(model, filterValue, persist.LoadPolicyLine)
if err != nil {
return err
}
a.filtered = true
return nil
}
func buildQuery(query *orm.Query, values []string) (*orm.Query, error) {
for ind, v := range values {
if v == "" {
continue
}
switch ind {
case 0:
query = query.Where("v0 = ?", v)
case 1:
query = query.Where("v1 = ?", v)
case 2:
query = query.Where("v2 = ?", v)
case 3:
query = query.Where("v3 = ?", v)
case 4:
query = query.Where("v4 = ?", v)
case 5:
query = query.Where("v5 = ?", v)
default:
return nil, fmt.Errorf("filter has more values than expected, should not exceed 6 values")
}
}
return query, nil
}
func (a *Adapter) loadFilteredPolicy(model model.Model, filter *Filter, handler func(string, model.Model) error) error {
if filter.P != nil {
lines := []*CasbinRule{}
query := a.db.Model(&lines).Table(a.tableName).Where("ptype = 'p'")
query, err := buildQuery(query, filter.P)
if err != nil {
return err
}
err = query.Select()
if err != nil {
return err
}
for _, line := range lines {
handler(line.String(), model)
}
}
if filter.G != nil {
lines := []*CasbinRule{}
query := a.db.Model(&lines).Table(a.tableName).Where("ptype = 'g'")
query, err := buildQuery(query, filter.G)
if err != nil {
return err
}
err = query.Select()
if err != nil {
return err
}
for _, line := range lines {
handler(line.String(), model)
}
}
return nil
}
func (a *Adapter) IsFiltered() bool {
return a.filtered
}
// UpdatePolicy updates a policy rule from storage.
// This is part of the Auto-Save feature.
func (a *Adapter) UpdatePolicy(sec string, ptype string, oldRule, newPolicy []string) error {
return a.UpdatePolicies(sec, ptype, [][]string{oldRule}, [][]string{newPolicy})
}
// UpdatePolicies updates some policy rules to storage, like db, redis.
func (a *Adapter) UpdatePolicies(sec string, ptype string, oldRules, newRules [][]string) error {
oldLines := make([]*CasbinRule, 0, len(oldRules))
newLines := make([]*CasbinRule, 0, len(newRules))
for _, rule := range oldRules {
oldLines = append(oldLines, savePolicyLine(ptype, rule))
}
for _, rule := range newRules {
newLines = append(newLines, savePolicyLine(ptype, rule))
}
return a.updatePolicies(oldLines, newLines)
}
func (a *Adapter) UpdateFilteredPolicies(sec string, ptype string, newPolicies [][]string, fieldIndex int, fieldValues ...string) ([][]string, error) {
line := &CasbinRule{}
line.Ptype = ptype
if fieldIndex <= 0 && 0 < fieldIndex+len(fieldValues) {
line.V0 = fieldValues[0-fieldIndex]
}
if fieldIndex <= 1 && 1 < fieldIndex+len(fieldValues) {
line.V1 = fieldValues[1-fieldIndex]
}
if fieldIndex <= 2 && 2 < fieldIndex+len(fieldValues) {
line.V2 = fieldValues[2-fieldIndex]
}
if fieldIndex <= 3 && 3 < fieldIndex+len(fieldValues) {
line.V3 = fieldValues[3-fieldIndex]
}
if fieldIndex <= 4 && 4 < fieldIndex+len(fieldValues) {
line.V4 = fieldValues[4-fieldIndex]
}
if fieldIndex <= 5 && 5 < fieldIndex+len(fieldValues) {
line.V5 = fieldValues[5-fieldIndex]
}
newP := make([]CasbinRule, 0, len(newPolicies))
oldP := make([]CasbinRule, 0)
for _, newRule := range newPolicies {
newP = append(newP, *(savePolicyLine(ptype, newRule)))
}
err := a.db.RunInTransaction(context.Background(), func(tx *pg.Tx) error {
for i := range newP {
str, args := line.queryString()
_, err := tx.Model(&oldP).Table(a.tableName).Where(str, args...).Delete()
if err != nil {
tx.Rollback()
return err
}
_, err = tx.Model(&newP[i]).Table(a.tableName).
OnConflict("DO NOTHING").
Insert()
if err != nil {
tx.Rollback()
return err
}
}
return nil
})
// return deleted rulues
oldPolicies := make([][]string, 0)
for _, v := range oldP {
oldPolicy := v.toStringPolicy()
oldPolicies = append(oldPolicies, oldPolicy)
}
return oldPolicies, err
}
func (c *CasbinRule) queryString() (string, []interface{}) {
queryArgs := []interface{}{c.Ptype}
queryStr := "ptype = ?"
if c.V0 != "" {
queryStr += " and v0 = ?"
queryArgs = append(queryArgs, c.V0)
}
if c.V1 != "" {
queryStr += " and v1 = ?"
queryArgs = append(queryArgs, c.V1)
}
if c.V2 != "" {
queryStr += " and v2 = ?"
queryArgs = append(queryArgs, c.V2)
}
if c.V3 != "" {
queryStr += " and v3 = ?"
queryArgs = append(queryArgs, c.V3)
}
if c.V4 != "" {
queryStr += " and v4 = ?"
queryArgs = append(queryArgs, c.V4)
}
if c.V5 != "" {
queryStr += " and v5 = ?"
queryArgs = append(queryArgs, c.V5)
}
return queryStr, queryArgs
}
func (c *CasbinRule) toStringPolicy() []string {
policy := make([]string, 0)
if c.Ptype != "" {
policy = append(policy, c.Ptype)
}
if c.V0 != "" {
policy = append(policy, c.V0)
}
if c.V1 != "" {
policy = append(policy, c.V1)
}
if c.V2 != "" {
policy = append(policy, c.V2)
}
if c.V3 != "" {
policy = append(policy, c.V3)
}
if c.V4 != "" {
policy = append(policy, c.V4)
}
if c.V5 != "" {
policy = append(policy, c.V5)
}
return policy
}
func (a *Adapter) updatePolicies(oldLines, newLines []*CasbinRule) error {
tx, err := a.db.Begin()
if err != nil {
return err
}
defer tx.Close()
for i, line := range oldLines {
str, args := line.queryString()
_, err = tx.Model(newLines[i]).Table(a.tableName).Where(str, args...).Update()
if err != nil {
tx.Rollback()
return err
}
}
if err = tx.Commit(); err != nil {
return err
}
return nil
}