mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
* GreenField: Wallet API * more work * wip * rough fiunish of transaction sending api * Allow to create tx without broadcasting and small fixes * Refactor Wallet Receive feature ad add greenfield api for address reserve for wallet * add wallet api client * add docs * fix json converter tags * fixes and add wallet tests * fix tests * fix rebase * fixes * just pass the tests already * ugggh * small cleanup * revert int support in numeric string converter and make block id as native number in json * fix LN endpoint * try fix flaky test * Revert "try fix flaky test" This reverts commit 2e0d256325b892f7741325dcbab01196f74d182a. * try fix other flaky test * return proepr error if fee rate could not be fetched * try fix test again * reduce fee related logic for wallet api * try reduce code changes for pr scope * change auth logic for initial release of wallet api
73 lines
2.9 KiB
C#
73 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using BTCPayServer.Client.Models;
|
|
using BTCPayServer.Services.Labels;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using Newtonsoft.Json.Serialization;
|
|
|
|
namespace BTCPayServer.Data
|
|
{
|
|
public class WalletTransactionInfo
|
|
{
|
|
public string Comment { get; set; } = string.Empty;
|
|
[JsonIgnore]
|
|
public Dictionary<string, LabelData> Labels { get; set; } = new Dictionary<string, LabelData>();
|
|
}
|
|
public static class WalletTransactionDataExtensions
|
|
{
|
|
public static WalletTransactionInfo GetBlobInfo(this WalletTransactionData walletTransactionData)
|
|
{
|
|
WalletTransactionInfo blobInfo;
|
|
if (walletTransactionData.Blob == null || walletTransactionData.Blob.Length == 0)
|
|
blobInfo = new WalletTransactionInfo();
|
|
else
|
|
blobInfo = JsonConvert.DeserializeObject<WalletTransactionInfo>(ZipUtils.Unzip(walletTransactionData.Blob));
|
|
if (!string.IsNullOrEmpty(walletTransactionData.Labels))
|
|
{
|
|
if (walletTransactionData.Labels.StartsWith('['))
|
|
{
|
|
foreach (var jtoken in JArray.Parse(walletTransactionData.Labels))
|
|
{
|
|
var l = jtoken.Type == JTokenType.String ? Label.Parse(jtoken.Value<string>())
|
|
: Label.Parse(jtoken.ToString());
|
|
blobInfo.Labels.TryAdd(l.Text, l);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Legacy path
|
|
foreach (var token in walletTransactionData.Labels.Split(',',
|
|
StringSplitOptions.RemoveEmptyEntries))
|
|
{
|
|
var l = Label.Parse(token);
|
|
blobInfo.Labels.TryAdd(l.Text, l);
|
|
}
|
|
}
|
|
}
|
|
return blobInfo;
|
|
}
|
|
static JsonSerializerSettings LabelSerializerSettings = new JsonSerializerSettings()
|
|
{
|
|
ContractResolver = new CamelCasePropertyNamesContractResolver(),
|
|
Formatting = Formatting.None
|
|
};
|
|
public static void SetBlobInfo(this WalletTransactionData walletTransactionData, WalletTransactionInfo blobInfo)
|
|
{
|
|
if (blobInfo == null)
|
|
{
|
|
walletTransactionData.Labels = string.Empty;
|
|
walletTransactionData.Blob = Array.Empty<byte>();
|
|
return;
|
|
}
|
|
walletTransactionData.Labels = new JArray(
|
|
blobInfo.Labels.Select(l => JsonConvert.SerializeObject(l.Value, LabelSerializerSettings))
|
|
.Select(l => JObject.Parse(l))
|
|
.OfType<JToken>()
|
|
.ToArray()).ToString();
|
|
walletTransactionData.Blob = ZipUtils.Zip(JsonConvert.SerializeObject(blobInfo));
|
|
}
|
|
}
|
|
}
|