@@ -56,39 +56,43 @@ func FsList(c *gin.Context) {
56
56
}
57
57
req .Validate ()
58
58
user := c .MustGet ("user" ).(* model.User )
59
- req .Path = stdpath .Join (user .BasePath , req .Path )
60
- meta , err := db .GetNearestMeta (req .Path )
59
+ reqPath , err := user .JoinPath (req .Path )
60
+ if err != nil {
61
+ common .ErrorResp (c , err , 403 )
62
+ return
63
+ }
64
+ meta , err := db .GetNearestMeta (reqPath )
61
65
if err != nil {
62
66
if ! errors .Is (errors .Cause (err ), errs .MetaNotFound ) {
63
67
common .ErrorResp (c , err , 500 , true )
64
68
return
65
69
}
66
70
}
67
71
c .Set ("meta" , meta )
68
- if ! common .CanAccess (user , meta , req . Path , req .Password ) {
72
+ if ! common .CanAccess (user , meta , reqPath , req .Password ) {
69
73
common .ErrorStrResp (c , "password is incorrect" , 403 )
70
74
return
71
75
}
72
- if ! user .CanWrite () && ! common .CanWrite (meta , req . Path ) && req .Refresh {
76
+ if ! user .CanWrite () && ! common .CanWrite (meta , reqPath ) && req .Refresh {
73
77
common .ErrorStrResp (c , "Refresh without permission" , 403 )
74
78
return
75
79
}
76
- objs , err := fs .List (c , req . Path , req .Refresh )
80
+ objs , err := fs .List (c , reqPath , req .Refresh )
77
81
if err != nil {
78
82
common .ErrorResp (c , err , 500 )
79
83
return
80
84
}
81
85
total , objs := pagination (objs , & req .PageReq )
82
86
provider := "unknown"
83
- storage , err := fs .GetStorage (req . Path )
87
+ storage , err := fs .GetStorage (reqPath )
84
88
if err == nil {
85
89
provider = storage .GetStorage ().Driver
86
90
}
87
91
common .SuccessResp (c , FsListResp {
88
- Content : toObjsResp (objs , req . Path , isEncrypt (meta , req . Path )),
92
+ Content : toObjsResp (objs , reqPath , isEncrypt (meta , reqPath )),
89
93
Total : int64 (total ),
90
- Readme : getReadme (meta , req . Path ),
91
- Write : user .CanWrite () || common .CanWrite (meta , req . Path ),
94
+ Readme : getReadme (meta , reqPath ),
95
+ Write : user .CanWrite () || common .CanWrite (meta , reqPath ),
92
96
Provider : provider ,
93
97
})
94
98
}
@@ -100,27 +104,33 @@ func FsDirs(c *gin.Context) {
100
104
return
101
105
}
102
106
user := c .MustGet ("user" ).(* model.User )
107
+ var reqPath string
103
108
if req .ForceRoot {
104
109
if ! user .IsAdmin () {
105
110
common .ErrorStrResp (c , "Permission denied" , 403 )
106
111
return
107
112
}
108
113
} else {
109
- req .Path = stdpath .Join (user .BasePath , req .Path )
114
+ tmp , err := user .JoinPath (req .Path )
115
+ if err != nil {
116
+ common .ErrorResp (c , err , 403 )
117
+ return
118
+ }
119
+ reqPath = tmp
110
120
}
111
- meta , err := db .GetNearestMeta (req . Path )
121
+ meta , err := db .GetNearestMeta (reqPath )
112
122
if err != nil {
113
123
if ! errors .Is (errors .Cause (err ), errs .MetaNotFound ) {
114
124
common .ErrorResp (c , err , 500 , true )
115
125
return
116
126
}
117
127
}
118
128
c .Set ("meta" , meta )
119
- if ! common .CanAccess (user , meta , req . Path , req .Password ) {
129
+ if ! common .CanAccess (user , meta , reqPath , req .Password ) {
120
130
common .ErrorStrResp (c , "password is incorrect" , 403 )
121
131
return
122
132
}
123
- objs , err := fs .List (c , req . Path )
133
+ objs , err := fs .List (c , reqPath )
124
134
if err != nil {
125
135
common .ErrorResp (c , err , 500 )
126
136
return
@@ -218,27 +228,31 @@ func FsGet(c *gin.Context) {
218
228
return
219
229
}
220
230
user := c .MustGet ("user" ).(* model.User )
221
- req .Path = stdpath .Join (user .BasePath , req .Path )
222
- meta , err := db .GetNearestMeta (req .Path )
231
+ reqPath , err := user .JoinPath (req .Path )
232
+ if err != nil {
233
+ common .ErrorResp (c , err , 403 )
234
+ return
235
+ }
236
+ meta , err := db .GetNearestMeta (reqPath )
223
237
if err != nil {
224
238
if ! errors .Is (errors .Cause (err ), errs .MetaNotFound ) {
225
239
common .ErrorResp (c , err , 500 )
226
240
return
227
241
}
228
242
}
229
243
c .Set ("meta" , meta )
230
- if ! common .CanAccess (user , meta , req . Path , req .Password ) {
244
+ if ! common .CanAccess (user , meta , reqPath , req .Password ) {
231
245
common .ErrorStrResp (c , "password is incorrect" , 403 )
232
246
return
233
247
}
234
- obj , err := fs .Get (c , req . Path )
248
+ obj , err := fs .Get (c , reqPath )
235
249
if err != nil {
236
250
common .ErrorResp (c , err , 500 )
237
251
return
238
252
}
239
253
var rawURL string
240
254
241
- storage , err := fs .GetStorage (req . Path )
255
+ storage , err := fs .GetStorage (reqPath )
242
256
provider := "unknown"
243
257
if err == nil {
244
258
provider = storage .Config ().Name
@@ -252,21 +266,21 @@ func FsGet(c *gin.Context) {
252
266
if storage .GetStorage ().DownProxyUrl != "" {
253
267
rawURL = fmt .Sprintf ("%s%s?sign=%s" ,
254
268
strings .Split (storage .GetStorage ().DownProxyUrl , "\n " )[0 ],
255
- utils .EncodePath (req . Path , true ),
256
- sign .Sign (req . Path ))
269
+ utils .EncodePath (reqPath , true ),
270
+ sign .Sign (reqPath ))
257
271
} else {
258
272
rawURL = fmt .Sprintf ("%s/p%s?sign=%s" ,
259
273
common .GetApiUrl (c .Request ),
260
- utils .EncodePath (req . Path , true ),
261
- sign .Sign (req . Path ))
274
+ utils .EncodePath (reqPath , true ),
275
+ sign .Sign (reqPath ))
262
276
}
263
277
} else {
264
278
// file have raw url
265
279
if u , ok := obj .(model.URL ); ok {
266
280
rawURL = u .URL ()
267
281
} else {
268
282
// if storage is not proxy, use raw url by fs.Link
269
- link , _ , err := fs .Link (c , req . Path , model.LinkArgs {IP : c .ClientIP (), Header : c .Request .Header })
283
+ link , _ , err := fs .Link (c , reqPath , model.LinkArgs {IP : c .ClientIP (), Header : c .Request .Header })
270
284
if err != nil {
271
285
common .ErrorResp (c , err , 500 )
272
286
return
@@ -276,7 +290,7 @@ func FsGet(c *gin.Context) {
276
290
}
277
291
}
278
292
var related []model.Obj
279
- parentPath := stdpath .Dir (req . Path )
293
+ parentPath := stdpath .Dir (reqPath )
280
294
sameLevelFiles , err := fs .List (c , parentPath )
281
295
if err == nil {
282
296
related = filterRelated (sameLevelFiles , obj )
@@ -288,11 +302,11 @@ func FsGet(c *gin.Context) {
288
302
Size : obj .GetSize (),
289
303
IsDir : obj .IsDir (),
290
304
Modified : obj .ModTime (),
291
- Sign : common .Sign (obj , parentPath , isEncrypt (meta , req . Path )),
305
+ Sign : common .Sign (obj , parentPath , isEncrypt (meta , reqPath )),
292
306
Type : utils .GetFileType (obj .GetName ()),
293
307
},
294
308
RawURL : rawURL ,
295
- Readme : getReadme (meta , req . Path ),
309
+ Readme : getReadme (meta , reqPath ),
296
310
Provider : provider ,
297
311
Related : toObjsResp (related , parentPath , isEncrypt (parentMeta , parentPath )),
298
312
})
@@ -324,7 +338,12 @@ func FsOther(c *gin.Context) {
324
338
return
325
339
}
326
340
user := c .MustGet ("user" ).(* model.User )
327
- req .Path = stdpath .Join (user .BasePath , req .Path )
341
+ var err error
342
+ req .Path , err = user .JoinPath (req .Path )
343
+ if err != nil {
344
+ common .ErrorResp (c , err , 403 )
345
+ return
346
+ }
328
347
meta , err := db .GetNearestMeta (req .Path )
329
348
if err != nil {
330
349
if ! errors .Is (errors .Cause (err ), errs .MetaNotFound ) {
0 commit comments