forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.go
156 lines (138 loc) · 4.55 KB
/
meta.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
/*
* 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 grpc
import (
"context"
"strings"
"github.com/golang/protobuf/ptypes"
"github.com/golang/protobuf/ptypes/any"
"github.com/micro/go-micro/metadata"
"go.uber.org/zap"
"github.com/pydio/cells/common"
"github.com/pydio/cells/common/auth"
"github.com/pydio/cells/common/log"
"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/defaults"
"github.com/pydio/cells/common/service/proto"
)
// MetaHandler implements handler method of the share gRPC service.
type MetaHandler struct{}
func (m *MetaHandler) ReadNodeStream(ctx context.Context, streamer tree.NodeProviderStreamer_ReadNodeStreamStream) error {
defer streamer.Close()
// Extract current user Id from X-Pydio-User key
var userId string
if meta, ok := metadata.FromContext(ctx); ok {
if value, ok2 := meta[common.PYDIO_CONTEXT_USER_KEY]; ok2 {
userId = value
}
// TODO - WTF WITH LOWER CASE ?
if value, ok2 := meta[strings.ToLower(common.PYDIO_CONTEXT_USER_KEY)]; ok2 {
userId = value
}
}
aclClient := idm.NewACLServiceClient(common.SERVICE_GRPC_NAMESPACE_+common.SERVICE_ACL, defaults.NewClient())
workspaceClient := idm.NewWorkspaceServiceClient(common.SERVICE_GRPC_NAMESPACE_+common.SERVICE_WORKSPACE, defaults.NewClient())
for {
request, err := streamer.Recv()
if request == nil {
break
}
if err != nil {
return err
}
node := request.Node
if userId == "" || node.Uuid == "" {
streamer.Send(&tree.ReadNodeResponse{Node: node})
continue
}
aclRequest, _ := ptypes.MarshalAny(&idm.ACLSingleQuery{
NodeIDs: []string{node.Uuid},
Actions: []*idm.ACLAction{
{Name: "read", Value: "1"},
{Name: "write", Value: "1"},
},
})
aclStream, e := aclClient.SearchACL(ctx, &idm.SearchACLRequest{Query: &service.Query{
SubQueries: []*any.Any{aclRequest},
}})
nodeAcls := make(map[string][]*idm.ACL)
if e == nil {
defer aclStream.Close()
for {
aclResp, er := aclStream.Recv()
if er != nil {
break
}
if aclResp == nil {
continue
}
if aclResp.ACL.WorkspaceID == "" {
continue
}
if _, exists := nodeAcls[aclResp.ACL.WorkspaceID]; !exists {
nodeAcls[aclResp.ACL.WorkspaceID] = []*idm.ACL{}
}
nodeAcls[aclResp.ACL.WorkspaceID] = append(nodeAcls[aclResp.ACL.WorkspaceID], aclResp.ACL)
}
}
//log.Logger(ctx).Info("Read Node Stream found workspaces on node", zap.String("uuid", node.Uuid), zap.Any("n", nodeAcls))
var shares []*idm.Workspace
for wsId, _ := range nodeAcls {
roomQuery, _ := ptypes.MarshalAny(&idm.WorkspaceSingleQuery{
Uuid: wsId,
Scope: idm.WorkspaceScope_ROOM,
})
linkQuery, _ := ptypes.MarshalAny(&idm.WorkspaceSingleQuery{
Uuid: wsId,
Scope: idm.WorkspaceScope_LINK,
})
subjects, _ := auth.SubjectsForResourcePolicyQuery(ctx, &rest.ResourcePolicyQuery{Type: rest.ResourcePolicyQuery_CONTEXT})
wsClient, err := workspaceClient.SearchWorkspace(ctx, &idm.SearchWorkspaceRequest{
Query: &service.Query{
SubQueries: []*any.Any{roomQuery, linkQuery},
ResourcePolicyQuery: &service.ResourcePolicyQuery{Subjects: subjects},
Operation: service.OperationType_OR,
},
})
if err == nil {
defer wsClient.Close()
for {
wsResp, er := wsClient.Recv()
if er != nil {
break
}
if wsResp == nil {
continue
}
shares = append(shares, wsResp.Workspace)
}
}
}
if len(shares) > 0 {
// Find some info about this node
log.Logger(ctx).Debug("Read Node Stream for Shares : found workspaces owned by user "+userId, zap.Any("s", shares))
node.SetMeta("workspaces_shares", shares)
}
streamer.Send(&tree.ReadNodeResponse{Node: node})
}
return nil
}