2022-01-18 03:56:29 +00:00
|
|
|
using System.CommandLine;
|
|
|
|
using System.CommandLine.Invocation;
|
2022-09-29 05:10:49 +00:00
|
|
|
using System.CommandLine.NamingConventionBinder;
|
2022-01-18 03:56:29 +00:00
|
|
|
using System.Text.Json;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using Wabbajack.Common;
|
|
|
|
using Wabbajack.DTOs.JsonConverters;
|
|
|
|
using Wabbajack.Networking.NexusApi;
|
|
|
|
using Wabbajack.Networking.NexusApi.DTOs;
|
|
|
|
using Wabbajack.Paths;
|
|
|
|
using Wabbajack.Paths.IO;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.CLI.Verbs;
|
|
|
|
|
|
|
|
public class UploadToNexus : IVerb
|
|
|
|
{
|
|
|
|
private readonly ILogger<UploadToNexus> _logger;
|
|
|
|
private readonly NexusApi _client;
|
|
|
|
private readonly DTOSerializer _dtos;
|
|
|
|
|
|
|
|
public UploadToNexus(ILogger<UploadToNexus> logger, NexusApi wjClient, DTOSerializer dtos)
|
|
|
|
{
|
|
|
|
_logger = logger;
|
|
|
|
_client = wjClient;
|
|
|
|
_dtos = dtos;
|
|
|
|
}
|
|
|
|
public Command MakeCommand()
|
|
|
|
{
|
|
|
|
var command = new Command("upload-to-nexus");
|
|
|
|
command.Add(new Option<AbsolutePath>(new[] {"-d", "-definition"}, "Definition JSON file"));
|
|
|
|
command.Description = "Uploads a file to the Nexus defined by the given .json definition file";
|
|
|
|
command.Handler = CommandHandler.Create(Run);
|
|
|
|
return command;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task<int> Run(AbsolutePath definition)
|
|
|
|
{
|
|
|
|
var d = await definition.FromJson<UploadDefinition>(_dtos);
|
|
|
|
|
|
|
|
await _client.UploadFile(d);
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|