mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
87df34e064
Validate transaction before allowing any broadcast and show errors nicely.
65 lines
1.8 KiB
C#
65 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http;
|
|
using NBitcoin;
|
|
|
|
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class WalletPSBTViewModel
|
|
{
|
|
public string Decoded { get; set; }
|
|
string _FileName;
|
|
public string FileName
|
|
{
|
|
get
|
|
{
|
|
return string.IsNullOrEmpty(_FileName) ? "psbt-export.psbt" : _FileName;
|
|
}
|
|
set
|
|
{
|
|
_FileName = value;
|
|
}
|
|
}
|
|
public string PSBT { get; set; }
|
|
public List<string> Errors { get; set; } = new List<string>();
|
|
|
|
[Display(Name = "Upload PSBT from file...")]
|
|
public IFormFile UploadedPSBTFile { get; set; }
|
|
|
|
public async Task<PSBT> GetPSBT(Network network)
|
|
{
|
|
if (UploadedPSBTFile != null)
|
|
{
|
|
if (UploadedPSBTFile.Length > 500 * 1024)
|
|
return null;
|
|
byte[] bytes = new byte[UploadedPSBTFile.Length];
|
|
using (var stream = UploadedPSBTFile.OpenReadStream())
|
|
{
|
|
await stream.ReadAsync(bytes, 0, (int)UploadedPSBTFile.Length);
|
|
}
|
|
try
|
|
{
|
|
return NBitcoin.PSBT.Load(bytes, network);
|
|
}
|
|
catch
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
if (!string.IsNullOrEmpty(PSBT))
|
|
{
|
|
try
|
|
{
|
|
return NBitcoin.PSBT.Parse(PSBT, network);
|
|
}
|
|
catch
|
|
{ }
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
}
|