mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms.VisualStyles;
|
|
using Alphaleonis.Win32.Filesystem;
|
|
using Wabbajack.Lib.Validation;
|
|
|
|
namespace Wabbajack.Lib.Downloaders
|
|
{
|
|
/// <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);
|
|
|
|
public void Download(string destination)
|
|
{
|
|
Download(new Archive {Name = Path.GetFileName(destination)}, destination);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns true if this link is still valid
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public abstract bool Verify();
|
|
|
|
public abstract IDownloader GetDownloader();
|
|
|
|
public abstract string GetReportEntry(Archive a);
|
|
}
|
|
}
|