using ACMESharp.Authorizations;
using PKISharp.WACS.DomainObjects;
using PKISharp.WACS.Plugins.Base.Factories;
using PKISharp.WACS.Services;
using PKISharp.WACS.Services.Serialization;
using System.Threading.Tasks;
namespace PKISharp.WACS.Plugins.ValidationPlugins.Dns
{
///
/// Azure DNS validation
///
internal class DreamhostOptionsFactory : ValidationPluginOptionsFactory
{
private readonly IArgumentsService _arguments;
public DreamhostOptionsFactory(IArgumentsService arguments) : base(Dns01ChallengeValidationDetails.Dns01ChallengeType) => _arguments = arguments;
public override async Task Aquire(Target target, IInputService input, RunLevel runLevel)
{
var args = _arguments.GetArguments();
return new DreamhostOptions()
{
ApiKey = new ProtectedString(await _arguments.TryGetArgument(args.ApiKey, input, "ApiKey", true)),
};
}
public override Task Default(Target target)
{
var az = _arguments.GetArguments();
return Task.FromResult(new DreamhostOptions()
{
ApiKey = new ProtectedString(_arguments.TryGetRequiredArgument(nameof(az.ApiKey), az.ApiKey)),
});
}
public override bool CanValidate(Target target) => true;
}
}