-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcondition.go
78 lines (74 loc) · 1.67 KB
/
condition.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
package bsonquery
type condition struct {
operator string
value interface{}
fieldName string
options string
}
//C creates a new Condition
func C() *condition {
return &condition{}
}
func (c *condition) EQ(fieldname string, val interface{}) condition {
c.operator = copEQ
c.fieldName = fieldname
c.value = val
return *c
}
func (c *condition) GT(fieldname string, val interface{}) condition {
c.operator = copGT
c.fieldName = fieldname
c.value = val
return *c
}
func (c *condition) GTE(fieldname string, val interface{}) condition {
c.operator = copGTE
c.fieldName = fieldname
c.value = val
return *c
}
func (c *condition) IN(fieldname string, val interface{}) condition {
c.operator = copIN
c.fieldName = fieldname
c.value = val
return *c
}
func (c *condition) LT(fieldname string, val interface{}) condition {
c.operator = copLT
c.fieldName = fieldname
c.value = val
return *c
}
func (c *condition) LTE(fieldname string, val interface{}) condition {
c.operator = copLTE
c.fieldName = fieldname
c.value = val
return *c
}
func (c *condition) NE(fieldname string, val interface{}) condition {
c.operator = copNE
c.fieldName = fieldname
c.value = val
return *c
}
func (c *condition) NIN(fieldname string, val interface{}) condition {
c.operator = copNIN
c.fieldName = fieldname
c.value = val
return *c
}
func (c *condition) Regex(fieldname, expression string, ignorecase bool) condition {
c.operator = copRegex
c.fieldName = fieldname
c.value = expression
if ignorecase {
c.options = "i"
}
return *c
}
func (c *condition) Exist(fieldname string, expression bool) condition {
c.operator = copExists
c.fieldName = fieldname
c.value = expression
return *c
}