mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
47 lines
1.5 KiB
C#
47 lines
1.5 KiB
C#
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")]
|
|
public Uri? Url { get; set; }
|
|
|
|
[Option('o', "output", Required = true, HelpText = "Output file name")]
|
|
public string Output { get; set; } = "";
|
|
|
|
protected override async Task<ExitCode> Run()
|
|
{
|
|
var state = await DownloadDispatcher.Infer(Url!);
|
|
if (state == null)
|
|
return CLIUtils.Exit($"Could not find download source for URL {Url}", ExitCode.Error);
|
|
|
|
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 =>
|
|
{
|
|
await s.Download(new Archive(state: null!) {Name = Path.GetFileName(Output)}, (AbsolutePath)Output);
|
|
});
|
|
|
|
File.WriteAllLines(Output + ".meta", state.GetMetaIni());
|
|
return 0;
|
|
}
|
|
|
|
}
|
|
}
|