forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rest.go
208 lines (180 loc) · 5.72 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
/*
* Copyright (c) 2018. 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 (
"strings"
"github.com/pydio/cells/common/utils/meta"
"github.com/emicklei/go-restful"
"go.uber.org/zap"
"context"
"github.com/pydio/cells/common"
"github.com/pydio/cells/common/log"
"github.com/pydio/cells/common/micro"
"github.com/pydio/cells/common/proto/idm"
"github.com/pydio/cells/common/proto/rest"
"github.com/pydio/cells/common/proto/tree"
"github.com/pydio/cells/common/service"
"github.com/pydio/cells/common/views"
)
type Handler struct {
router *views.Router
client tree.SearcherClient
}
// SwaggerTags list the names of the service tags declared in the swagger json implemented by this service
func (a *Handler) SwaggerTags() []string {
return []string{"SearchService"}
}
// Filter returns a function to filter the swagger path
func (a *Handler) Filter() func(string) string {
return nil
}
func (s *Handler) getRouter() *views.Router {
if s.router == nil {
s.router = views.NewStandardRouter(views.RouterOptions{WatchRegistry: true, AuditEvent: false})
}
return s.router
}
func (s *Handler) getClient() tree.SearcherClient {
if s.client == nil {
s.client = tree.NewSearcherClient(common.ServiceGrpcNamespace_+common.ServiceSearch, defaults.NewClient())
}
return s.client
}
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 nodes []*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 = ""
}
}
metaLoader := meta.NewStreamLoader(ctx)
defer metaLoader.Close()
err := router.WrapCallback(func(inputFilter views.NodeFilter, outputFilter views.NodeFilter) error {
var userWorkspaces map[string]*idm.Workspace
if len(passedPrefix) > 0 {
// Passed prefix
prefixes = append(prefixes, passedPrefix)
} else {
// Fill a context with current user info
// (Let inputFilter apply the various necessary middlewares).
loaderCtx, _, _ := inputFilter(ctx, &tree.Node{Path: ""}, "tmp")
userWorkspaces = views.UserWorkspacesFromContext(loaderCtx)
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 = context.WithValue(ctx, views.CtxKeepAccessListKey{}, true)
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.Close()
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")
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+"/") {
log.Logger(ctx).Debug("Response", zap.String("node", respNode.Path))
_, 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.SetMeta("repository_id", w.UUID)
filtered.SetMeta("repository_display", w.Label)
}
}
}
metaLoader.LoadMetas(ctx, filtered)
nodes = append(nodes, 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: nodes,
Facets: facets,
Total: int32(len(nodes)),
}
rsp.WriteEntity(result)
}