-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathrest.go
287 lines (255 loc) · 8.13 KB
/
rest.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
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
283
284
285
286
287
/*
* 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 rest provides a REST service for querying the search engine
package rest
import (
"context"
"github.com/pydio/cells/v4/common/service/resources"
"github.com/pydio/cells/v4/idm/share"
"regexp"
"strings"
restful "github.com/emicklei/go-restful/v3"
"github.com/pydio/cells/v4/common/client/grpc"
"go.uber.org/zap"
"github.com/pydio/cells/v4/common"
"github.com/pydio/cells/v4/common/log"
"github.com/pydio/cells/v4/common/nodes"
"github.com/pydio/cells/v4/common/nodes/acl"
"github.com/pydio/cells/v4/common/nodes/compose"
"github.com/pydio/cells/v4/common/proto/idm"
"github.com/pydio/cells/v4/common/proto/rest"
"github.com/pydio/cells/v4/common/proto/tree"
"github.com/pydio/cells/v4/common/service"
"github.com/pydio/cells/v4/common/service/context/metadata"
)
type Handler struct {
runtimeCtx context.Context
router nodes.Client
client tree.SearcherClient
}
// SwaggerTags list the names of the service tags declared in the swagger json implemented by this service
func (s *Handler) SwaggerTags() []string {
return []string{"SearchService"}
}
// Filter returns a function to filter the swagger path
func (s *Handler) Filter() func(string) string {
return nil
}
func (s *Handler) getRouter() nodes.Client {
if s.router == nil {
s.router = compose.PathClient(s.runtimeCtx)
}
return s.router
}
func (s *Handler) getClient() tree.SearcherClient {
if s.client == nil {
s.client = tree.NewSearcherClient(grpc.GetClientConnFromCtx(s.runtimeCtx, common.ServiceSearch))
}
return s.client
}
func (s *Handler) sharedResourcesAsNodes(ctx context.Context, query *tree.Query) ([]*tree.Node, bool, error) {
scope, freeString, active := s.extractSharedMeta(query.FreeString)
if !active {
return nil, false, nil
}
// Replace FS
query.FreeString = freeString
sc := share.NewClient(s.runtimeCtx, nil)
rr, e := sc.ListSharedResources(ctx, "", scope, true, resources.ResourceProviderHandler{})
if e != nil {
return nil, false, e
}
var out []*tree.Node
for _, r := range rr {
out = append(out, r.Node)
}
return out, active, nil
}
func (s *Handler) extractSharedMeta(freeString string) (scope idm.WorkspaceScope, newString string, has bool) {
rx, _ := regexp.Compile("((\\+)?Meta\\.shared_resource_type:(any|cell|link))")
matches := rx.FindAllStringSubmatch(freeString, -1)
if len(matches) == 1 && len(matches[0]) == 4 {
has = true
switch matches[0][3] {
case "any":
scope = idm.WorkspaceScope_ANY
case "cell":
scope = idm.WorkspaceScope_ROOM
case "link":
scope = idm.WorkspaceScope_LINK
}
newString = rx.ReplaceAllString(freeString, "")
newString = strings.TrimSpace(newString)
}
return
}
func (s *Handler) Nodes(req *restful.Request, rsp *restful.Response) {
ctx := req.Request.Context()
var searchRequest tree.SearchRequest
if err := req.ReadEntity(&searchRequest); err != nil {
service.RestError500(req, rsp, err)
return
}
query := searchRequest.Query
if query == nil {
rsp.WriteEntity(&rest.SearchResults{Total: 0})
return
}
router := s.getRouter()
var nn []*tree.Node
var facets []*tree.SearchFacet
prefixes := []string{}
nodesPrefixes := map[string]string{}
var passedPrefix string
var passedWorkspaceSlug string
if len(query.PathPrefix) > 0 {
passedPrefix = strings.Trim(query.PathPrefix[0], "/")
if len(strings.Split(passedPrefix, "/")) == 1 {
passedWorkspaceSlug = passedPrefix
passedPrefix = ""
}
}
cl := tree.NewNodeProviderStreamerClient(grpc.GetClientConnFromCtx(ctx, common.ServiceTree))
readCtx := metadata.WithAdditionalMetadata(ctx, tree.StatFlags(searchRequest.StatFlags).AsMeta())
nodeStreamer, e := cl.ReadNodeStream(readCtx)
if e == nil {
defer nodeStreamer.CloseSend()
}
// TMP Load shared
sharedNodes, shared, er := s.sharedResourcesAsNodes(ctx, query)
if er != nil {
log.Logger(ctx).Error("cannot load shared resources")
service.RestErrorDetect(req, rsp, e)
return
}
err := router.WrapCallback(func(inputFilter nodes.FilterFunc, outputFilter nodes.FilterFunc) error {
var userWorkspaces map[string]*idm.Workspace
// Fill a context with current user info
// (Let inputFilter apply the various necessary middlewares).
loaderCtx, _, _ := inputFilter(ctx, &tree.Node{Path: ""}, "tmp")
if accessList, ok := acl.FromContext(loaderCtx); ok {
userWorkspaces = accessList.GetWorkspaces()
}
if shared {
if len(sharedNodes) == 0 {
// Break now, return an empty result
return nil
}
for _, n := range sharedNodes {
p := n.GetPath()
ctx, n, e = inputFilter(ctx, n, "search-"+p)
if e != nil {
continue
}
log.Logger(ctx).Debug("Filtered Node & Context", zap.String("path", n.Path))
query.Paths = append(query.Paths, n.Path)
}
}
if len(passedPrefix) > 0 {
// Passed prefix
prefixes = append(prefixes, passedPrefix)
} else {
for _, w := range userWorkspaces {
if len(passedWorkspaceSlug) > 0 && w.Slug != passedWorkspaceSlug {
continue
}
if len(w.RootUUIDs) > 1 {
for _, root := range w.RootUUIDs {
prefixes = append(prefixes, w.Slug+"/"+root)
}
} else {
prefixes = append(prefixes, w.Slug)
}
}
}
query.PathPrefix = []string{}
var e error
ctx = acl.WithPresetACL(loaderCtx, nil) // Just set the key, acl is already set
for _, p := range prefixes {
rootNode := &tree.Node{Path: p}
ctx, rootNode, e = inputFilter(ctx, rootNode, "search-"+p)
if e != nil {
continue
}
log.Logger(ctx).Debug("Filtered Node & Context", zap.String("path", rootNode.Path))
nodesPrefixes[rootNode.Path] = p
query.PathPrefix = append(query.PathPrefix, rootNode.Path)
}
sClient, err := s.getClient().Search(ctx, &searchRequest)
if err != nil {
return err
}
defer sClient.CloseSend()
for {
resp, rErr := sClient.Recv()
if resp == nil {
break
} else if rErr != nil {
return err
}
if resp.Facet != nil {
facets = append(facets, resp.Facet)
continue
}
respNode := resp.Node
wrapperCtx, wrapperN, _ := inputFilter(ctx, respNode, "in-"+respNode.Uuid)
if err := router.WrappedCanApply(wrapperCtx, wrapperCtx, &tree.NodeChangeEvent{Type: tree.NodeChangeEvent_READ, Source: wrapperN}); err != nil {
log.Logger(ctx).Debug("Skipping node in search results", respNode.ZapPath(), zap.Error(err))
continue
}
for r, p := range nodesPrefixes {
if strings.HasPrefix(respNode.Path, r+"/") || respNode.Path == r {
log.Logger(ctx).Debug("Response", zap.String("node", respNode.Path))
if nodeStreamer != nil {
nodeStreamer.Send(&tree.ReadNodeRequest{Node: respNode.Clone()})
if nsR, e := nodeStreamer.Recv(); e == nil {
respNode = nsR.GetNode()
}
}
_, filtered, err := outputFilter(ctx, respNode, "search-"+p)
if err != nil {
return err
}
if userWorkspaces != nil {
for _, w := range userWorkspaces {
if strings.HasPrefix(filtered.Path, w.Slug+"/") {
filtered.MustSetMeta(common.MetaFlagWorkspaceRepoId, w.UUID)
filtered.MustSetMeta(common.MetaFlagWorkspaceRepoDisplay, w.Label)
}
}
}
nn = append(nn, filtered.WithoutReservedMetas())
}
}
}
return nil
})
if err != nil {
log.Logger(ctx).Error("Query", zap.Error(err))
service.RestError500(req, rsp, err)
return
}
result := &rest.SearchResults{
Results: nn,
Facets: facets,
Total: int32(len(nn)),
}
rsp.WriteEntity(result)
}