2019-10-12 18:03:45 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
2019-10-29 21:30:27 +00:00
|
|
|
|
using System.Windows.Forms.VisualStyles;
|
|
|
|
|
using Alphaleonis.Win32.Filesystem;
|
2019-10-16 03:10:34 +00:00
|
|
|
|
using Wabbajack.Lib.Validation;
|
2019-10-12 18:03:45 +00:00
|
|
|
|
|
2019-10-16 03:10:34 +00:00
|
|
|
|
namespace Wabbajack.Lib.Downloaders
|
2019-10-12 18:03:45 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Base for all abstract downloaders
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract class AbstractDownloadState
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns true if this file is allowed to be downloaded via whitelist
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="whitelist"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public abstract bool IsWhitelisted(ServerWhitelist whitelist);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Downloads this file to the given destination location
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="destination"></param>
|
|
|
|
|
public abstract void Download(Archive a, string destination);
|
|
|
|
|
|
2019-10-29 21:30:27 +00:00
|
|
|
|
public void Download(string destination)
|
|
|
|
|
{
|
|
|
|
|
Download(new Archive {Name = Path.GetFileName(destination)}, destination);
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-12 18:03:45 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns true if this link is still valid
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
public abstract bool Verify();
|
2019-10-12 22:15:20 +00:00
|
|
|
|
|
|
|
|
|
public abstract IDownloader GetDownloader();
|
2019-10-12 22:54:25 +00:00
|
|
|
|
|
|
|
|
|
public abstract string GetReportEntry(Archive a);
|
2019-10-12 18:03:45 +00:00
|
|
|
|
}
|
|
|
|
|
}
|