forked from browserutils/kooky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilter.go
202 lines (177 loc) · 4.62 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
package kooky
import (
"fmt"
"strings"
"time"
)
// Filter is used for filtering cokies in ReadCookies() functions.
//
// A cookie passes the Filter if Filter returns true.
type Filter func(*Cookie) bool
// FilterCookies() applies "filters" in order to the "cookies".
func FilterCookies(cookies []*Cookie, filters ...Filter) []*Cookie {
var ret = make([]*Cookie, 0, len(cookies))
cookieLoop:
for _, cookie := range cookies {
if cookie == nil {
continue
}
for _, filter := range filters {
if !filter(cookie) {
continue cookieLoop
}
}
ret = append(ret, cookie)
}
return ret
}
// FilterCookie() tells if a "cookie" passes all "filters".
func FilterCookie(cookie *Cookie, filters ...Filter) bool {
if cookie == nil {
return false
}
for _, filter := range filters {
if !filter(cookie) {
return false
}
}
return true
}
// debug filter
// Debug prints the cookie.
//
// Position Debug after the filter you want to test.
var Debug Filter = func(cookie *Cookie) bool {
fmt.Printf("%+#v\n", cookie)
return true
}
// domain filters
func Domain(domain string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && cookie.Domain == domain
}
}
func DomainContains(substr string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.Contains(cookie.Domain, substr)
}
}
func DomainHasPrefix(prefix string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.HasPrefix(cookie.Domain, prefix)
}
}
func DomainHasSuffix(suffix string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.HasSuffix(cookie.Domain, suffix)
}
}
// name filters
func Name(name string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && cookie.Name == name
}
}
func NameContains(substr string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.Contains(cookie.Name, substr)
}
}
func NameHasPrefix(prefix string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.HasPrefix(cookie.Name, prefix)
}
}
func NameHasSuffix(suffix string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.HasSuffix(cookie.Name, suffix)
}
}
// path filters
func Path(path string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && cookie.Path == path
}
}
func PathContains(substr string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.Contains(cookie.Path, substr)
}
}
func PathHasPrefix(prefix string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.HasPrefix(cookie.Path, prefix)
}
}
func PathHasSuffix(suffix string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.HasSuffix(cookie.Path, suffix)
}
}
func PathDepth(depth int) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.Count(strings.TrimRight(cookie.Path, `/`), `/`) == depth
}
}
// value filters
func Value(value string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && cookie.Value == value
}
}
func ValueContains(substr string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.Contains(cookie.Value, substr)
}
}
func ValueHasPrefix(prefix string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.HasPrefix(cookie.Value, prefix)
}
}
func ValueHasSuffix(suffix string) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && strings.HasSuffix(cookie.Value, suffix)
}
}
func ValueLen(length int) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && len(cookie.Value) == length
}
}
// secure filter
var Secure Filter = func(cookie *Cookie) bool {
return cookie != nil && cookie.Secure
}
// httpOnly filter
var HTTPOnly Filter = func(cookie *Cookie) bool {
return cookie != nil && cookie.HttpOnly
}
// expires filters
var Valid Filter = func(cookie *Cookie) bool {
return cookie != nil && cookie.Expires.After(time.Now())
}
var Expired Filter = func(cookie *Cookie) bool {
return cookie != nil && cookie.Expires.Before(time.Now())
}
func ExpiresAfter(u time.Time) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && cookie.Expires.After(u)
}
}
func ExpiresBefore(u time.Time) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && cookie.Expires.Before(u)
}
}
// creation filters
func CreationAfter(u time.Time) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && cookie.Creation.After(u)
}
}
func CreationBefore(u time.Time) Filter {
return func(cookie *Cookie) bool {
return cookie != nil && cookie.Creation.Before(u)
}
}