-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery.go
202 lines (172 loc) · 4.1 KB
/
query.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 querybuilder
import (
"strings"
"github.com/ngurajeka/go-querybuilder/v2/condition"
"github.com/ngurajeka/go-querybuilder/v2/order"
)
// QueryBuilder store all filtering
type QueryBuilder interface {
AddCondition(condition.Condition)
AddOrder(order.Order)
Conditions() []condition.Condition
Copy(QueryBuilder)
HasConditions() bool
HasOrders() bool
Limit() int
Map() map[string]interface{}
Number() int
Offset() int
Orders() []order.Order
PrepareStatement() (string, []interface{})
Remove(string)
RemoveByPrefix(string)
RemoveConditions()
RemoveOrders()
RemovePaging()
Reset()
SetLimit(int)
SetNumber(int)
SetOffset(int)
String(exclude ...string) string
StringifyOrder() string
}
type querybuilder struct {
conditions []condition.Condition
orders []order.Order
limit, number, offset int
}
// NewQuerybuilder create new querybuilder with offset and limit option
func NewQuerybuilder(offset, limit int) QueryBuilder {
return &querybuilder{offset: offset, limit: limit}
}
func (qb *querybuilder) AddCondition(c condition.Condition) {
qb.conditions = append(qb.conditions, c)
}
func (qb *querybuilder) AddOrder(o order.Order) {
for _, order := range qb.orders {
if order.Field() == o.Field() {
return
}
}
qb.orders = append(qb.orders, o)
}
func (qb *querybuilder) Conditions() []condition.Condition {
return qb.conditions
}
func (qb *querybuilder) Copy(anotherQb QueryBuilder) {
for _, order := range anotherQb.Orders() {
qb.AddOrder(order)
}
for _, condition := range anotherQb.Conditions() {
qb.AddCondition(condition)
}
}
func (qb *querybuilder) HasConditions() bool {
return len(qb.conditions) > 0
}
func (qb *querybuilder) HasOrders() bool {
return len(qb.orders) > 0
}
func (qb *querybuilder) Limit() int {
return qb.limit
}
func (qb *querybuilder) Map() map[string]interface{} {
return map[string]interface{}{
"conditions": qb.conditions,
"orders": qb.orders,
"limit": qb.limit,
"offset": qb.offset,
}
}
func (qb *querybuilder) Number() int {
return qb.number
}
func (qb *querybuilder) Offset() int {
return qb.offset
}
func (qb *querybuilder) Orders() []order.Order {
return qb.orders
}
func (qb *querybuilder) PrepareStatement() (string, []interface{}) {
var (
q []string
values []interface{}
)
for _, v := range qb.conditions {
stmt, v := v.PrepareStatement(len(values) > 0)
q = append(q, stmt)
values = append(values, v)
}
return strings.Join(q, " "), values
}
func (qb *querybuilder) Remove(f string) {
var conditions []condition.Condition
for _, condition := range qb.Conditions() {
if condition.Field() != f {
conditions = append(conditions, condition)
}
}
qb.conditions = conditions
}
func (qb *querybuilder) RemoveByPrefix(p string) {
length := len(p)
var conditions []condition.Condition
for _, condition := range qb.Conditions() {
switch {
case len(condition.Field()) < length:
conditions = append(conditions, condition)
case condition.Field()[:length] != p:
conditions = append(conditions, condition)
}
}
qb.conditions = conditions
}
func (qb *querybuilder) RemoveConditions() {
qb.conditions = make([]condition.Condition, 0)
}
func (qb *querybuilder) RemoveOrders() {
qb.orders = make([]order.Order, 0)
}
func (qb *querybuilder) RemovePaging() {
qb.limit = 0
qb.number = 0
qb.offset = 0
}
func (qb *querybuilder) Reset() {
qb.RemoveConditions()
qb.RemoveOrders()
qb.RemovePaging()
}
func (qb *querybuilder) SetLimit(limit int) {
qb.limit = limit
}
func (qb *querybuilder) SetNumber(number int) {
qb.number = number
}
func (qb *querybuilder) SetOffset(offset int) {
qb.offset = offset
}
func (qb *querybuilder) String(exclude ...string) string {
var str string
for _, condition := range qb.conditions {
if !isExist(condition.Field(), exclude) {
str += condition.String((str != ""))
}
}
return str
}
func (qb *querybuilder) StringifyOrder() string {
var str string
for _, order := range qb.orders {
str += order.String((str != ""))
}
return str
}
func isExist(f string, v []string) bool {
for _, s := range v {
if s == f {
return true
}
}
return false
}