View seed option if available (#1518)

This commit is contained in:
Andrew Camilleri
2020-04-28 17:55:53 +02:00
committed by GitHub
parent ff99ab1239
commit e75b4ec6bf
3 changed files with 141 additions and 76 deletions

View File

@@ -26,6 +26,7 @@ using Newtonsoft.Json.Linq;
using BTCPayServer.Logging;
using Microsoft.Extensions.Logging;
using BTCPayServer.Client;
using NBXplorer;
namespace BTCPayServer.Controllers
{
@@ -53,6 +54,9 @@ namespace BTCPayServer.Controllers
{
vm.DerivationScheme = derivation.AccountDerivation.ToString();
vm.Config = derivation.ToJson();
vm.NBXSeedAvailable = (await CanUseHotWallet() ).HotWallet && !string.IsNullOrEmpty(await _ExplorerProvider.GetExplorerClient(network)
.GetMetadataAsync<string>(derivation.AccountDerivation,
WellknownMetadataKeys.Mnemonic));
}
vm.Enabled = !store.GetStoreBlob().IsExcluded(new PaymentMethodId(vm.CryptoCode, PaymentTypes.BTCLike));
var hotWallet = await CanUseHotWallet();
@@ -60,6 +64,50 @@ namespace BTCPayServer.Controllers
vm.CanUseRPCImport = hotWallet.RPCImport;
return View(vm);
}
[HttpPost]
[Route("{storeId}/derivations/{cryptoCode}/seed")]
[ApiExplorerSettings(IgnoreApi = true)]
public async Task<IActionResult> ViewSeed(string storeId, string cryptoCode)
{
var store = HttpContext.GetStoreData();
if (store == null)
return NotFound();
var network = cryptoCode == null ? null : _ExplorerProvider.GetNetwork(cryptoCode);
if (network == null)
{
return NotFound();
}
var derivation = GetExistingDerivationStrategy(cryptoCode, store);
if (derivation == null)
{
return NotFound();
}
var canExtract = (await CanUseHotWallet()).HotWallet;
var seed = await _ExplorerProvider.GetExplorerClient(network)
.GetMetadataAsync<string>(derivation.AccountDerivation,
WellknownMetadataKeys.Mnemonic);
if (string.IsNullOrEmpty(seed))
{
TempData.SetStatusMessageModel(new StatusMessageModel()
{
Severity = StatusMessageModel.StatusSeverity.Error,
Message = "The seed was not found"
});
}
else
{
TempData.SetStatusMessageModel(new StatusMessageModel()
{
Severity = StatusMessageModel.StatusSeverity.Success,
Html = $"Please store your seed securely! <br/><code class=\"alert-link\">{seed}</code>"
});
}
return RedirectToAction(nameof(UpdateStore), new { storeId });
}
class GetXPubs
{
@@ -163,6 +211,7 @@ namespace BTCPayServer.Controllers
return NotFound();
}
vm.NBXSeedAvailable = false;
vm.Network = network;
vm.RootKeyPath = network.GetRootKeyPath();
DerivationSchemeSettings strategy = null;