-
Notifications
You must be signed in to change notification settings - Fork 180
/
handler-data-upload-limit.go
158 lines (140 loc) · 5.08 KB
/
handler-data-upload-limit.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
/*
* 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 put
import (
"context"
"fmt"
"io"
"path"
"strconv"
"strings"
"github.com/pydio/cells/v4/common/config"
"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/idm"
"github.com/pydio/cells/v4/common/proto/tree"
"github.com/pydio/cells/v4/common/service/errors"
"github.com/pydio/cells/v4/common/utils/permissions"
)
func WithUploadLimiter() nodes.Option {
return func(options *nodes.RouterOptions) {
if !options.AdminView {
options.Wrappers = append(options.Wrappers, &UploadLimitFilter{})
}
}
}
// UploadLimitFilter restricts atomic uploads by extension and maximum size, based on the front plugins configuration.
type UploadLimitFilter struct {
abstract.Handler
}
func (a *UploadLimitFilter) Adapt(c nodes.Handler, options nodes.RouterOptions) nodes.Handler {
a.AdaptOptions(c, options)
return a
}
// PutObject checks Upload Limits (size, extension) defined in the frontend on PutObject operation
func (a *UploadLimitFilter) PutObject(ctx context.Context, node *tree.Node, reader io.Reader, requestData *models.PutRequestData) (models.ObjectInfo, error) {
size, exts, err := a.getUploadLimits(ctx)
if err != nil {
return models.ObjectInfo{}, err
}
if size > 0 && requestData.Size > size {
return models.ObjectInfo{}, errors.Forbidden("max.upload.limit", fmt.Sprintf("Upload limit is %d", size))
}
if len(exts) > 0 {
// Beware, Ext function includes the leading dot
nodeExt := path.Ext(node.GetPath())
allowed := false
for _, e := range exts {
if strings.EqualFold("."+e, nodeExt) {
allowed = true
break
}
}
if !allowed {
return models.ObjectInfo{}, errors.Forbidden("forbidden.upload.extensions", fmt.Sprintf("Extension %s is not allowed!", nodeExt))
}
}
return a.Next.PutObject(ctx, node, reader, requestData)
}
// MultipartPutObjectPart checks Upload Limits (size, extension) defined in the frontend on MultipartPutObjectPart
func (a *UploadLimitFilter) MultipartPutObjectPart(ctx context.Context, target *tree.Node, uploadID string, partNumberMarker int, reader io.Reader, requestData *models.PutRequestData) (models.MultipartObjectPart, error) {
size, exts, err := a.getUploadLimits(ctx)
if err != nil {
return models.MultipartObjectPart{}, err
}
if size > 0 && requestData.Size > size {
return models.MultipartObjectPart{}, errors.Forbidden("max.upload.limit", fmt.Sprintf("Upload limit is %d", size))
}
if len(exts) > 0 {
nodeExt := path.Ext(target.GetPath())
allowed := false
for _, e := range exts {
if strings.EqualFold("."+e, nodeExt) {
allowed = true
break
}
}
if !allowed {
return models.MultipartObjectPart{}, errors.Forbidden("forbidden.upload.extensions", fmt.Sprintf("Extension %s is not allowed!", nodeExt))
}
}
return a.Next.MultipartPutObjectPart(ctx, target, uploadID, partNumberMarker, reader, requestData)
}
// Parse Upload Limits from config
func (a *UploadLimitFilter) getUploadLimits(ctx context.Context) (limit int64, extensions []string, err error) {
pName := "core.uploader"
maxSizeName := "UPLOAD_MAX_SIZE"
extensionsName := "ALLOWED_EXTENSIONS"
var stringExts string
if v := config.Get("frontend", "plugin", pName).StringMap(); v != nil {
if u, ok := v[maxSizeName]; ok {
if l, e := strconv.ParseInt(u, 10, 64); e == nil {
limit = l
}
}
if exts, ok := v[extensionsName]; ok && strings.Trim(exts, " ") != "" {
stringExts = strings.TrimSpace(exts)
}
}
if i, ok := nodes.GetBranchInfo(ctx, "in"); ok && i.Workspace != nil {
acl, e := permissions.AccessListFromContextClaims(ctx)
if e != nil {
err = e
return
}
if e := permissions.AccessListLoadFrontValues(ctx, acl); e != nil {
err = e
return
}
aclParams := acl.FlattenedFrontValues().Val("parameters", pName)
log.Logger(ctx).Debug("Checking upload max size from ACLs " + aclParams.String())
scopes := permissions.FrontValuesScopesFromWorkspaces([]*idm.Workspace{i.Workspace})
for _, s := range scopes {
limit = aclParams.Val(maxSizeName, s).Default(limit).Int64()
stringExts = aclParams.Val(extensionsName, s).Default(stringExts).String()
}
}
if stringExts != "" {
extensions = strings.Split(stringExts, ",")
}
return
}