forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
matchers.go
264 lines (246 loc) · 6.16 KB
/
matchers.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
package idm
import (
"encoding/json"
"fmt"
"path"
"strconv"
"strings"
"time"
service "github.com/pydio/cells/common/service/proto"
)
// Matcher interface provides a way to filter idm objects with standard XXXSingleQueries.
type Matcher interface {
// Matches tries to apply a *SingleQuery on an existing object
Matches(idmObject interface{}) bool
}
func (m *RoleSingleQuery) Matches(idmObject interface{}) bool {
if role, ok := idmObject.(*Role); !ok {
return false
} else {
return m.matches(role)
}
}
func (m *RoleSingleQuery) matches(role *Role) bool {
var bb []bool
if len(m.Uuid) > 0 {
bb = append(bb, sliceContains(m.Uuid, role.Uuid))
}
if m.Label != "" {
bb = append(bb, compareStrings(role.Label, m.Label))
}
if m.HasAutoApply {
bb = append(bb, len(role.AutoApplies) > 0)
}
if m.IsTeam {
bb = append(bb, role.IsTeam)
}
if m.IsGroupRole {
bb = append(bb, role.GroupRole)
}
if m.IsUserRole {
bb = append(bb, role.UserRole)
}
return flattenBool(bb, m.Not)
}
func (m *WorkspaceSingleQuery) Matches(idmObject interface{}) bool {
if ws, ok := idmObject.(*Workspace); !ok {
return false
} else {
return m.matches(ws)
}
}
func (m *WorkspaceSingleQuery) matches(ws *Workspace) bool {
var bb []bool
if len(m.Uuid) > 0 {
bb = append(bb, m.Uuid == ws.UUID)
}
if len(m.Label) > 0 {
bb = append(bb, compareStrings(ws.Label, m.Label))
}
if len(m.Slug) > 0 {
bb = append(bb, compareStrings(ws.Slug, m.Slug))
}
if len(m.Description) > 0 {
bb = append(bb, compareStrings(ws.Description, m.Description))
}
if m.Scope != WorkspaceScope_ANY {
bb = append(bb, m.Scope == ws.Scope)
}
if m.HasAttribute != "" || (m.AttributeName != "" && m.AttributeValue != "") {
var found bool
var atts map[string]interface{}
if err := json.Unmarshal([]byte(ws.Attributes), &atts); err == nil {
if m.AttributeName != "" {
if v, o := atts[m.AttributeName]; o && v.(string) == m.AttributeValue {
found = true
}
} else if _, o := atts[m.HasAttribute]; o {
found = true
}
}
if found {
bb = append(bb, true)
} else {
bb = append(bb, false)
}
}
if m.LastUpdated != "" && ws.LastUpdated > 0 {
if lt, d, e := m.ParseLastUpdated(); e == nil {
ref := time.Now().Add(-d)
wsUpdated := time.Unix(int64(ws.LastUpdated), 0)
if lt {
bb = append(bb, ref.Before(wsUpdated))
} else {
bb = append(bb, ref.After(wsUpdated))
}
}
}
return flattenBool(bb, m.Not)
}
func (m *WorkspaceSingleQuery) ParseLastUpdated() (lt bool, d time.Duration, e error) {
firstChar := m.LastUpdated[0:1]
if firstChar != "<" && firstChar != ">" {
e = fmt.Errorf("please start with < or > character")
return
}
lt = firstChar == "<"
ds := strings.TrimSpace(m.LastUpdated[1:])
if strings.HasSuffix(ds, "d") {
// Parse as number of days
days, er := strconv.ParseInt(strings.Trim(ds, "d"), 10, 64)
if er != nil {
e = er
return
}
d = time.Duration(days) * 24 * time.Hour
return
}
d, e = time.ParseDuration(strings.TrimSpace(m.LastUpdated[1:]))
return
}
func (m *ACLSingleQuery) Matches(idmObject interface{}) bool {
if acl, ok := idmObject.(*ACL); !ok {
return false
} else {
return m.matches(acl)
}
}
func (m *ACLSingleQuery) matches(acl *ACL) bool {
var bb []bool
if len(m.WorkspaceIDs) > 0 {
bb = append(bb, sliceContains(m.WorkspaceIDs, acl.WorkspaceID))
}
if len(m.RoleIDs) > 0 {
bb = append(bb, sliceContains(m.RoleIDs, acl.RoleID))
}
if len(m.NodeIDs) > 0 {
bb = append(bb, sliceContains(m.NodeIDs, acl.NodeID))
}
if len(m.Actions) > 0 {
var ab []bool
for _, ac := range m.Actions {
if ac.Value == "" {
// Check only name
ab = append(ab, ac.Name == acl.Action.Name)
} else {
ab = append(ab, ac.Name == acl.Action.Name && compareStrings(acl.Action.Value, ac.Value))
}
}
bb = append(bb, service.ReduceQueryBooleans(ab, service.OperationType_OR))
}
return flattenBool(bb, m.Not)
}
func (m *UserSingleQuery) Matches(idmObject interface{}) bool {
if u, ok := idmObject.(*User); !ok {
return false
} else {
return m.matches(u)
}
}
func (m *UserSingleQuery) matches(user *User) bool {
var bb []bool
if m.Uuid != "" {
bb = append(bb, user.Uuid == m.Uuid)
}
if m.Login != "" {
bb = append(bb, user.Login == m.Login)
}
if m.NodeType != NodeType_UNKNOWN {
bb = append(bb, (user.IsGroup && m.NodeType == NodeType_GROUP) || (!user.IsGroup && m.NodeType == NodeType_USER))
}
if m.GroupPath != "" {
bb = append(bb, compareStrings(user.GroupPath, m.GroupPath))
}
if m.FullPath != "" {
bb = append(bb, compareStrings(path.Join(user.GroupPath+user.GroupLabel), m.FullPath))
}
if m.HasRole != "" {
var has bool
for _, r := range user.Roles {
if r.Uuid == m.HasRole {
has = true
}
}
bb = append(bb, has)
}
if m.HasProfile != "" {
m.AttributeName = UserAttrProfile
m.AttributeValue = m.HasProfile
}
if m.AttributeName != "" {
if user.Attributes == nil {
bb = append(bb, false)
} else if uA, ok := user.Attributes[m.AttributeName]; ok {
if m.AttributeAnyValue {
bb = append(bb, true)
} else {
bb = append(bb, uA == m.AttributeValue)
}
} else {
bb = append(bb, false)
}
}
return flattenBool(bb, m.Not)
}
func flattenBool(bb []bool, isNot bool) bool {
result := service.ReduceQueryBooleans(bb, service.OperationType_AND)
if isNot {
return !result
} else {
return result
}
}
func sliceContains(ss []string, s string) bool {
for _, v := range ss {
if v == s {
return true
}
}
return false
}
func compareStrings(ref, search string) bool {
// Basic search: can have wildcard on left, right, or none (exact search)
var left, right bool
if strings.HasPrefix(search, "*") {
left = true
}
if strings.HasSuffix(search, "*") {
right = true
}
search = strings.Trim(search, "*")
if left || right {
// If not exact search, lowerCase
ref = strings.ToLower(ref)
search = strings.ToLower(search)
}
if left && right && !strings.Contains(ref, search) { // *part*
return false
} else if right && !left && !strings.HasPrefix(ref, search) { // start*
return false
} else if left && !right && !strings.HasSuffix(ref, search) { // *end
return false
} else if !left && !right && ref != search { // exact term
return false
}
return true
}