repository.go
2.1 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
package domain
import (
"fmt"
"gorm.io/gorm"
"gorm.io/gorm/clause"
"reflect"
)
func OffsetLimit(page, size int) (offset int, limit int) {
if page == 0 {
page = 1
}
if size == 0 {
size = 20
}
offset = (page - 1) * size
limit = size
return
}
type QueryOptions map[string]interface{}
func NewQueryOptions() QueryOptions {
options := make(map[string]interface{})
return options
}
func (options QueryOptions) WithOffsetLimit(page, size int) QueryOptions {
offset, limit := OffsetLimit(page, size)
options["offset"] = offset
options["limit"] = limit
return options
}
func (options QueryOptions) WithKV(key string, value interface{}) QueryOptions {
if reflect.ValueOf(value).IsZero() {
return options
}
options[key] = value
return options
}
func (options QueryOptions) EnableCounter() QueryOptions {
return options.WithKV("enableCounter", true)
}
func (options QueryOptions) Copy() QueryOptions {
newOptions := NewQueryOptions()
for k, v := range options {
newOptions[k] = v
}
return newOptions
}
type IndexQueryOptionFunc func() QueryOptions
type JSONQueryContainExpression struct {
column string
contain bool
containValue interface{}
}
func JSONQuery(column string) *JSONQueryContainExpression {
return &JSONQueryContainExpression{
column: column,
}
}
func (jsonQuery *JSONQueryContainExpression) Contains(value interface{}) *JSONQueryContainExpression {
jsonQuery.containValue = value
jsonQuery.contain = true
return jsonQuery
}
func (jsonQuery *JSONQueryContainExpression) Build(builder clause.Builder) {
if stmt, ok := builder.(*gorm.Statement); ok {
switch stmt.Dialector.Name() {
case "mysql", "sqlite":
switch {
case jsonQuery.contain:
}
case "postgres":
switch {
case jsonQuery.contain:
builder.WriteString(fmt.Sprintf("%v::jsonb ", stmt.Quote(jsonQuery.column)))
builder.WriteString("@>'[")
if _, ok := jsonQuery.containValue.(string); ok {
builder.AddVar(builder, jsonQuery.containValue)
} else {
builder.AddVar(builder, jsonQuery.containValue)
}
builder.WriteString("]'")
}
}
}
}