@@ -66,11 +66,11 @@ func FsList(c *gin.Context) {
66
66
}
67
67
}
68
68
c .Set ("meta" , meta )
69
- if ! canAccess (user , meta , req .Path , req .Password ) {
69
+ if ! common . CanAccess (user , meta , req .Path , req .Password ) {
70
70
common .ErrorStrResp (c , "password is incorrect" , 403 )
71
71
return
72
72
}
73
- if ! user .CanWrite () && ! canWrite (meta , req .Path ) && req .Refresh {
73
+ if ! user .CanWrite () && ! common . CanWrite (meta , req .Path ) && req .Refresh {
74
74
common .ErrorStrResp (c , "Refresh without permission" , 403 )
75
75
return
76
76
}
@@ -89,7 +89,7 @@ func FsList(c *gin.Context) {
89
89
Content : toObjResp (objs , req .Path , isEncrypt (meta , req .Path )),
90
90
Total : int64 (total ),
91
91
Readme : getReadme (meta , req .Path ),
92
- Write : user .CanWrite () || canWrite (meta , req .Path ),
92
+ Write : user .CanWrite () || common . CanWrite (meta , req .Path ),
93
93
Provider : provider ,
94
94
})
95
95
}
@@ -117,7 +117,7 @@ func FsDirs(c *gin.Context) {
117
117
}
118
118
}
119
119
c .Set ("meta" , meta )
120
- if ! canAccess (user , meta , req .Path , req .Password ) {
120
+ if ! common . CanAccess (user , meta , req .Path , req .Password ) {
121
121
common .ErrorStrResp (c , "password is incorrect" , 403 )
122
122
return
123
123
}
@@ -155,23 +155,6 @@ func getReadme(meta *model.Meta, path string) string {
155
155
return ""
156
156
}
157
157
158
- func canAccess (user * model.User , meta * model.Meta , path string , password string ) bool {
159
- // if is not guest, can access
160
- if user .CanAccessWithoutPassword () {
161
- return true
162
- }
163
- // if meta is nil or password is empty, can access
164
- if meta == nil || meta .Password == "" {
165
- return true
166
- }
167
- // if meta doesn't apply to sub_folder, can access
168
- if ! utils .PathEqual (meta .Path , path ) && ! meta .PSub {
169
- return true
170
- }
171
- // validate password
172
- return meta .Password == password
173
- }
174
-
175
158
func isEncrypt (meta * model.Meta , path string ) bool {
176
159
if meta == nil || meta .Password == "" {
177
160
return false
@@ -249,7 +232,7 @@ func FsGet(c *gin.Context) {
249
232
}
250
233
}
251
234
c .Set ("meta" , meta )
252
- if ! canAccess (user , meta , req .Path , req .Password ) {
235
+ if ! common . CanAccess (user , meta , req .Path , req .Password ) {
253
236
common .ErrorStrResp (c , "password is incorrect" , 403 )
254
237
return
255
238
}
@@ -355,7 +338,7 @@ func FsOther(c *gin.Context) {
355
338
}
356
339
}
357
340
c .Set ("meta" , meta )
358
- if ! canAccess (user , meta , req .Path , req .Password ) {
341
+ if ! common . CanAccess (user , meta , req .Path , req .Password ) {
359
342
common .ErrorStrResp (c , "password is incorrect" , 403 )
360
343
return
361
344
}
0 commit comments