2019-11-16 16:05:10 +08:00
|
|
|
package filesystem
|
|
|
|
|
2019-11-16 20:31:34 +08:00
|
|
|
import (
|
|
|
|
"context"
|
2019-11-18 14:06:15 +08:00
|
|
|
"errors"
|
2019-11-18 18:29:37 +08:00
|
|
|
"github.com/HFO4/cloudreve/pkg/util"
|
2019-11-18 19:32:06 +08:00
|
|
|
"github.com/gin-gonic/gin"
|
2019-11-16 20:31:34 +08:00
|
|
|
)
|
2019-11-16 16:05:10 +08:00
|
|
|
|
|
|
|
// GenericBeforeUpload 通用上传前处理钩子,包含数据库操作
|
2019-11-18 19:09:56 +08:00
|
|
|
func GenericBeforeUpload(ctx context.Context, fs *FileSystem) error {
|
|
|
|
file := ctx.Value(FileCtx).(FileData)
|
|
|
|
|
2019-11-16 16:05:10 +08:00
|
|
|
// 验证单文件尺寸
|
2019-11-16 20:31:34 +08:00
|
|
|
if !fs.ValidateFileSize(ctx, file.GetSize()) {
|
2019-11-17 13:50:14 +08:00
|
|
|
return FileSizeTooBigError
|
2019-11-16 16:05:10 +08:00
|
|
|
}
|
|
|
|
|
2019-11-18 13:26:32 +08:00
|
|
|
// 验证文件名
|
|
|
|
if !fs.ValidateLegalName(ctx, file.GetFileName()) {
|
|
|
|
return IlegalObjectNameError
|
|
|
|
}
|
|
|
|
|
2019-11-16 16:05:10 +08:00
|
|
|
// 验证扩展名
|
2019-11-16 20:31:34 +08:00
|
|
|
if !fs.ValidateExtension(ctx, file.GetFileName()) {
|
2019-11-17 13:50:14 +08:00
|
|
|
return FileExtensionNotAllowedError
|
|
|
|
}
|
|
|
|
|
|
|
|
// 验证并扣除容量
|
|
|
|
if !fs.ValidateCapacity(ctx, file.GetSize()) {
|
|
|
|
return InsufficientCapacityError
|
2019-11-16 16:05:10 +08:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2019-11-18 14:06:15 +08:00
|
|
|
|
|
|
|
// GenericAfterUploadCanceled 通用上传取消处理钩子,包含数据库操作
|
2019-11-18 19:09:56 +08:00
|
|
|
func GenericAfterUploadCanceled(ctx context.Context, fs *FileSystem) error {
|
|
|
|
file := ctx.Value(FileCtx).(FileData)
|
|
|
|
|
2019-11-18 19:32:06 +08:00
|
|
|
filePath := ctx.Value(SavePathCtx).(string)
|
2019-11-18 14:06:15 +08:00
|
|
|
// 删除临时文件
|
2019-11-18 18:29:37 +08:00
|
|
|
if util.Exists(filePath) {
|
|
|
|
_, err := fs.Handler.Delete(ctx, []string{filePath})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-11-18 14:06:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 归还用户容量
|
|
|
|
if !fs.User.DeductionStorage(file.GetSize()) {
|
|
|
|
return errors.New("无法继续降低用户已用存储")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2019-11-18 19:09:56 +08:00
|
|
|
|
|
|
|
// GenericAfterUpload 文件上传完成后,包含数据库操作
|
|
|
|
func GenericAfterUpload(ctx context.Context, fs *FileSystem) error {
|
|
|
|
// 获取Gin的上下文
|
2019-11-18 19:32:06 +08:00
|
|
|
ginCtx := ctx.Value(GinCtx).(*gin.Context)
|
2019-11-18 19:09:56 +08:00
|
|
|
// 文件存放的虚拟路径
|
2019-11-18 19:32:06 +08:00
|
|
|
virtualPath := util.DotPathToStandardPath(ginCtx.GetHeader("X-Path"))
|
2019-11-18 19:09:56 +08:00
|
|
|
|
|
|
|
// 检查路径是否存在
|
2019-11-18 19:32:06 +08:00
|
|
|
if !fs.IsPathExist(virtualPath) {
|
|
|
|
return errors.New("路径\"" + virtualPath + "\"不存在")
|
2019-11-18 19:09:56 +08:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|