|
|
@ -4,6 +4,7 @@ import (
|
|
|
|
"context"
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"errors"
|
|
|
|
"github.com/HFO4/cloudreve/pkg/util"
|
|
|
|
"github.com/HFO4/cloudreve/pkg/util"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// GenericBeforeUpload 通用上传前处理钩子,包含数据库操作
|
|
|
|
// GenericBeforeUpload 通用上传前处理钩子,包含数据库操作
|
|
|
@ -36,7 +37,7 @@ func GenericBeforeUpload(ctx context.Context, fs *FileSystem) error {
|
|
|
|
func GenericAfterUploadCanceled(ctx context.Context, fs *FileSystem) error {
|
|
|
|
func GenericAfterUploadCanceled(ctx context.Context, fs *FileSystem) error {
|
|
|
|
file := ctx.Value(FileCtx).(FileData)
|
|
|
|
file := ctx.Value(FileCtx).(FileData)
|
|
|
|
|
|
|
|
|
|
|
|
filePath := ctx.Value("path").(string)
|
|
|
|
filePath := ctx.Value(SavePathCtx).(string)
|
|
|
|
// 删除临时文件
|
|
|
|
// 删除临时文件
|
|
|
|
if util.Exists(filePath) {
|
|
|
|
if util.Exists(filePath) {
|
|
|
|
_, err := fs.Handler.Delete(ctx, []string{filePath})
|
|
|
|
_, err := fs.Handler.Delete(ctx, []string{filePath})
|
|
|
@ -55,13 +56,13 @@ func GenericAfterUploadCanceled(ctx context.Context, fs *FileSystem) error {
|
|
|
|
// GenericAfterUpload 文件上传完成后,包含数据库操作
|
|
|
|
// GenericAfterUpload 文件上传完成后,包含数据库操作
|
|
|
|
func GenericAfterUpload(ctx context.Context, fs *FileSystem) error {
|
|
|
|
func GenericAfterUpload(ctx context.Context, fs *FileSystem) error {
|
|
|
|
// 获取Gin的上下文
|
|
|
|
// 获取Gin的上下文
|
|
|
|
//ginCtx := ctx.Value(GinCtx).(*gin.Context)
|
|
|
|
ginCtx := ctx.Value(GinCtx).(*gin.Context)
|
|
|
|
// 文件存放的虚拟路径
|
|
|
|
// 文件存放的虚拟路径
|
|
|
|
//virtualPath := ginCtx.GetHeader("X-Path")
|
|
|
|
virtualPath := util.DotPathToStandardPath(ginCtx.GetHeader("X-Path"))
|
|
|
|
|
|
|
|
|
|
|
|
// 检查路径是否存在
|
|
|
|
// 检查路径是否存在
|
|
|
|
if !fs.IsPathExist("/") {
|
|
|
|
if !fs.IsPathExist(virtualPath) {
|
|
|
|
return errors.New("sss")
|
|
|
|
return errors.New("路径\"" + virtualPath + "\"不存在")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|