mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
59 lines
1.7 KiB
C#
59 lines
1.7 KiB
C#
using System;
|
|
using CG.Web.MegaApiClient;
|
|
using Wabbajack.Common;
|
|
|
|
namespace Wabbajack.Lib.Downloaders
|
|
{
|
|
public class MegaDownloader : IDownloader, IUrlDownloader
|
|
{
|
|
|
|
public AbstractDownloadState GetDownloaderState(dynamic archiveINI)
|
|
{
|
|
var url = archiveINI?.General?.directURL;
|
|
return GetDownloaderState(url);
|
|
}
|
|
|
|
public AbstractDownloadState GetDownloaderState(string url)
|
|
{
|
|
if (url != null && url.StartsWith(Consts.MegaPrefix))
|
|
return new State { Url = url };
|
|
return null;
|
|
}
|
|
|
|
public void Prepare()
|
|
{
|
|
}
|
|
|
|
public class State : HTTPDownloader.State
|
|
{
|
|
public override void Download(Archive a, string destination)
|
|
{
|
|
var client = new MegaApiClient();
|
|
Utils.Status("Logging into MEGA (as anonymous)");
|
|
client.LoginAnonymous();
|
|
var fileLink = new Uri(Url);
|
|
var node = client.GetNodeFromLink(fileLink);
|
|
Utils.Status($"Downloading MEGA file: {a.Name}");
|
|
client.DownloadFile(fileLink, destination);
|
|
}
|
|
|
|
public override bool Verify()
|
|
{
|
|
var client = new MegaApiClient();
|
|
Utils.Status("Logging into MEGA (as anonymous)");
|
|
client.LoginAnonymous();
|
|
var fileLink = new Uri(Url);
|
|
try
|
|
{
|
|
var node = client.GetNodeFromLink(fileLink);
|
|
return true;
|
|
}
|
|
catch (Exception)
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|