2023-06-05 00:35:57 +02:00
|
|
|
|
using Logging;
|
2023-06-06 20:54:21 +02:00
|
|
|
|
using Newtonsoft.Json;
|
2023-06-05 00:35:57 +02:00
|
|
|
|
|
|
|
|
|
namespace Tranga.TrangaTasks;
|
|
|
|
|
|
|
|
|
|
public class DownloadChapterTask : TrangaTask
|
|
|
|
|
{
|
|
|
|
|
public string connectorName { get; }
|
|
|
|
|
public Publication publication { get; }
|
|
|
|
|
public string language { get; }
|
|
|
|
|
public Chapter chapter { get; }
|
2023-06-06 20:54:21 +02:00
|
|
|
|
[JsonIgnore]private DownloadNewChaptersTask? parentTask { get; init; }
|
|
|
|
|
|
|
|
|
|
public DownloadChapterTask(Task task, string connectorName, Publication publication, Chapter chapter, string language = "en", DownloadNewChaptersTask? parentTask = null) : base(task, TimeSpan.Zero)
|
2023-06-05 00:35:57 +02:00
|
|
|
|
{
|
|
|
|
|
this.chapter = chapter;
|
|
|
|
|
this.connectorName = connectorName;
|
|
|
|
|
this.publication = publication;
|
|
|
|
|
this.language = language;
|
2023-06-06 20:54:21 +02:00
|
|
|
|
this.parentTask = parentTask;
|
2023-06-05 00:35:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void ExecuteTask(TaskManager taskManager, Logger? logger)
|
|
|
|
|
{
|
|
|
|
|
Publication pub = (Publication)this.publication!;
|
|
|
|
|
Connector connector = taskManager.GetConnector(this.connectorName);
|
|
|
|
|
connector.DownloadChapter(pub, this.chapter, this);
|
|
|
|
|
taskManager.DeleteTask(this);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-06 20:54:21 +02:00
|
|
|
|
public new float IncrementProgress(float amount)
|
|
|
|
|
{
|
|
|
|
|
this.progress += amount;
|
|
|
|
|
parentTask?.IncrementProgress(amount);
|
|
|
|
|
return this.progress;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-05 00:35:57 +02:00
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return $"{base.ToString()}, {connectorName}, {publication.sortName} {publication.internalId}, Vol.{chapter.volumeNumber} Ch.{chapter.chapterNumber}";
|
|
|
|
|
}
|
|
|
|
|
}
|