mirror of
				https://github.com/cloudreve/cloudreve.git
				synced 2025-10-31 16:49:03 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			336 lines
		
	
	
		
			8.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			336 lines
		
	
	
		
			8.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package filesystem
 | ||
| 
 | ||
| import (
 | ||
| 	"context"
 | ||
| 	model "github.com/HFO4/cloudreve/models"
 | ||
| 	"github.com/HFO4/cloudreve/pkg/conf"
 | ||
| 	"github.com/HFO4/cloudreve/pkg/filesystem/fsctx"
 | ||
| 	"github.com/HFO4/cloudreve/pkg/filesystem/response"
 | ||
| 	"github.com/HFO4/cloudreve/pkg/serializer"
 | ||
| 	"github.com/HFO4/cloudreve/pkg/util"
 | ||
| 	"github.com/juju/ratelimit"
 | ||
| 	"io"
 | ||
| )
 | ||
| 
 | ||
| /* ============
 | ||
| 	 文件相关
 | ||
|    ============
 | ||
| */
 | ||
| 
 | ||
| // 限速后的ReaderSeeker
 | ||
| type lrs struct {
 | ||
| 	response.RSCloser
 | ||
| 	r io.Reader
 | ||
| }
 | ||
| 
 | ||
| func (r lrs) Read(p []byte) (int, error) {
 | ||
| 	return r.r.Read(p)
 | ||
| }
 | ||
| 
 | ||
| // withSpeedLimit 给原有的ReadSeeker加上限速
 | ||
| func (fs *FileSystem) withSpeedLimit(rs response.RSCloser) response.RSCloser {
 | ||
| 	// 如果用户组有速度限制,就返回限制流速的ReaderSeeker
 | ||
| 	if fs.User.Group.SpeedLimit != 0 {
 | ||
| 		speed := fs.User.Group.SpeedLimit
 | ||
| 		bucket := ratelimit.NewBucketWithRate(float64(speed), int64(speed))
 | ||
| 		lrs := lrs{rs, ratelimit.Reader(rs, bucket)}
 | ||
| 		return lrs
 | ||
| 	}
 | ||
| 	// 否则返回原始流
 | ||
| 	return rs
 | ||
| 
 | ||
| }
 | ||
| 
 | ||
| // AddFile 新增文件记录
 | ||
| func (fs *FileSystem) AddFile(ctx context.Context, parent *model.Folder) (*model.File, error) {
 | ||
| 	// 添加文件记录前的钩子
 | ||
| 	err := fs.Trigger(ctx, "BeforeAddFile")
 | ||
| 	if err != nil {
 | ||
| 		if err := fs.Trigger(ctx, "BeforeAddFileFailed"); err != nil {
 | ||
| 			util.Log().Debug("BeforeAddFileFailed 钩子执行失败,%s", err)
 | ||
| 		}
 | ||
| 		return nil, err
 | ||
| 	}
 | ||
| 
 | ||
| 	file := ctx.Value(fsctx.FileHeaderCtx).(FileHeader)
 | ||
| 	filePath := ctx.Value(fsctx.SavePathCtx).(string)
 | ||
| 
 | ||
| 	newFile := model.File{
 | ||
| 		Name:       file.GetFileName(),
 | ||
| 		SourceName: filePath,
 | ||
| 		UserID:     fs.User.ID,
 | ||
| 		Size:       file.GetSize(),
 | ||
| 		FolderID:   parent.ID,
 | ||
| 		PolicyID:   fs.User.Policy.ID,
 | ||
| 	}
 | ||
| 	_, err = newFile.Create()
 | ||
| 
 | ||
| 	if err != nil {
 | ||
| 		if err := fs.Trigger(ctx, "AfterValidateFailed"); err != nil {
 | ||
| 			util.Log().Debug("AfterValidateFailed 钩子执行失败,%s", err)
 | ||
| 		}
 | ||
| 		return nil, ErrFileExisted.WithError(err)
 | ||
| 	}
 | ||
| 
 | ||
| 	return &newFile, nil
 | ||
| }
 | ||
| 
 | ||
| // GetPhysicalFileContent 根据文件物理路径获取文件流
 | ||
| func (fs *FileSystem) GetPhysicalFileContent(ctx context.Context, path string) (response.RSCloser, error) {
 | ||
| 	// 重设上传策略
 | ||
| 	fs.Policy = &model.Policy{Type: "local"}
 | ||
| 	_ = fs.DispatchHandler()
 | ||
| 
 | ||
| 	// 获取文件流
 | ||
| 	rs, err := fs.Handler.Get(ctx, path)
 | ||
| 	if err != nil {
 | ||
| 		return nil, err
 | ||
| 	}
 | ||
| 
 | ||
| 	return fs.withSpeedLimit(rs), nil
 | ||
| }
 | ||
| 
 | ||
| // Preview 预览文件
 | ||
| //   path   -   文件虚拟路径
 | ||
| //   isText -   是否为文本文件,文本文件会忽略重定向,直接由
 | ||
| //              服务端拉取中转给用户,故会对文件大小进行限制
 | ||
| func (fs *FileSystem) Preview(ctx context.Context, path string, isText bool) (*response.ContentResponse, error) {
 | ||
| 	err := fs.resetFileIfNotExist(ctx, path)
 | ||
| 	if err != nil {
 | ||
| 		return nil, err
 | ||
| 	}
 | ||
| 
 | ||
| 	// 如果是文本文件预览,需要检查大小限制
 | ||
| 	sizeLimit := model.GetIntSetting("maxEditSize", 2<<20)
 | ||
| 	if isText && fs.FileTarget[0].Size > uint64(sizeLimit) {
 | ||
| 		return nil, ErrFileSizeTooBig
 | ||
| 	}
 | ||
| 
 | ||
| 	// 是否直接返回文件内容
 | ||
| 	if isText || fs.Policy.IsDirectlyPreview() {
 | ||
| 		resp, err := fs.GetDownloadContent(ctx, path)
 | ||
| 		if err != nil {
 | ||
| 			return nil, err
 | ||
| 		}
 | ||
| 		return &response.ContentResponse{
 | ||
| 			Redirect: false,
 | ||
| 			Content:  resp,
 | ||
| 		}, nil
 | ||
| 	}
 | ||
| 
 | ||
| 	// 否则重定向到签名的预览URL
 | ||
| 	ttl := model.GetIntSetting("preview_timeout", 60)
 | ||
| 	previewURL, err := fs.signURL(ctx, &fs.FileTarget[0], int64(ttl), false)
 | ||
| 	if err != nil {
 | ||
| 		return nil, err
 | ||
| 	}
 | ||
| 	return &response.ContentResponse{
 | ||
| 		Redirect: true,
 | ||
| 		URL:      previewURL,
 | ||
| 	}, nil
 | ||
| 
 | ||
| }
 | ||
| 
 | ||
| // GetDownloadContent 获取用于下载的文件流
 | ||
| func (fs *FileSystem) GetDownloadContent(ctx context.Context, path string) (response.RSCloser, error) {
 | ||
| 	// 获取原始文件流
 | ||
| 	rs, err := fs.GetContent(ctx, path)
 | ||
| 	if err != nil {
 | ||
| 		return nil, err
 | ||
| 	}
 | ||
| 
 | ||
| 	// 返回限速处理后的文件流
 | ||
| 	return fs.withSpeedLimit(rs), nil
 | ||
| 
 | ||
| }
 | ||
| 
 | ||
| // GetContent 获取文件内容,path为虚拟路径
 | ||
| func (fs *FileSystem) GetContent(ctx context.Context, path string) (response.RSCloser, error) {
 | ||
| 	// 触发`下载前`钩子
 | ||
| 	err := fs.Trigger(ctx, "BeforeFileDownload")
 | ||
| 	if err != nil {
 | ||
| 		util.Log().Debug("BeforeFileDownload 钩子执行失败,%s", err)
 | ||
| 		return nil, err
 | ||
| 	}
 | ||
| 
 | ||
| 	err = fs.resetFileIfNotExist(ctx, path)
 | ||
| 	if err != nil {
 | ||
| 		return nil, err
 | ||
| 	}
 | ||
| 	ctx = context.WithValue(ctx, fsctx.FileModelCtx, fs.FileTarget[0])
 | ||
| 
 | ||
| 	// 获取文件流
 | ||
| 	rs, err := fs.Handler.Get(ctx, fs.FileTarget[0].SourceName)
 | ||
| 	if err != nil {
 | ||
| 		return nil, ErrIO.WithError(err)
 | ||
| 	}
 | ||
| 
 | ||
| 	return rs, nil
 | ||
| }
 | ||
| 
 | ||
| // deleteGroupedFile 对分组好的文件执行删除操作,
 | ||
| // 返回每个分组失败的文件列表
 | ||
| func (fs *FileSystem) deleteGroupedFile(ctx context.Context, files map[uint][]*model.File) map[uint][]string {
 | ||
| 	// 失败的文件列表
 | ||
| 	// TODO 并行删除
 | ||
| 	failed := make(map[uint][]string, len(files))
 | ||
| 
 | ||
| 	for policyID, toBeDeletedFiles := range files {
 | ||
| 		// 列举出需要物理删除的文件的物理路径
 | ||
| 		sourceNames := make([]string, 0, len(toBeDeletedFiles))
 | ||
| 		for i := 0; i < len(toBeDeletedFiles); i++ {
 | ||
| 			sourceNames = append(sourceNames, toBeDeletedFiles[i].SourceName)
 | ||
| 		}
 | ||
| 
 | ||
| 		// 切换上传策略
 | ||
| 		fs.Policy = toBeDeletedFiles[0].GetPolicy()
 | ||
| 		err := fs.DispatchHandler()
 | ||
| 		if err != nil {
 | ||
| 			failed[policyID] = sourceNames
 | ||
| 			continue
 | ||
| 		}
 | ||
| 
 | ||
| 		// 执行删除
 | ||
| 		failedFile, _ := fs.Handler.Delete(ctx, sourceNames)
 | ||
| 		failed[policyID] = failedFile
 | ||
| 
 | ||
| 	}
 | ||
| 
 | ||
| 	return failed
 | ||
| }
 | ||
| 
 | ||
| // GroupFileByPolicy 将目标文件按照存储策略分组
 | ||
| func (fs *FileSystem) GroupFileByPolicy(ctx context.Context, files []model.File) map[uint][]*model.File {
 | ||
| 	var policyGroup = make(map[uint][]*model.File)
 | ||
| 
 | ||
| 	for key := range files {
 | ||
| 		if file, ok := policyGroup[files[key].PolicyID]; ok {
 | ||
| 			// 如果已存在分组,直接追加
 | ||
| 			policyGroup[files[key].PolicyID] = append(file, &files[key])
 | ||
| 		} else {
 | ||
| 			// 分布不存在,创建
 | ||
| 			policyGroup[files[key].PolicyID] = make([]*model.File, 0)
 | ||
| 			policyGroup[files[key].PolicyID] = append(policyGroup[files[key].PolicyID], &files[key])
 | ||
| 		}
 | ||
| 	}
 | ||
| 
 | ||
| 	return policyGroup
 | ||
| }
 | ||
| 
 | ||
| // GetDownloadURL 创建文件下载链接, timeout 为数据库中存储过期时间的字段
 | ||
| func (fs *FileSystem) GetDownloadURL(ctx context.Context, path string, timeout string) (string, error) {
 | ||
| 	err := fs.resetFileIfNotExist(ctx, path)
 | ||
| 	if err != nil {
 | ||
| 		return "", err
 | ||
| 	}
 | ||
| 	fileTarget := &fs.FileTarget[0]
 | ||
| 
 | ||
| 	// 生成下載地址
 | ||
| 	ttl := model.GetIntSetting(timeout, 60)
 | ||
| 	source, err := fs.signURL(
 | ||
| 		ctx,
 | ||
| 		fileTarget,
 | ||
| 		int64(ttl),
 | ||
| 		true,
 | ||
| 	)
 | ||
| 	if err != nil {
 | ||
| 		return "", err
 | ||
| 	}
 | ||
| 
 | ||
| 	return source, nil
 | ||
| }
 | ||
| 
 | ||
| // GetSource 获取可直接访问文件的外链地址
 | ||
| func (fs *FileSystem) GetSource(ctx context.Context, fileID uint) (string, error) {
 | ||
| 	// 查找文件记录
 | ||
| 	err := fs.resetFileIDIfNotExist(ctx, fileID)
 | ||
| 	if err != nil {
 | ||
| 		return "", ErrObjectNotExist.WithError(err)
 | ||
| 	}
 | ||
| 
 | ||
| 	// 检查存储策略是否可以获得外链
 | ||
| 	if !fs.Policy.IsOriginLinkEnable {
 | ||
| 		return "", serializer.NewError(
 | ||
| 			serializer.CodePolicyNotAllowed,
 | ||
| 			"当前存储策略无法获得外链",
 | ||
| 			nil,
 | ||
| 		)
 | ||
| 	}
 | ||
| 
 | ||
| 	source, err := fs.signURL(ctx, &fs.FileTarget[0], 0, false)
 | ||
| 	if err != nil {
 | ||
| 		return "", serializer.NewError(serializer.CodeNotSet, "无法获取外链", err)
 | ||
| 	}
 | ||
| 
 | ||
| 	return source, nil
 | ||
| }
 | ||
| 
 | ||
| func (fs *FileSystem) signURL(ctx context.Context, file *model.File, ttl int64, isDownload bool) (string, error) {
 | ||
| 	fs.FileTarget = []model.File{*file}
 | ||
| 	ctx = context.WithValue(ctx, fsctx.FileModelCtx, *file)
 | ||
| 
 | ||
| 	err := fs.resetPolicyToFirstFile(ctx)
 | ||
| 	if err != nil {
 | ||
| 		return "", err
 | ||
| 	}
 | ||
| 
 | ||
| 	// 签名最终URL
 | ||
| 	// 生成外链地址
 | ||
| 	siteURL := model.GetSiteURL()
 | ||
| 	source, err := fs.Handler.Source(ctx, fs.FileTarget[0].SourceName, *siteURL, ttl, isDownload, fs.User.Group.SpeedLimit)
 | ||
| 	if err != nil {
 | ||
| 		return "", serializer.NewError(serializer.CodeNotSet, "无法获取外链", err)
 | ||
| 	}
 | ||
| 
 | ||
| 	return source, nil
 | ||
| }
 | ||
| 
 | ||
| // resetFileIfNotExist 重设当前目标文件为 path,如果当前目标为空
 | ||
| func (fs *FileSystem) resetFileIfNotExist(ctx context.Context, path string) error {
 | ||
| 	// 找到文件
 | ||
| 	if len(fs.FileTarget) == 0 {
 | ||
| 		exist, file := fs.IsFileExist(path)
 | ||
| 		if !exist {
 | ||
| 			return ErrObjectNotExist
 | ||
| 		}
 | ||
| 		fs.FileTarget = []model.File{*file}
 | ||
| 	}
 | ||
| 
 | ||
| 	// 将当前存储策略重设为文件使用的
 | ||
| 	return fs.resetPolicyToFirstFile(ctx)
 | ||
| }
 | ||
| 
 | ||
| // resetFileIfNotExist 重设当前目标文件为 id,如果当前目标为空
 | ||
| func (fs *FileSystem) resetFileIDIfNotExist(ctx context.Context, id uint) error {
 | ||
| 	// 找到文件
 | ||
| 	if len(fs.FileTarget) == 0 {
 | ||
| 		file, err := model.GetFilesByIDs([]uint{id}, fs.User.ID)
 | ||
| 		if err != nil || len(file) == 0 {
 | ||
| 			return ErrObjectNotExist
 | ||
| 		}
 | ||
| 		fs.FileTarget = []model.File{file[0]}
 | ||
| 	}
 | ||
| 
 | ||
| 	// 将当前存储策略重设为文件使用的
 | ||
| 	return fs.resetPolicyToFirstFile(ctx)
 | ||
| }
 | ||
| 
 | ||
| // resetPolicyToFirstFile 将当前存储策略重设为第一个目标文件文件使用的
 | ||
| func (fs *FileSystem) resetPolicyToFirstFile(ctx context.Context) error {
 | ||
| 	if len(fs.FileTarget) == 0 {
 | ||
| 		return ErrObjectNotExist
 | ||
| 	}
 | ||
| 
 | ||
| 	// 从机模式不进行操作
 | ||
| 	if conf.SystemConfig.Mode == "slave" {
 | ||
| 		return nil
 | ||
| 	}
 | ||
| 
 | ||
| 	fs.Policy = fs.FileTarget[0].GetPolicy()
 | ||
| 	err := fs.DispatchHandler()
 | ||
| 	if err != nil {
 | ||
| 		return err
 | ||
| 	}
 | ||
| 	return nil
 | ||
| }
 | 
