-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoperator.go
More file actions
executable file
·284 lines (265 loc) · 5.37 KB
/
operator.go
File metadata and controls
executable file
·284 lines (265 loc) · 5.37 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
package f
import (
gtime "github.com/og/x/time"
"time"
)
type OP []Filter
type Filter struct {
FieldWrap string
FieldWarpArg string
Value interface{}
Kind string
Symbol string
Like string
Custom string
CustomSQL string
TimeValue time.Time
TimeRange FilterTimeRange
BetweenInt struct{
Begin int
End int
}
BetweenFloat struct{
Begin float64
End float64
}
BetweenString struct{
Begin string
End string
}
}
type FilterTimeRange struct {
Range gtime.Range
SQLValueLayout string `note:"value use gtime.Day gtime.Second"`
}
func (self Filter) Dict () (dict struct {
Kind struct{
Day string
Not string
IsNotNull string
IsNull string
Custom string
CustomSQL string
In string
NotIn string
Like string
GofreeIgnore string
TimeRange string
BetweenInt string
BetweenFloat string
BetweenString string
}
}) {
dict.Kind.Day = "Day"
dict.Kind.Not = "NOT"
dict.Kind.IsNotNull = "IS NOT NULL"
dict.Kind.IsNull = "IS NULL"
dict.Kind.Custom = "Custom"
dict.Kind.CustomSQL = "CustomSQL"
dict.Kind.In = "IN"
dict.Kind.NotIn = "NOT IN"
dict.Kind.Like = "LIKE"
dict.Kind.GofreeIgnore = "GofreeIgnore"
dict.Kind.TimeRange = "TimeRange"
dict.Kind.BetweenInt = "BetweenInt"
dict.Kind.BetweenFloat = "BetweenFloat"
dict.Kind.BetweenString = "BetweenString"
return
}
type FilterFunc func (v interface{}) Filter
func Eql(v interface{}) Filter {
return Filter{
Value: v,
Symbol: "=",
}
}
func NotEql(v interface{}) Filter{
return Filter{
Value: v,
Symbol: "!=",
}
}
func Lt(v interface{}) Filter {
return Filter{
Value: v,
Symbol: "<",
}
}
func LtEql(v interface{}) Filter {
return Filter{
Value: v,
Symbol: "<=",
}
}
func Gt(v interface{}) Filter {
return Filter{
Value: v,
Symbol: ">",
}
}
func GtEql(v interface{}) Filter {
return Filter{
Value: v,
Symbol: ">=",
}
}
func BetweenInt(begin int, end int) Filter {
return Filter{
BetweenInt: struct {
Begin int
End int
}{Begin: begin, End: end},
Kind: Filter{}.Dict().Kind.BetweenInt,
}
}
func BetweenFloat(begin float64, end float64) Filter {
return Filter{
BetweenFloat: struct {
Begin float64
End float64
}{Begin: begin, End: end},
Kind: Filter{}.Dict().Kind.BetweenFloat,
}
}
func BetweenString(begin string, end string) Filter {
return Filter{
BetweenString: struct {
Begin string
End string
}{Begin: begin, End: end},
Kind: Filter{}.Dict().Kind.BetweenString,
}
}
type nonSupportBetweenTime string
// you can use f.TimeRange, not BetweenTime
func BetweenTime(v nonSupportBetweenTime) {
}
func Like(v interface{}) Filter {
return Filter{
Value: v,
Kind:Filter{}.Dict().Kind.Like,
Like: "have",
}
}
func LikeStart(v interface{}) Filter {
return Filter{
Value: v,
Kind: Filter{}.Dict().Kind.Like,
Like: "start",
}
}
func LikeEnd(v interface{}) Filter {
return Filter{
Value: v,
Kind: Filter{}.Dict().Kind.Like,
Like: "end",
}
}
func CustomSQL(sql string, values ...interface{}) Filter {
return Filter{
Value: values,
Kind: Filter{}.Dict().Kind.CustomSQL,
CustomSQL: sql,
}
}
func Custom (template string, v ...interface{}) Filter {
return Filter{
Value: v,
Kind: Filter{}.Dict().Kind.Custom,
Custom: template,
}
}
func In (v interface{}) Filter {
return Filter{
Value: v,
Kind: Filter{}.Dict().Kind.In,
}
}
func NotIn (v interface{}) Filter {
return Filter{
Value: v,
Kind: Filter{}.Dict().Kind.NotIn,
}
}
func IsNull () Filter {
return Filter{
Kind: Filter{}.Dict().Kind.IsNull,
}
}
func IsNotNull () Filter {
return Filter{
Kind: Filter{}.Dict().Kind.IsNotNull,
}
}
func Day(v time.Time) Filter{
return Filter{
Kind: Filter{}.Dict().Kind.Day,
TimeValue: v,
}
}
func IgnoreFilter () Filter {
return Filter{
Kind: Filter{}.Dict().Kind.GofreeIgnore,
}
}
type orderType uint8
const (
DESC orderType = iota
ASC
)
// 在查询中有一种常见的场景,当某个请求参数为空时不增加 where。
// 比如用户搜索姓名, ?name=nimo 时SQL是 WHERE name = ? 。
// 如果 ?name= (空字符串)则 sql 没有 name = ?
// gofree 称这种 where 条件为 ignore empty
/*
使用场景:
f.QB{
Where: f.And(
"name": f.IgnoreEmpty(f.Eql, query.Name)
),
}
*/
func IgnoreEmpty(filterFunc FilterFunc, query string) Filter {
return IgnorePattern(filterFunc, query, "")
}
// 基于 IgnoreEmpty 的场景下,有些请求并不一定会是空,而是 ?status=all 来表示搜索全部
// ?status=done 表示搜索已完成的数据 ,此时使用 IgnorePattern(f.Eql, query.Status, "all")
/*
使用场景:
f.QB{
Where: f.And(
"status": f.IgnorePattern( f.Eql, query.Status, "all")
),
}
*/
func IgnorePattern(filterFunc FilterFunc, query string, pattern string) Filter {
if query == pattern {
return IgnoreFilter()
} else {
return filterFunc(query)
}
}
// 在 IgnoreEmpty 和 IgnorePattern 的场景下WHERE 语句都是 field = ?
// 有些场景下可能需要 where field in ? 或者没有 field in ?
// 此时使用 Ignore 完全自定义控制
/*
使用场景:
f.QB{
Where: f.And(
"id": f.Ignore(len(query.idList) == 0, f.In(query.idList))
),
}
*/
func Ignore(filter Filter, ignoreCondition bool) Filter {
if ignoreCondition {
return IgnoreFilter()
} else {
return filter
}
}
func TimeRange(data gtime.Range, sqlValueLayout string) Filter {
return Filter{
Kind: Filter{}.Dict().Kind.TimeRange,
TimeRange: FilterTimeRange{Range: data, SQLValueLayout: sqlValueLayout},
}
}