This commit is contained in:
Kukks
2023-11-01 15:25:29 +01:00
parent 7996aaede0
commit cfa7efd11b
9 changed files with 657 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
using System;
using System.Linq;
using System.Net.Http;
using BTCPayServer.Plugins.FixedFloat;
using NBitcoin;
namespace BTCPayServer.Lightning.Breez;
public class BreezLightningConnectionStringHandler : ILightningConnectionStringHandler
{
private readonly BreezService _breezService;
public BreezLightningConnectionStringHandler(BreezService breezService)
{
_breezService = breezService;
}
public ILightningClient Create(string connectionString, Network network, out string error)
{
var kv = LightningConnectionStringHelper.ExtractValues(connectionString, out var type);
if (type != "breez")
{
error = null;
return null;
}
if (!kv.TryGetValue("store", out var storeId))
{
error = $"The key 'store' is mandatory for breez connection strings";
return null;
}
error = null;
return _breezService.GetClient(storeId);
}
}