Files
BTCPayServerPlugins/Plugins/BTCPayServer.Plugins.Breez/BreezLightningConnectionStringHandler.cs
Kukks 74c6931e8c wip
2023-12-06 09:24:57 +01:00

33 lines
922 B
C#

using BTCPayServer.Lightning;
using NBitcoin;
namespace BTCPayServer.Plugins.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);
}
}