wabbajack/Wabbajack.CLI/Verbs/DownloadUrl.cs

47 lines
1.5 KiB
C#
Raw Normal View History

using System;
using System.Reactive.Linq;
using System.Threading.Tasks;
using Alphaleonis.Win32.Filesystem;
using CommandLine;
using Wabbajack.Common;
using Wabbajack.Lib;
using Wabbajack.Lib.Downloaders;
namespace Wabbajack.CLI.Verbs
{
[Verb("download-url", HelpText = "Infer a download state from a URL and download it")]
public class DownloadUrl : AVerb
{
[Option('u', "url", Required = true, HelpText = "Url to download")]
2020-05-10 02:35:18 +00:00
public Uri? Url { get; set; }
[Option('o', "output", Required = true, HelpText = "Output file name")]
2020-04-09 22:36:07 +00:00
public string Output { get; set; } = "";
2020-04-06 17:14:46 +00:00
protected override async Task<ExitCode> Run()
{
2020-05-10 02:35:18 +00:00
var state = await DownloadDispatcher.Infer(Url!);
if (state == null)
2020-04-06 13:09:17 +00:00
return CLIUtils.Exit($"Could not find download source for URL {Url}", ExitCode.Error);
2020-02-24 17:05:42 +00:00
2020-04-10 19:06:32 +00:00
await DownloadDispatcher.PrepareAll(new []{state});
using var queue = new WorkQueue();
queue.Status
.Where(s => s.ProgressPercent != Percent.Zero)
.Debounce(TimeSpan.FromSeconds(1))
.Subscribe(s => Console.WriteLine($"Downloading {s.ProgressPercent}"));
await new[] {state}
.PMap(queue, async s =>
{
2020-04-10 01:29:53 +00:00
await s.Download(new Archive(state: null!) {Name = Path.GetFileName(Output)}, (AbsolutePath)Output);
});
File.WriteAllLines(Output + ".meta", state.GetMetaIni());
return 0;
}
}
}