Cloudreve/pkg/filesystem/filesystem.go

76 lines
1.6 KiB
Go
Raw Normal View History

2019-11-16 00:37:42 -05:00
package filesystem
import (
2019-11-16 07:31:34 -05:00
"context"
2019-11-16 03:11:37 -05:00
"github.com/HFO4/cloudreve/models"
2019-11-17 00:50:14 -05:00
"github.com/HFO4/cloudreve/pkg/filesystem/local"
testMock "github.com/stretchr/testify/mock"
2019-11-16 00:37:42 -05:00
"io"
)
// FileHeader 上传来的文件数据处理器
type FileHeader interface {
2019-11-16 00:37:42 -05:00
io.Reader
io.Closer
GetSize() uint64
GetMIMEType() string
2019-11-16 03:05:10 -05:00
GetFileName() string
GetVirtualPath() string
2019-11-16 00:37:42 -05:00
}
2019-11-17 00:50:14 -05:00
// Handler 存储策略适配器
type Handler interface {
// 上传文件
2019-11-17 00:50:14 -05:00
Put(ctx context.Context, file io.ReadCloser, dst string) error
// 删除一个或多个文件
Delete(ctx context.Context, files []string) ([]string, error)
2019-11-17 00:50:14 -05:00
}
2019-11-16 00:37:42 -05:00
// FileSystem 管理文件的文件系统
type FileSystem struct {
/*
测试用
*/
testMock.Mock
2019-11-16 03:05:10 -05:00
/*
文件系统所有者
2019-11-16 03:05:10 -05:00
*/
2019-11-16 00:37:42 -05:00
User *model.User
2019-11-16 03:05:10 -05:00
/*
钩子函数
2019-11-16 03:05:10 -05:00
*/
// 上传文件前
2019-11-18 06:09:56 -05:00
BeforeUpload func(ctx context.Context, fs *FileSystem) error
2019-11-16 03:05:10 -05:00
// 上传文件后
2019-11-16 07:31:34 -05:00
AfterUpload func(ctx context.Context, fs *FileSystem) error
2019-11-17 00:50:14 -05:00
// 文件保存成功,插入数据库验证失败后
AfterValidateFailed func(ctx context.Context, fs *FileSystem) error
// 用户取消上传后
2019-11-18 06:09:56 -05:00
AfterUploadCanceled func(ctx context.Context, fs *FileSystem) error
2019-11-16 03:05:10 -05:00
/*
文件系统处理适配器
2019-11-16 03:05:10 -05:00
*/
2019-11-17 00:50:14 -05:00
Handler Handler
2019-11-16 00:37:42 -05:00
}
2019-11-16 03:49:03 -05:00
// NewFileSystem 初始化一个文件系统
2019-11-17 00:50:14 -05:00
func NewFileSystem(user *model.User) (*FileSystem, error) {
var handler Handler
// 根据存储策略类型分配适配器
switch user.Policy.Type {
case "local":
handler = local.Handler{}
default:
return nil, ErrUnknownPolicyType
2019-11-16 03:49:03 -05:00
}
2019-11-17 00:50:14 -05:00
// TODO 分配默认钩子
return &FileSystem{
User: user,
Handler: handler,
}, nil
2019-11-16 03:49:03 -05:00
}