-
Notifications
You must be signed in to change notification settings - Fork 180
/
handler-events-read.go
209 lines (188 loc) · 6.56 KB
/
handler-events-read.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
/*
* 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 events
import (
"context"
"github.com/pydio/cells/v4/common/runtime"
"io"
"go.uber.org/zap"
"google.golang.org/grpc"
"github.com/pydio/cells/v4/common"
"github.com/pydio/cells/v4/common/broker"
grpc2 "github.com/pydio/cells/v4/common/client/grpc"
"github.com/pydio/cells/v4/common/log"
"github.com/pydio/cells/v4/common/nodes"
"github.com/pydio/cells/v4/common/nodes/abstract"
"github.com/pydio/cells/v4/common/nodes/models"
"github.com/pydio/cells/v4/common/proto/docstore"
"github.com/pydio/cells/v4/common/proto/idm"
"github.com/pydio/cells/v4/common/proto/tree"
"github.com/pydio/cells/v4/common/service/context/metadata"
"github.com/pydio/cells/v4/common/service/errors"
json "github.com/pydio/cells/v4/common/utils/jsonx"
"github.com/pydio/cells/v4/common/utils/permissions"
)
func WithRead() nodes.Option {
return func(options *nodes.RouterOptions) {
if options.LogReadEvents {
options.Wrappers = append(options.Wrappers, &HandlerRead{})
}
}
}
// HandlerRead publishes events after reading files.
type HandlerRead struct {
abstract.Handler
}
func (h *HandlerRead) Adapt(c nodes.Handler, options nodes.RouterOptions) nodes.Handler {
h.AdaptOptions(c, options)
return h
}
func (h *HandlerRead) feedNodeUuid(ctx context.Context, node *tree.Node) error {
response, e := h.Next.ReadNode(ctx, &tree.ReadNodeRequest{Node: node})
if e != nil {
return e
}
node.Uuid = response.Node.Uuid
node.Type = response.Node.Type
return nil
}
func (h *HandlerRead) ListNodes(ctx context.Context, in *tree.ListNodesRequest, opts ...grpc.CallOption) (tree.NodeProvider_ListNodesClient, error) {
c, e := h.Next.ListNodes(ctx, in, opts...)
if branchInfo, ok := nodes.GetBranchInfo(ctx, "in"); ok && branchInfo.IsInternal() {
return c, e
}
if e == nil && in.Node != nil {
node := in.Node.Clone()
if node.Uuid == "" {
if e := h.feedNodeUuid(ctx, node); e != nil {
log.Logger(ctx).Error("HandlerRead did not find Uuid!", zap.Error(e))
}
}
if node.Uuid != "" {
c := metadata.NewBackgroundWithMetaCopy(ctx)
go func() {
broker.MustPublish(c, common.TopicTreeChanges, &tree.NodeChangeEvent{
Type: tree.NodeChangeEvent_READ,
Target: node,
})
}()
}
}
return c, e
}
func (h *HandlerRead) GetObject(ctx context.Context, node *tree.Node, requestData *models.GetRequestData) (io.ReadCloser, error) {
logger := log.Logger(ctx)
var (
doc *docstore.Document
linkData *docstore.ShareDocument
)
if doc, linkData = h.sharedLinkWithDownloadLimit(ctx); doc != nil && linkData != nil {
// Check download limit!
if linkData.DownloadCount >= linkData.DownloadLimit {
return nil, errors.Forbidden("MaxDownloadsReached", "You are not allowed to download this document")
}
}
reader, e := h.Next.GetObject(ctx, node, requestData)
if branchInfo, ok := nodes.GetBranchInfo(ctx, "in"); ok && branchInfo.IsInternal() {
return reader, e
}
if e == nil && requestData.StartOffset == 0 {
eventNode := node.Clone()
if eventNode.Uuid == "" {
if e := h.feedNodeUuid(ctx, eventNode); e != nil {
logger.Debug("HandlerRead did not find Uuid!", zap.Error(e))
}
}
if eventNode.Uuid != "" {
if eventNode.Type == tree.NodeType_UNKNOWN {
// Assume it's a file
eventNode.Type = tree.NodeType_LEAF
}
c := metadata.NewBackgroundWithMetaCopy(ctx)
go func() {
broker.MustPublish(c, common.TopicTreeChanges, &tree.NodeChangeEvent{
Type: tree.NodeChangeEvent_READ,
Target: eventNode,
})
}()
}
if doc != nil && linkData != nil {
go func() {
bgContext := context.Background()
linkData.DownloadCount++
newData, _ := json.Marshal(linkData)
doc.Data = string(newData)
store := docstore.NewDocStoreClient(grpc2.GetClientConnFromCtx(ctx, common.ServiceDocStore))
_, e3 := store.PutDocument(bgContext, &docstore.PutDocumentRequest{StoreID: common.DocStoreIdShares, DocumentID: doc.ID, Document: doc})
if e3 == nil {
logger.Debug("Updated share download count " + doc.ID)
} else {
logger.Error("Docstore error while trying to increment link downloads count", zap.Error(e3))
}
}()
}
}
return reader, e
}
func (h *HandlerRead) sharedLinkWithDownloadLimit(ctx context.Context) (doc *docstore.Document, linkData *docstore.ShareDocument) {
userLogin, claims := permissions.FindUserNameInContext(ctx)
// TODO - Have the 'hidden' info directly in claims => could it be a profile instead ?
if claims.Profile != common.PydioProfileShared {
return
}
bgContext := runtime.ForkContext(context.Background(), ctx)
user, e := permissions.SearchUniqueUser(bgContext, userLogin, "", &idm.UserSingleQuery{AttributeName: idm.UserAttrHidden, AttributeValue: "true"})
if e != nil || user == nil {
return
}
// This is a unique hidden user - search corresponding link and update download number
store := docstore.NewDocStoreClient(grpc2.GetClientConnFromCtx(ctx, common.ServiceDocStore))
// SEARCH WITH PRESET_LOGIN
lC, ca := context.WithCancel(bgContext)
defer ca()
stream, e := store.ListDocuments(lC, &docstore.ListDocumentsRequest{StoreID: common.DocStoreIdShares, Query: &docstore.DocumentQuery{
MetaQuery: "+SHARE_TYPE:minisite +PRESET_LOGIN:" + userLogin + "",
}})
if e != nil {
return
}
if r, e := stream.Recv(); e == nil {
doc = r.Document
}
if doc == nil {
// SEARCH WITH PRELOG_USER
stream2, e := store.ListDocuments(lC, &docstore.ListDocumentsRequest{StoreID: common.DocStoreIdShares, Query: &docstore.DocumentQuery{
MetaQuery: "+SHARE_TYPE:minisite +PRELOG_USER:" + userLogin + "",
}})
if e != nil {
return
}
if r, e := stream2.Recv(); e == nil {
doc = r.Document
}
}
if doc != nil {
var data *docstore.ShareDocument
if e2 := json.Unmarshal([]byte(doc.Data), &data); e2 == nil && data.DownloadLimit > 0 {
linkData = data
}
}
return
}