forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api-services.go
304 lines (267 loc) · 8.78 KB
/
api-services.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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/*
* 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
import (
"context"
"path"
"path/filepath"
"strings"
"github.com/emicklei/go-restful"
"github.com/micro/go-micro/client"
"github.com/micro/go-micro/errors"
registry2 "github.com/micro/go-micro/registry"
"github.com/micro/go-micro/selector"
"github.com/pborman/uuid"
"go.uber.org/zap"
"github.com/pydio/cells/common"
"github.com/pydio/cells/common/config"
"github.com/pydio/cells/common/log"
"github.com/pydio/cells/common/micro"
"github.com/pydio/cells/common/proto/ctl"
"github.com/pydio/cells/common/proto/object"
"github.com/pydio/cells/common/proto/rest"
"github.com/pydio/cells/common/proto/tree"
"github.com/pydio/cells/common/registry"
"github.com/pydio/cells/common/service"
)
/*********************
SERVICES MANAGEMENT
*********************/
// List all services with their status
func (h *Handler) ListServices(req *restful.Request, resp *restful.Response) {
all, err := registry.ListServices(true)
if err != nil {
service.RestError500(req, resp, err)
return
}
running, err := registry.ListRunningServices()
if err != nil {
service.RestError500(req, resp, err)
return
}
output := &rest.ServiceCollection{
Services: []*ctl.Service{},
}
for _, s := range running {
output.Services = append(output.Services, h.serviceToRest(s, true))
}
for _, s := range all {
runningFound := false
for _, k := range running {
if k.Name() == s.Name() {
runningFound = true
break
}
}
if !runningFound {
output.Services = append(output.Services, h.serviceToRest(s, false))
}
}
output.Total = int32(len(output.Services))
resp.WriteEntity(output)
}
// List all Peers (servers) on which any pydio service is running
func (h *Handler) ListPeersAddresses(req *restful.Request, resp *restful.Response) {
response := &rest.ListPeersAddressesResponse{}
accu := make(map[string]string)
running, err := registry.ListRunningServices()
if err != nil {
service.RestError500(req, resp, err)
return
}
for _, s := range running {
for _, n := range s.RunningNodes() {
accu[n.Address] = n.Address
}
}
for k, _ := range accu {
response.PeerAddresses = append(response.PeerAddresses, k)
}
resp.WriteEntity(response)
}
// List folders on a given peer to configure a local folder datasource
func (h *Handler) ListPeerFolders(req *restful.Request, resp *restful.Response) {
var listReq rest.ListPeerFoldersRequest
if e := req.ReadEntity(&listReq); e != nil {
service.RestError500(req, resp, e)
return
}
srvName := common.SERVICE_GRPC_NAMESPACE_ + common.SERVICE_DATA_OBJECTS
cl := tree.NewNodeProviderClient(srvName, defaults.NewClient())
// Use a selector to make sure to we call the service that is running on the specific node
streamer, e := cl.ListNodes(req.Request.Context(), &tree.ListNodesRequest{
Node: &tree.Node{Path: listReq.Path},
}, client.WithSelectOption(h.PeerClientSelector(srvName, listReq.PeerAddress)))
if e != nil {
service.RestError500(req, resp, e)
return
}
defer streamer.Close()
coll := &rest.NodesCollection{}
for {
r, e := streamer.Recv()
if e != nil {
break
}
coll.Children = append(coll.Children, r.Node)
}
resp.WriteEntity(coll)
}
// ValidateLocalDSFolderOnPeer sends a couple of stat/create requests to the target Peer to make sure folder is valid
func (h *Handler) ValidateLocalDSFolderOnPeer(ctx context.Context, newSource *object.DataSource) error {
folder := newSource.StorageConfiguration["folder"]
srvName := common.SERVICE_GRPC_NAMESPACE_ + common.SERVICE_DATA_OBJECTS
selectorOption := client.WithSelectOption(h.PeerClientSelector(srvName, newSource.PeerAddress))
defClient := defaults.NewClient()
cl := tree.NewNodeProviderClient(srvName, defClient)
wCl := tree.NewNodeReceiverClient(srvName, defClient)
// Check it's two level deep
parentName := filepath.Dir(folder)
if strings.Trim(parentName, "/") == "" {
return errors.BadRequest("ds.folder.invalid", "please use at least a two-levels deep folder")
}
// Stat node to make sure it exists - Create it otherwise
_, e := cl.ReadNode(ctx, &tree.ReadNodeRequest{
Node: &tree.Node{Path: folder},
}, selectorOption)
if e != nil {
if create, ok := newSource.StorageConfiguration["create"]; ok && create == "true" {
// Create Node Now
if _, err := wCl.CreateNode(ctx, &tree.CreateNodeRequest{Node: &tree.Node{
Type: tree.NodeType_COLLECTION,
Path: folder,
}}, selectorOption); err != nil {
return errors.Forbidden("ds.folder.cannot.create", err.Error())
}
} else {
return errors.NotFound("ds.folder.cannot.stat", e.Error())
}
}
log.Logger(ctx).Info("Checking parent folder is writable before creating datasource", zap.Any("ds", newSource))
// Finally try to write a tmp file inside parent folder to make sure it's writable, then remove it
touchFile := &tree.Node{
Type: tree.NodeType_LEAF,
Path: path.Join(parentName, uuid.New()),
}
touched, e := wCl.CreateNode(ctx, &tree.CreateNodeRequest{Node: touchFile}, selectorOption)
if e != nil {
return errors.Forbidden("ds.folder.parent.not.writable", "Please make sure that parent folder is writeable by the application")
} else {
if _, er := wCl.DeleteNode(ctx, &tree.DeleteNodeRequest{Node: touched.Node}, selectorOption); er != nil {
log.Logger(ctx).Error("Could not delete tmp file written when creating datasource on peer " + newSource.PeerAddress)
}
}
return nil
}
// PeerClientSelector creates a Selector Filter to restrict call to a given PeerAddress
func (h *Handler) PeerClientSelector(srvName string, targetPeer string) selector.SelectOption {
return selector.WithFilter(func(services []*registry2.Service) (out []*registry2.Service) {
for _, srv := range services {
if srv.Name != srvName {
continue
}
var nodes []*registry2.Node
for _, n := range srv.Nodes {
if n.Address == targetPeer {
nodes = append(nodes, n)
break
}
}
if len(nodes) > 0 {
srv.Nodes = nodes
out = append(out, srv)
}
}
return
})
}
// Start Stop services
func (s *Handler) ControlService(req *restful.Request, resp *restful.Response) {
// var ctrlRequest rest.ControlServiceRequest
// if err := req.ReadEntity(&ctrlRequest); err != nil {
// service.RestError500(req, resp, err)
// return
// }
// serviceName := ctrlRequest.ServiceName
// cmd := ctrlRequest.Command
// node := ctrlRequest.NodeName
//
// log.Logger(req.Request.Context()).Debug("Received command " + cmd.String() + " for service " + serviceName + " on node " + node)
//
// services, err := registry.ListServicesWithDetails()
// if err != nil {
// service.RestError500(req, resp, err)
// return
// }
// for _, srv := range services {
// if srv.Name == serviceName {
// /*
// if srv.Cancel != nil {
// srv.Cancel()
// }
// */
// respMsg := s.serviceToRest(srv)
// respMsg.Status = rest.ServiceStatus_STOPPING
// resp.WriteEntity(respMsg)
// return
// }
// }
// service.RestError404(req, resp, errors.NotFound(Name, "Service "+serviceName+" Not Found"))
}
// Transform a service object to proto message
func (s *Handler) serviceToRest(srv registry.Service, running bool) *ctl.Service {
status := ctl.ServiceStatus_STOPPED
if running {
status = ctl.ServiceStatus_STARTED
}
controllable := true
if !strings.HasPrefix(srv.Name(), "pydio") || srv.Name() == "pydio.grpc.config" {
controllable = false
}
configAddress := ""
c := config.Default().Get("defaults", "url").String("")
if srv.Name() == common.SERVICE_GATEWAY_PROXY && c != "" {
configAddress = c
}
protoSrv := &ctl.Service{
Name: srv.Name(),
Status: status,
Tag: strings.Join(srv.Tags(), ", "),
Description: srv.Description(),
Controllable: controllable,
Version: srv.Version(),
RunningPeers: []*ctl.Peer{},
}
for _, node := range srv.RunningNodes() {
p := int32(node.Port)
a := node.Address
if configAddress != "" {
a = configAddress
p = 0
}
protoSrv.RunningPeers = append(protoSrv.RunningPeers, &ctl.Peer{
Id: node.Id,
Port: p,
Address: a,
Metadata: node.Metadata,
})
}
return protoSrv
}