using System; using Microsoft.Extensions.Logging; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using BTCPayServer.Configuration; using BTCPayServer.Logging; using NBXplorer; using BTCPayServer.HostedServices; namespace BTCPayServer { public class ExplorerClientProvider { BTCPayNetworkProvider _NetworkProviders; BTCPayServerOptions _Options; public BTCPayNetworkProvider NetworkProviders => _NetworkProviders; NBXplorerDashboard _Dashboard; public ExplorerClientProvider(BTCPayNetworkProvider networkProviders, BTCPayServerOptions options, NBXplorerDashboard dashboard) { _Dashboard = dashboard; _NetworkProviders = networkProviders; _Options = options; foreach (var setting in options.NBXplorerConnectionSettings) { var cookieFile = setting.CookieFile; if (cookieFile.Trim() == "0" || string.IsNullOrEmpty(cookieFile.Trim())) cookieFile = null; Logs.Configuration.LogInformation($"{setting.CryptoCode}: Explorer url is {(setting.ExplorerUri.AbsoluteUri ?? "not set")}"); Logs.Configuration.LogInformation($"{setting.CryptoCode}: Cookie file is {(setting.CookieFile ?? "not set")}"); if (setting.ExplorerUri != null) { _Clients.TryAdd(setting.CryptoCode, CreateExplorerClient(_NetworkProviders.GetNetwork(setting.CryptoCode), setting.ExplorerUri, setting.CookieFile)); } } } private static ExplorerClient CreateExplorerClient(BTCPayNetwork n, Uri uri, string cookieFile) { var explorer = new ExplorerClient(n.NBXplorerNetwork, uri); if (cookieFile == null) { Logs.Configuration.LogWarning($"{n.CryptoCode}: Not using cookie authentication"); explorer.SetNoAuth(); } if(!explorer.SetCookieAuth(cookieFile)) { Logs.Configuration.LogWarning($"{n.CryptoCode}: Using cookie auth against NBXplorer, but {cookieFile} is not found"); } return explorer; } Dictionary _Clients = new Dictionary(); public ExplorerClient GetExplorerClient(string cryptoCode) { var network = _NetworkProviders.GetNetwork(cryptoCode); if (network == null) return null; _Clients.TryGetValue(network.CryptoCode, out ExplorerClient client); return client; } public ExplorerClient GetExplorerClient(BTCPayNetwork network) { if (network == null) throw new ArgumentNullException(nameof(network)); return GetExplorerClient(network.CryptoCode); } public bool IsAvailable(BTCPayNetwork network) { return IsAvailable(network.CryptoCode); } public bool IsAvailable(string cryptoCode) { return _Clients.ContainsKey(cryptoCode) && _Dashboard.IsFullySynched(cryptoCode, out var unused); } public BTCPayNetwork GetNetwork(string cryptoCode) { var network = _NetworkProviders.GetNetwork(cryptoCode); if (network == null) return null; if (_Clients.ContainsKey(network.CryptoCode)) return network; return null; } public IEnumerable<(BTCPayNetwork, ExplorerClient)> GetAll() { foreach (var net in _NetworkProviders.GetAll()) { if (_Clients.TryGetValue(net.CryptoCode, out ExplorerClient explorer)) { yield return (net, explorer); } } } } }