Feat(remotearia2): 转存

This commit is contained in:
Cian John 2021-03-20 17:59:55 +08:00
parent ac20a4ca3a
commit 8c97021e8f
3 changed files with 18 additions and 1 deletions

View file

@ -31,6 +31,7 @@ func Init(path string) {
} else {
if conf.SlaveConfig.Aria2 {
model.Init()
task.Init()
aria2.Init(false)
}
}

View file

@ -152,7 +152,15 @@ func SlaveInit(isReload bool) {
Instance = client
// monitor
if !isReload {
// 从数据库中读取未完成任务,创建监控
unfinished := model.GetDownloadsByStatus(Ready, Paused, Downloading)
for i := 0; i < len(unfinished); i++ {
// 创建任务监控
NewMonitor(&unfinished[i])
}
}
}
// MasterInit 主机初始化

View file

@ -3,6 +3,7 @@ package task
import (
"context"
"encoding/json"
"github.com/cloudreve/Cloudreve/v3/pkg/conf"
"os"
"path"
"path/filepath"
@ -84,6 +85,13 @@ func (job *TransferTask) GetError() *JobError {
// Do 开始执行任务
func (job *TransferTask) Do() {
defer job.Recycle()
if model.IsTrueVal(model.GetSettingByName("aria2_remote_enabled")) && conf.SystemConfig.Mode != "slave" {
return
}
if conf.SlaveConfig.SlaveId == 0 || model.GetIntSetting("aria2_remote_id", 0) != int(conf.SlaveConfig.SlaveId) {
return
}
// 创建文件系统
fs, err := filesystem.NewFileSystem(job.User)