|
|
@@ -24,11 +24,11 @@ func ImgReqUpload(c *gin.Context) { |
|
|
|
e.OutErr(c, e.ERR_INVALID_ARGS) |
|
|
|
return |
|
|
|
} |
|
|
|
// 限制用户上传目录 |
|
|
|
if _, ok := md.FileUserDir[args.Dir]; !ok { |
|
|
|
e.OutErr(c, e.ERR_FORBIDEN) |
|
|
|
return |
|
|
|
} |
|
|
|
//// 限制用户上传目录 |
|
|
|
//if _, ok := md.FileUserDir[args.Dir]; !ok { |
|
|
|
// e.OutErr(c, e.ERR_FORBIDEN) |
|
|
|
// return |
|
|
|
//} |
|
|
|
scheme := "http" |
|
|
|
if c.Request.TLS != nil { |
|
|
|
scheme = "https" |
|
|
@@ -65,11 +65,6 @@ func ImgReqUploadNoUser(c *gin.Context) { |
|
|
|
e.OutErr(c, e.ERR_INVALID_ARGS) |
|
|
|
return |
|
|
|
} |
|
|
|
// 限制用户上传目录 |
|
|
|
if _, ok := md.FileUserDir[args.Dir]; !ok { |
|
|
|
e.OutErr(c, e.ERR_FORBIDEN) |
|
|
|
return |
|
|
|
} |
|
|
|
scheme := "http" |
|
|
|
if c.Request.TLS != nil { |
|
|
|
scheme = "https" |
|
|
|