wip: adapt aria2

This commit is contained in:
Andy Hsu 2023-10-04 22:23:45 +08:00
parent ea9a3432ab
commit 0acb2d6073
4 changed files with 67 additions and 16 deletions

View File

@ -25,6 +25,10 @@ func AddURI(ctx context.Context, args *AddURIArgs) error {
if err != nil { if err != nil {
return errors.Wrapf(err, "failed get tool") return errors.Wrapf(err, "failed get tool")
} }
// check tool is ready
if !tool.IsReady() {
return errors.Wrapf(err, "tool %s is not ready", args.Tool)
}
// check storage // check storage
storage, dstDirActualPath, err := op.GetStorageAndActualPath(args.DstDirPath) storage, dstDirActualPath, err := op.GetStorageAndActualPath(args.DstDirPath)
if err != nil { if err != nil {
@ -57,7 +61,7 @@ func AddURI(ctx context.Context, args *AddURIArgs) error {
Signal: signal, Signal: signal,
}) })
if err != nil { if err != nil {
return errors.Wrapf(err, "failed to add uri %s", args.URI) return errors.Wrapf(err, "[%s] failed to add uri %s", args.Tool, args.URI)
} }
DownTaskManager.Submit(task.WithCancelCtx(&task.Task[string]{ DownTaskManager.Submit(task.WithCancelCtx(&task.Task[string]{
ID: gid, ID: gid,

View File

@ -1,13 +1,17 @@
package offline_download package offline_download_test
import "testing" import (
"testing"
"github.com/alist-org/alist/v3/internal/offline_download"
)
func TestGetFiles(t *testing.T) { func TestGetFiles(t *testing.T) {
files, err := GetFiles("..") files, err := offline_download.GetFiles("..")
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
for _, file := range files { for _, file := range files {
t.Log(file.Name, file.Size, file.Path) t.Log(file.Name, file.Size, file.Path, file.Modified)
} }
} }

View File

@ -3,6 +3,7 @@ package aria2
import ( import (
"context" "context"
"fmt" "fmt"
"strconv"
"time" "time"
"github.com/alist-org/alist/v3/internal/conf" "github.com/alist-org/alist/v3/internal/conf"
@ -46,28 +47,70 @@ func (a *Aria2) Init() (string, error) {
} }
func (a *Aria2) IsReady() bool { func (a *Aria2) IsReady() bool {
//TODO implement me return a.client != nil
panic("implement me")
} }
func (a *Aria2) AddURI(args *offline_download.AddUriArgs) (string, error) { func (a *Aria2) AddURI(args *offline_download.AddUriArgs) (string, error) {
//TODO implement me options := map[string]interface{}{
panic("implement me") "dir": args.TempDir,
}
gid, err := a.client.AddURI([]string{args.Uri}, options)
if err != nil {
return "", err
}
return gid, nil
} }
func (a *Aria2) Remove(tid string) error { func (a *Aria2) Remove(tid string) error {
//TODO implement me _, err := a.client.Remove(tid)
panic("implement me") return err
} }
func (a *Aria2) Status(tid string) (*offline_download.Status, error) { func (a *Aria2) Status(tid string) (*offline_download.Status, error) {
//TODO implement me info, err := a.client.TellStatus(tid)
panic("implement me") if err != nil {
return nil, err
}
total, err := strconv.ParseUint(info.TotalLength, 10, 64)
if err != nil {
total = 0
}
downloaded, err := strconv.ParseUint(info.CompletedLength, 10, 64)
if err != nil {
downloaded = 0
}
s := &offline_download.Status{
Completed: info.Status == "complete",
Err: err,
}
s.Progress = float64(downloaded) / float64(total) * 100
if len(info.FollowedBy) != 0 {
s.NewTID = info.FollowedBy[0]
notify.Signals.Delete(tid)
//notify.Signals.Store(gid, m.c)
}
switch info.Status {
case "complete":
s.Completed = true
case "error":
s.Err = errors.Errorf("failed to download %s, error: %s", tid, info.ErrorMessage)
case "active":
s.Status = "aria2: " + info.Status
if info.Seeder == "true" {
s.Completed = true
}
case "waiting", "paused":
s.Status = "aria2: " + info.Status
case "removed":
s.Err = errors.Errorf("failed to download %s, removed", tid)
default:
return nil, errors.Errorf("[aria2] unknown status %s", info.Status)
}
return s, nil
} }
func (a *Aria2) GetFile(tid string) *offline_download.File { func (a *Aria2) GetFile(tid string) *offline_download.File {
//TODO implement me return nil
panic("implement me")
} }
var _ offline_download.Tool = (*Aria2)(nil) var _ offline_download.Tool = (*Aria2)(nil)

View File

@ -30,7 +30,7 @@ type Tool interface {
IsReady() bool IsReady() bool
// AddURI add an uri to download, return the task id // AddURI add an uri to download, return the task id
AddURI(args *AddUriArgs) (string, error) AddURI(args *AddUriArgs) (string, error)
// Remove the task if an error occurred // Remove the download if task been canceled
Remove(tid string) error Remove(tid string) error
// Status return the status of the download task, if an error occurred, return the error in Status.Err // Status return the status of the download task, if an error occurred, return the error in Status.Err
Status(tid string) (*Status, error) Status(tid string) (*Status, error)