mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Wabbajack.Common;
|
|
using Wabbajack.Lib.Validation;
|
|
|
|
namespace Wabbajack.Lib.Downloaders
|
|
{
|
|
class ManualDownloader : IDownloader
|
|
{
|
|
public AbstractDownloadState GetDownloaderState(dynamic archive_ini)
|
|
{
|
|
var url = archive_ini?.General?.manualURL;
|
|
return url != null ? new State { Url = url} : null;
|
|
}
|
|
|
|
public void Prepare()
|
|
{
|
|
}
|
|
|
|
public class State : AbstractDownloadState
|
|
{
|
|
public string Url { get; set; }
|
|
public override bool IsWhitelisted(ServerWhitelist whitelist)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override void Download(Archive a, string destination)
|
|
{
|
|
Utils.Log($"You must manually visit {Url} and download {a.Name} file by hand.");
|
|
}
|
|
|
|
public override bool Verify()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override IDownloader GetDownloader()
|
|
{
|
|
return DownloadDispatcher.GetInstance<ManualDownloader>();
|
|
}
|
|
|
|
public override string GetReportEntry(Archive a)
|
|
{
|
|
return $"* Manual Download - [{a.Name} - {Url}]({Url})";
|
|
}
|
|
}
|
|
}
|
|
}
|