-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathadapter.go
More file actions
355 lines (301 loc) · 8.38 KB
/
adapter.go
File metadata and controls
355 lines (301 loc) · 8.38 KB
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
// Copyright 2017 The casbin Authors. All Rights Reserved.
//
// 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 beegoormadapter
import (
"runtime"
"sync"
"github.com/beego/beego/v2/client/orm"
"github.com/casbin/casbin/v2/model"
"github.com/casbin/casbin/v2/persist"
)
type CasbinRule struct {
Id int
Ptype string
V0 string
V1 string
V2 string
V3 string
V4 string
V5 string
tableName string `orm:"-"`
tablePrefix string `orm:"-"`
}
const defaultTableName = "casbin_rule"
// TableName Beego ORM using TableNameI interface to customize table name
// if tableName=="" , adapter will use default tableName "casbin_rule".
func (model *CasbinRule) TableName() string {
if len(model.tableName) == 0 {
return model.tablePrefix + defaultTableName
}
return model.tablePrefix + model.tableName
}
// Adapter represents the Xorm adapter for policy storage.
type Adapter struct {
driverName string
dataSourceName string
dataSourceAlias string
dbSpecified bool
tablePrefix string
tableName string
o orm.Ormer
}
// finalizer is the destructor for Adapter.
func finalizer(a *Adapter) {
}
// NewAdapter is the constructor for Adapter.
// dataSourceAlias: Database alias. ORM will use it to switch database.
// driverName: database driverName.
// dataSourceName: connection string
func NewAdapter(dataSourceAlias, driverName, dataSourceName string) (*Adapter, error) {
a := &Adapter{}
a.driverName = driverName
a.dataSourceName = dataSourceName
a.dataSourceAlias = dataSourceAlias
err := a.open()
if err != nil {
return nil, err
}
// Call the destructor when the object is released.
runtime.SetFinalizer(a, finalizer)
return a, nil
}
// NewAdapterWithTableName is the constructor for Adapter.
// dataSourceAlias: Database alias. ORM will use it to switch database.
// driverName: database driverName.
// dataSourceName: connection string
// tableName: custom table name, if tableName=="" , adapter will use default tableName "casbin_rule".
// tablePrefix: using table prefix
func NewAdapterWithTableName(dataSourceAlias, driverName, dataSourceName, tableName, tablePrefix string) (*Adapter, error) {
a := &Adapter{}
a.driverName = driverName
a.dataSourceName = dataSourceName
a.dataSourceAlias = dataSourceAlias
a.tableName = tableName
a.tablePrefix = tablePrefix
err := a.open()
if err != nil {
return nil, err
}
// Call the destructor when the object is released.
runtime.SetFinalizer(a, finalizer)
return a, nil
}
var (
one sync.Once
registeredModels sync.Map
)
func (a *Adapter) registerModel() {
one.Do(func() {
registeredModels = sync.Map{}
})
modelKey := a.tableName + ":" + a.tablePrefix
// Check if this specific model configuration is already registered
if _, exists := registeredModels.Load(modelKey); !exists {
// Register the model with current table name and prefix
orm.RegisterModel(&CasbinRule{tableName: a.tableName, tablePrefix: a.tablePrefix})
// Mark this configuration as registered
registeredModels.Store(modelKey, true)
}
}
func (a *Adapter) GetFullTableName() string {
if len(a.tableName) != 0 {
return a.tablePrefix + a.tableName
}
return a.tablePrefix + defaultTableName
}
func (a *Adapter) registerDataBase(aliasName, driverName, dataSource string, params ...orm.DBOption) error {
err := orm.RegisterDataBase(aliasName, driverName, dataSource, params...)
return err
}
func (a *Adapter) open() error {
var err error
err = a.registerDataBase(a.dataSourceAlias, a.driverName, a.dataSourceName)
if err != nil {
return err
}
a.o = orm.NewOrmUsingDB(a.dataSourceAlias)
a.registerModel()
return a.createTable()
}
func (a *Adapter) close() {
a.o = nil
}
func (a *Adapter) createTable() error {
return orm.RunSyncdb(a.dataSourceAlias, false, true)
}
func (a *Adapter) dropTable() error {
return orm.RunSyncdb(a.dataSourceAlias, true, true)
}
func loadPolicyLine(line CasbinRule, model model.Model) {
lineText := line.Ptype
if line.V0 != "" {
lineText += ", " + line.V0
}
if line.V1 != "" {
lineText += ", " + line.V1
}
if line.V2 != "" {
lineText += ", " + line.V2
}
if line.V3 != "" {
lineText += ", " + line.V3
}
if line.V4 != "" {
lineText += ", " + line.V4
}
if line.V5 != "" {
lineText += ", " + line.V5
}
persist.LoadPolicyLine(lineText, model)
}
// LoadPolicy loads policy from database.
func (a *Adapter) LoadPolicy(model model.Model) error {
var lines []CasbinRule
_, err := a.o.QueryTable(a.GetFullTableName()).All(&lines)
if err != nil {
return err
}
for _, line := range lines {
loadPolicyLine(line, model)
}
return nil
}
func (a *Adapter) savePolicyLine(ptype string, rule []string) CasbinRule {
line := CasbinRule{}
line.Ptype = ptype
if len(rule) > 0 {
line.V0 = rule[0]
}
if len(rule) > 1 {
line.V1 = rule[1]
}
if len(rule) > 2 {
line.V2 = rule[2]
}
if len(rule) > 3 {
line.V3 = rule[3]
}
if len(rule) > 4 {
line.V4 = rule[4]
}
if len(rule) > 5 {
line.V5 = rule[5]
}
return line
}
// SavePolicy saves policy to database.
func (a *Adapter) SavePolicy(model model.Model) error {
err := a.dropTable()
if err != nil {
return err
}
err = a.createTable()
if err != nil {
return err
}
var lines []CasbinRule
for ptype, ast := range model["p"] {
for _, rule := range ast.Policy {
line := a.savePolicyLine(ptype, rule)
lines = append(lines, line)
}
}
for ptype, ast := range model["g"] {
for _, rule := range ast.Policy {
line := a.savePolicyLine(ptype, rule)
lines = append(lines, line)
}
}
_, err = a.o.InsertMulti(len(lines), lines)
return err
}
// AddPolicy adds a policy rule to the storage.
func (a *Adapter) AddPolicy(sec string, ptype string, rule []string) error {
line := a.savePolicyLine(ptype, rule)
_, err := a.o.Insert(&line)
return err
}
// RemovePolicy removes a policy rule from the storage.
func (a *Adapter) RemovePolicy(sec string, ptype string, rule []string) error {
line := a.savePolicyLine(ptype, rule)
_, err := a.o.Delete(&line, "ptype", "v0", "v1", "v2", "v3", "v4", "v5")
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 {
line := CasbinRule{}
line.Ptype = ptype
filter := []string{}
filter = append(filter, "ptype")
if fieldIndex <= 0 && 0 < fieldIndex+len(fieldValues) {
line.V0 = fieldValues[0-fieldIndex]
if line.V0 != "" {
filter = append(filter, "v0")
}
}
if fieldIndex <= 1 && 1 < fieldIndex+len(fieldValues) {
line.V1 = fieldValues[1-fieldIndex]
if line.V1 != "" {
filter = append(filter, "v1")
}
}
if fieldIndex <= 2 && 2 < fieldIndex+len(fieldValues) {
line.V2 = fieldValues[2-fieldIndex]
if line.V2 != "" {
filter = append(filter, "v2")
}
}
if fieldIndex <= 3 && 3 < fieldIndex+len(fieldValues) {
line.V3 = fieldValues[3-fieldIndex]
if line.V3 != "" {
filter = append(filter, "v3")
}
}
if fieldIndex <= 4 && 4 < fieldIndex+len(fieldValues) {
line.V4 = fieldValues[4-fieldIndex]
if line.V4 != "" {
filter = append(filter, "v4")
}
}
if fieldIndex <= 5 && 5 < fieldIndex+len(fieldValues) {
line.V5 = fieldValues[5-fieldIndex]
if line.V5 != "" {
filter = append(filter, "v5")
}
}
_, err := a.o.Delete(&line, filter...)
return err
}
// AddPolicies adds multiple policy rules to the storage.
func (a *Adapter) AddPolicies(sec string, ptype string, rules [][]string) error {
for _, rule := range rules {
line := a.savePolicyLine(ptype, rule)
_, err := a.o.Insert(&line)
if err != nil {
return err
}
}
return nil
}
// RemovePolicies removes multiple policy rules from the storage.
func (a *Adapter) RemovePolicies(sec string, ptype string, rules [][]string) error {
for _, rule := range rules {
line := a.savePolicyLine(ptype, rule)
_, err := a.o.Delete(&line, "ptype", "v0", "v1", "v2", "v3", "v4", "v5")
if err != nil {
return err
}
}
return nil
}