mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-19 12:16:24 +08:00

* feat(task): add task hook,batch task
refactor(move): move use CopyTask
* Update internal/task/batch_task/refresh.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Signed-off-by: Seven <53081179+Seven66677731@users.noreply.github.com>
* fix: upload task allFinish judge
* Update internal/task/batch_task/refresh.go
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Signed-off-by: Seven <53081179+Seven66677731@users.noreply.github.com>
* feat: enhance concurrency safety
* 优化代码
* 解压缩
* 修复死锁
* refactor(move): move as task
* 重构,优化
* .
* 优化,修复bug
* .
* 修复bug
* feat: add task retry judge
* 代理Task.SetState函数来判断Task的生命周期
* chore: use OnSucceeded、OnFailed、OnBeforeRetry functions
* 优化
* 优化,去除重复代码
* .
* 优化
* .
* webdav
* Revert "fix(fs):After the file is copied or moved, flush the cache of the directory that was copied or moved to."
This reverts commit 5f03edd683
.
---------
Signed-off-by: Seven <53081179+Seven66677731@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: j2rong4cn <j2rong@qq.com>
60 lines
1.8 KiB
Go
60 lines
1.8 KiB
Go
package fs
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/OpenListTeam/OpenList/v4/internal/driver"
|
|
"github.com/OpenListTeam/OpenList/v4/internal/model"
|
|
"github.com/OpenListTeam/OpenList/v4/internal/op"
|
|
"github.com/OpenListTeam/OpenList/v4/internal/task"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func makeDir(ctx context.Context, path string, lazyCache ...bool) error {
|
|
storage, actualPath, err := op.GetStorageAndActualPath(path)
|
|
if err != nil {
|
|
return errors.WithMessage(err, "failed get storage")
|
|
}
|
|
return op.MakeDir(ctx, storage, actualPath, lazyCache...)
|
|
}
|
|
|
|
func rename(ctx context.Context, srcPath, dstName string, lazyCache ...bool) error {
|
|
storage, srcActualPath, err := op.GetStorageAndActualPath(srcPath)
|
|
if err != nil {
|
|
return errors.WithMessage(err, "failed get storage")
|
|
}
|
|
return op.Rename(ctx, storage, srcActualPath, dstName, lazyCache...)
|
|
}
|
|
|
|
func remove(ctx context.Context, path string) error {
|
|
storage, actualPath, err := op.GetStorageAndActualPath(path)
|
|
if err != nil {
|
|
return errors.WithMessage(err, "failed get storage")
|
|
}
|
|
return op.Remove(ctx, storage, actualPath)
|
|
}
|
|
|
|
func other(ctx context.Context, args model.FsOtherArgs) (interface{}, error) {
|
|
storage, actualPath, err := op.GetStorageAndActualPath(args.Path)
|
|
if err != nil {
|
|
return nil, errors.WithMessage(err, "failed get storage")
|
|
}
|
|
args.Path = actualPath
|
|
return op.Other(ctx, storage, args)
|
|
}
|
|
|
|
type TaskData struct {
|
|
task.TaskExtension
|
|
Status string `json:"-"` //don't save status to save space
|
|
SrcActualPath string `json:"src_path"`
|
|
DstActualPath string `json:"dst_path"`
|
|
SrcStorage driver.Driver `json:"-"`
|
|
DstStorage driver.Driver `json:"-"`
|
|
SrcStorageMp string `json:"src_storage_mp"`
|
|
DstStorageMp string `json:"dst_storage_mp"`
|
|
}
|
|
|
|
func (t *TaskData) GetStatus() string {
|
|
return t.Status
|
|
}
|