-
Notifications
You must be signed in to change notification settings - Fork 180
/
query.go
143 lines (115 loc) · 3.48 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
/*
* Copyright (c) 2019-2021. Abstrium SAS <team (at) pydio.com>
* This file is part of Pydio Cells.
*
* Pydio Cells is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio Cells is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio Cells. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <https://pydio.com>.
*/
package sql
import (
"fmt"
"strings"
"google.golang.org/protobuf/proto"
"google.golang.org/protobuf/types/known/anypb"
"github.com/pydio/cells/v4/common/proto/service"
)
// Enquirer interface
type Enquirer interface {
GetSubQueries() []*anypb.Any
GetOperation() service.OperationType
GetOffset() int64
GetLimit() int64
GetGroupBy() int32
GetResourcePolicyQuery() *service.ResourcePolicyQuery
fmt.Stringer
}
// Query redefinition for the DAO
type query struct {
enquirer Enquirer
converters []service.Converter
}
// NewDAOQuery adds database functionality to a Query proto message
func NewDAOQuery(enquirer Enquirer, converters ...service.Converter) fmt.Stringer {
return query{
enquirer,
converters,
}
}
// Build a Query from a proto message and a list of converters
func (q query) String() string {
var wheres []string
var sqlString string
for _, subQ := range q.enquirer.GetSubQueries() {
sub := new(service.Query)
if e := anypb.UnmarshalTo(subQ, sub, proto.UnmarshalOptions{}); e == nil {
subQueryString := NewDAOQuery(sub, q.converters...).String()
wheres = append(wheres, subQueryString)
} else {
for _, converter := range q.converters {
if str, ok := converter.Convert(subQ); ok {
wheres = append(wheres, str)
}
}
}
}
var join string
if q.enquirer.GetOperation() == service.OperationType_AND {
join = "AND"
} else {
join = "OR"
}
if len(wheres) > 1 {
sqlString = "(" + strings.Join(wheres, ") "+join+" (") + ")"
} else {
sqlString = strings.Join(wheres, "")
}
return sqlString
}
// GetQueryValueFor field value
func GetQueryValueFor(field string, values ...string) string {
if len(values) > 1 {
var quoted []string
already := make(map[string]struct{})
for _, s := range values {
if _, f := already[s]; f {
continue
}
quoted = append(quoted, "'"+s+"'")
already[s] = struct{}{}
}
if len(quoted) == 1 {
return fmt.Sprintf("%s=%s", field, quoted[0])
} else {
return fmt.Sprintf("%v in (%v)", field, strings.Join(quoted, ","))
}
} else if len(values) == 1 {
if strings.Contains(values[0], "*") {
return fmt.Sprintf("%s LIKE '%s'", field, strings.Replace(values[0], "*", "%", -1))
}
return fmt.Sprintf("%v='%v'", field, values[0])
}
return ""
}
// JoinWheresWithParenthesis joins conditions using parenthesis if there are many,
// or no parenthesis if there is just one, and prepend the WHERE keyword to the string
func JoinWheresWithParenthesis(wheres []string, join string) string {
if len(wheres) == 0 {
return ""
} else if len(wheres) > 1 {
return " where (" + strings.Join(wheres, ") "+join+" (") + ")"
} else {
return " where " + strings.Join(wheres, "")
}
}