2019-10-12 22:15:32 +00:00
|
|
|
|
using System;
|
2019-11-06 23:52:48 +00:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.IO;
|
2019-10-12 22:15:32 +00:00
|
|
|
|
using System.Linq;
|
2019-11-06 23:52:48 +00:00
|
|
|
|
using System.Reactive.Linq;
|
|
|
|
|
using System.Reactive.Subjects;
|
2019-12-06 05:29:17 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2020-03-22 21:55:31 +00:00
|
|
|
|
using MessagePack;
|
2019-10-12 22:15:32 +00:00
|
|
|
|
using Wabbajack.Common;
|
2020-01-07 13:50:11 +00:00
|
|
|
|
using Wabbajack.Common.IO;
|
2019-10-16 03:10:34 +00:00
|
|
|
|
using Wabbajack.Lib.Validation;
|
2019-11-06 23:52:48 +00:00
|
|
|
|
using File = System.IO.File;
|
2019-10-12 22:15:32 +00:00
|
|
|
|
|
2019-10-16 03:10:34 +00:00
|
|
|
|
namespace Wabbajack.Lib.Downloaders
|
2019-10-12 22:15:32 +00:00
|
|
|
|
{
|
2019-11-07 00:29:53 +00:00
|
|
|
|
public class ManualDownloader : IDownloader
|
2019-10-12 22:15:32 +00:00
|
|
|
|
{
|
2019-11-06 23:52:48 +00:00
|
|
|
|
private FileSystemWatcher _watcher;
|
|
|
|
|
private Subject<FileEvent> _fileEvents = new Subject<FileEvent>();
|
|
|
|
|
private KnownFolder _downloadfolder;
|
2019-12-22 00:26:51 +00:00
|
|
|
|
public readonly AsyncLock Lock = new AsyncLock();
|
2019-11-06 23:52:48 +00:00
|
|
|
|
|
|
|
|
|
class FileEvent
|
|
|
|
|
{
|
|
|
|
|
public string FullPath { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public long Size { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ManualDownloader()
|
|
|
|
|
{
|
2019-11-18 17:53:11 +00:00
|
|
|
|
_downloadfolder = new KnownFolder(KnownFolderType.Downloads);
|
2019-11-06 23:52:48 +00:00
|
|
|
|
_watcher = new FileSystemWatcher(_downloadfolder.Path);
|
|
|
|
|
_watcher.Created += _watcher_Created;
|
|
|
|
|
_watcher.Changed += _watcher_Changed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void _watcher_Changed(object sender, FileSystemEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
PublishEvent(e);
|
|
|
|
|
}
|
|
|
|
|
private void _watcher_Created(object sender, FileSystemEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
PublishEvent(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void PublishEvent(FileSystemEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_fileEvents.OnNext(new FileEvent
|
|
|
|
|
{
|
|
|
|
|
Size = new FileInfo(e.FullPath).Length,
|
|
|
|
|
Name = e.Name,
|
|
|
|
|
FullPath = e.FullPath
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
catch (IOException)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-07 03:50:50 +00:00
|
|
|
|
public async Task<AbstractDownloadState> GetDownloaderState(dynamic archiveINI)
|
2019-10-12 22:15:32 +00:00
|
|
|
|
{
|
2019-11-21 15:51:57 +00:00
|
|
|
|
var url = archiveINI?.General?.manualURL;
|
2020-02-02 12:15:29 +00:00
|
|
|
|
return url != null ? new State { Url = url} : null;
|
2019-10-12 22:15:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-07 02:45:13 +00:00
|
|
|
|
public async Task Prepare()
|
2019-10-12 22:15:32 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
2020-03-22 21:55:31 +00:00
|
|
|
|
|
|
|
|
|
[MessagePackObject]
|
2019-10-12 22:15:32 +00:00
|
|
|
|
public class State : AbstractDownloadState
|
|
|
|
|
{
|
2020-03-22 21:55:31 +00:00
|
|
|
|
[Key(0)]
|
2020-02-02 12:15:29 +00:00
|
|
|
|
public string Url { get; set; }
|
2020-03-22 21:55:31 +00:00
|
|
|
|
|
|
|
|
|
[IgnoreMember]
|
2020-02-02 12:15:29 +00:00
|
|
|
|
public override object[] PrimaryKey { get => new object[] {Url}; }
|
2020-01-01 16:19:06 +00:00
|
|
|
|
|
2019-10-12 22:15:32 +00:00
|
|
|
|
public override bool IsWhitelisted(ServerWhitelist whitelist)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-25 22:30:43 +00:00
|
|
|
|
public override async Task<bool> Download(Archive a, AbsolutePath destination)
|
2019-10-12 22:15:32 +00:00
|
|
|
|
{
|
2020-02-11 00:30:38 +00:00
|
|
|
|
var (uri, client) = await Utils.Log(await ManuallyDownloadFile.Create(this)).Task;
|
|
|
|
|
var state = new HTTPDownloader.State {Url = uri.ToString(), Client = client};
|
|
|
|
|
return await state.Download(a, destination);
|
2019-10-12 22:15:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-13 22:55:55 +00:00
|
|
|
|
public override async Task<bool> Verify(Archive a)
|
2019-10-12 22:15:32 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override IDownloader GetDownloader()
|
|
|
|
|
{
|
|
|
|
|
return DownloadDispatcher.GetInstance<ManualDownloader>();
|
|
|
|
|
}
|
2019-10-12 22:54:25 +00:00
|
|
|
|
|
2020-02-02 12:23:07 +00:00
|
|
|
|
public override string GetManifestURL(Archive a)
|
2020-02-02 12:15:29 +00:00
|
|
|
|
{
|
2020-02-02 12:23:07 +00:00
|
|
|
|
return Url;
|
2020-02-02 12:15:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-11 04:15:53 +00:00
|
|
|
|
public override string[] GetMetaIni()
|
|
|
|
|
{
|
|
|
|
|
return new [] {
|
|
|
|
|
"[General]",
|
2020-02-02 12:15:29 +00:00
|
|
|
|
$"manualURL={Url}"
|
2020-01-11 04:15:53 +00:00
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
}
|
2019-10-12 22:15:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|