-
Notifications
You must be signed in to change notification settings - Fork 46
/
filter.go
357 lines (323 loc) · 8.56 KB
/
filter.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
package kooky
import (
"context"
"errors"
"fmt"
"net/http"
"reflect"
"strings"
"time"
)
// Filter is used for filtering cookies in ReadCookies() functions.
// Filter order might be changed for performance reasons
// (omission of value decryption of filtered out cookies, etc).
//
// A cookie passes the Filter if Filter.Filter returns true.
type Filter interface{ Filter(*Cookie) bool }
type FilterFunc func(*Cookie) bool
func (f FilterFunc) Filter(c *Cookie) bool {
if f == nil {
return false
}
return f(c)
}
type ValueFilterFunc func(*Cookie) bool
func (f ValueFilterFunc) Filter(c *Cookie) bool {
if f == nil {
return false
}
return f(c)
}
func FilterCookies[S CookieSeq | ~[]*Cookie | ~[]*http.Cookie](ctx context.Context, cookies S, filters ...Filter) CookieSeq {
var ret CookieSeq
// https://github.com/golang/go/issues/45380#issuecomment-1014950980
switch cookiesTyped := any(cookies).(type) {
case CookieSeq:
ret = filterCookieSeq(ctx, cookiesTyped, filters...)
case Cookies:
ret = filterCookieSlice(ctx, []*Cookie(cookiesTyped), filters...)
case []*Cookie:
ret = filterCookieSlice(ctx, cookiesTyped, filters...)
case []*http.Cookie:
ret = filterCookieSlice(ctx, cookiesTyped, filters...)
default:
rv := reflect.ValueOf(cookies)
rtc := reflect.TypeFor[[]*Cookie]()
rthc := reflect.TypeFor[[]*http.Cookie]()
if rv.CanConvert(rtc) {
cookiesTyped := rv.Convert(rtc).Interface().([]*Cookie)
ret = filterCookieSlice(ctx, cookiesTyped, filters...)
} else if rv.CanConvert(rthc) {
cookiesTyped := rv.Convert(rthc).Interface().([]*http.Cookie)
ret = filterCookieSlice(ctx, cookiesTyped, filters...)
} else {
ret = func(yield func(*Cookie, error) bool) { yield(nil, errors.New(`unknown type`)) }
}
}
return ret
}
func filterCookieSeq(ctx context.Context, cookies CookieSeq, filters ...Filter) CookieSeq {
return func(yield func(*Cookie, error) bool) {
if cookies == nil {
yield(nil, errors.New(`nil receiver`))
return
}
for cookie, errCookie := range cookies {
if errCookie != nil {
if !yield(nil, errCookie) {
return
}
continue
}
if cookie == nil {
continue
}
select {
case <-ctx.Done():
return
default:
}
if !FilterCookie(ctx, cookie, filters...) {
continue
}
if !yield(cookie, nil) {
return
}
}
}
}
func filterCookieSlice[S ~[]*T, T Cookie | http.Cookie](ctx context.Context, cookies S, filters ...Filter) CookieSeq {
return func(yield func(*Cookie, error) bool) {
if len(cookies) < 1 {
_ = yield(nil, errors.New(`cookie slice of lenght 0`))
return
}
switch cookiesTyped := any(cookies).(type) {
case []*http.Cookie:
cookieLoopHTTP:
for _, cookie := range cookiesTyped {
if cookie == nil {
continue
}
select {
case <-ctx.Done():
break cookieLoopHTTP
default:
}
kooky := &Cookie{Cookie: *cookie}
if !FilterCookie(ctx, kooky, filters...) {
continue
}
if !yield(kooky, nil) {
return
}
}
case []*Cookie:
cookieLoopKooky:
for _, cookie := range cookiesTyped {
if cookie == nil {
continue
}
select {
case <-ctx.Done():
break cookieLoopKooky
default:
}
if !FilterCookie(ctx, cookie, filters...) {
continue
}
if !yield(cookie, nil) {
return
}
}
}
}
}
// FilterCookie() tells if a "cookie" passes all "filters".
func FilterCookie[T Cookie | http.Cookie](ctx context.Context, cookie *T, filters ...Filter) bool {
if cookie == nil {
return false
}
var c *Cookie
// https://github.com/golang/go/issues/45380#issuecomment-1014950980
switch cookieTyp := any(cookie).(type) {
case *http.Cookie:
c = &Cookie{Cookie: *cookieTyp}
case *Cookie:
c = cookieTyp
}
for _, filter := range filters {
if filter == nil {
continue
}
select {
case <-ctx.Done():
return false
default:
}
if !filter.Filter(c) {
return false
}
}
return true
}
// debug filter
// Debug prints the cookie.
//
// Position Debug after the filter you want to test.
var Debug Filter = FilterFunc(func(cookie *Cookie) bool {
// TODO(srlehn): where should the Debug filter be positioned when the filter rearrangement happens?
fmt.Printf("%+#v\n", cookie)
return true
})
// domain filters
type domainFilter struct {
filterFunc FilterFunc
typ string
domain string
}
func (d *domainFilter) Type() string {
if d == nil {
return ``
}
return d.typ
}
func (d *domainFilter) Domain() string {
if d == nil {
return ``
}
return d.domain
}
func (d *domainFilter) Filter(c *Cookie) bool {
return d != nil && d.filterFunc != nil && d.filterFunc(c)
}
func Domain(domain string) Filter {
f := func(cookie *Cookie) bool {
return cookie != nil && cookie.Domain == domain
}
return &domainFilter{filterFunc: f, typ: `domain`, domain: domain}
}
func DomainContains(substr string) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.Contains(cookie.Domain, substr)
})
}
func DomainHasPrefix(prefix string) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.HasPrefix(cookie.Domain, prefix)
})
}
func DomainHasSuffix(suffix string) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.HasSuffix(cookie.Domain, suffix)
})
}
// name filters
func Name(name string) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && cookie.Name == name
})
}
func NameContains(substr string) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.Contains(cookie.Name, substr)
})
}
func NameHasPrefix(prefix string) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.HasPrefix(cookie.Name, prefix)
})
}
func NameHasSuffix(suffix string) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.HasSuffix(cookie.Name, suffix)
})
}
// path filters
func Path(path string) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && cookie.Path == path
})
}
func PathContains(substr string) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.Contains(cookie.Path, substr)
})
}
func PathHasPrefix(prefix string) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.HasPrefix(cookie.Path, prefix)
})
}
func PathHasSuffix(suffix string) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.HasSuffix(cookie.Path, suffix)
})
}
func PathDepth(depth int) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.Count(strings.TrimRight(cookie.Path, `/`), `/`) == depth
})
}
// value filters
func Value(value string) Filter {
return ValueFilterFunc(func(cookie *Cookie) bool {
return cookie != nil && cookie.Value == value
})
}
func ValueContains(substr string) Filter {
return ValueFilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.Contains(cookie.Value, substr)
})
}
func ValueHasPrefix(prefix string) Filter {
return ValueFilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.HasPrefix(cookie.Value, prefix)
})
}
func ValueHasSuffix(suffix string) Filter {
return ValueFilterFunc(func(cookie *Cookie) bool {
return cookie != nil && strings.HasSuffix(cookie.Value, suffix)
})
}
func ValueLen(length int) Filter {
return ValueFilterFunc(func(cookie *Cookie) bool {
return cookie != nil && len(cookie.Value) == length
})
}
// secure filter
var Secure Filter = FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && cookie.Secure
})
// httpOnly filter
var HTTPOnly Filter = FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && cookie.HttpOnly
})
// expires filters
var Valid Filter = ValueFilterFunc(func(cookie *Cookie) bool {
return cookie != nil && cookie.Expires.After(time.Now()) && cookie.Cookie.Valid() == nil
})
var Expired Filter = FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && cookie.Expires.Before(time.Now())
})
func ExpiresAfter(u time.Time) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && cookie.Expires.After(u)
})
}
func ExpiresBefore(u time.Time) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && cookie.Expires.Before(u)
})
}
// creation filters
func CreationAfter(u time.Time) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && cookie.Creation.After(u)
})
}
func CreationBefore(u time.Time) Filter {
return FilterFunc(func(cookie *Cookie) bool {
return cookie != nil && cookie.Creation.Before(u)
})
}