2019-10-12 21:37:16 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Security.Policy;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Downloaders
|
|
|
|
|
{
|
|
|
|
|
public static class DownloadDispatcher
|
|
|
|
|
{
|
2019-10-12 22:31:07 +00:00
|
|
|
|
private static readonly List<IDownloader> Downloaders = new List<IDownloader>()
|
2019-10-12 21:37:16 +00:00
|
|
|
|
{
|
|
|
|
|
new MegaDownloader(),
|
|
|
|
|
new DropboxDownloader(),
|
|
|
|
|
new GoogleDriveDownloader(),
|
2019-10-12 22:31:07 +00:00
|
|
|
|
new ModDBDownloader(),
|
2019-10-12 22:15:20 +00:00
|
|
|
|
new NexusDownloader(),
|
2019-10-12 22:31:07 +00:00
|
|
|
|
new ManualDownloader(),
|
|
|
|
|
new HTTPDownloader()
|
2019-10-12 21:37:16 +00:00
|
|
|
|
};
|
|
|
|
|
|
2019-10-12 22:31:07 +00:00
|
|
|
|
private static readonly Dictionary<Type, IDownloader> IndexedDownloaders;
|
2019-10-12 21:37:16 +00:00
|
|
|
|
|
|
|
|
|
static DownloadDispatcher()
|
|
|
|
|
{
|
2019-10-12 22:31:07 +00:00
|
|
|
|
IndexedDownloaders = Downloaders.ToDictionary(d => d.GetType());
|
2019-10-12 21:37:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static T GetInstance<T>()
|
|
|
|
|
{
|
2019-10-12 22:31:07 +00:00
|
|
|
|
return (T)IndexedDownloaders[typeof(T)];
|
2019-10-12 21:37:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static AbstractDownloadState ResolveArchive(dynamic ini)
|
|
|
|
|
{
|
2019-10-12 22:31:07 +00:00
|
|
|
|
return Downloaders.Select(d => d.GetDownloaderState(ini)).FirstOrDefault(result => result != null);
|
2019-10-12 21:37:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|