Ejemplo n.º 1
0
        public virtual async Task ConfigureAsync(ClusterConfig clusterConfig, PoolConfig poolConfig, CancellationToken ct)
        {
            Contract.RequiresNonNull(poolConfig, nameof(poolConfig));

            logger = LogUtil.GetPoolScopedLogger(typeof(ErgoPayoutHandler), poolConfig);

            this.poolConfig    = poolConfig;
            this.clusterConfig = clusterConfig;

            extraPoolPaymentProcessingConfig = poolConfig.PaymentProcessing.Extra.SafeExtensionDataAs <ErgoPaymentProcessingConfigExtra>();

            ergoClient = ErgoClientFactory.CreateClient(poolConfig, clusterConfig, null);

            // detect chain
            var info = await ergoClient.GetNodeInfoAsync(ct);

            network = ErgoConstants.RegexChain.Match(info.Name).Groups[1].Value.ToLower();
        }
Ejemplo n.º 2
0
        public static ErgoClient CreateClient(PoolConfig poolConfig, ClusterConfig clusterConfig, ILogger logger)
        {
            var epConfig = poolConfig.Daemons.First();
            var extra    = epConfig.Extra.SafeExtensionDataAs <ErgoDaemonEndpointConfigExtra>();

            if (logger != null && clusterConfig.PaymentProcessing?.Enabled == true &&
                poolConfig.PaymentProcessing?.Enabled == true && string.IsNullOrEmpty(extra?.ApiKey))
            {
                logger.ThrowLogPoolStartupException("Ergo daemon apiKey not provided");
            }

            var baseUrl = new UriBuilder(epConfig.Ssl || epConfig.Http2 ? Uri.UriSchemeHttps : Uri.UriSchemeHttp,
                                         epConfig.Host, epConfig.Port, epConfig.HttpPath);

            var result = new ErgoClient(baseUrl.ToString(), new HttpClient(new HttpClientHandler
            {
                AutomaticDecompression = DecompressionMethods.Deflate | DecompressionMethods.GZip,

                ServerCertificateCustomValidationCallback = (message, cert, chain, errors) => true,
            }));

            if (!string.IsNullOrEmpty(extra.ApiKey))
            {
                result.RequestHeaders["api_key"] = extra.ApiKey;
            }

            if (!string.IsNullOrEmpty(epConfig.User))
            {
                var auth   = $"{epConfig.User}:{epConfig.Password}";
                var base64 = Convert.ToBase64String(Encoding.UTF8.GetBytes(auth));

                result.RequestHeaders["Authorization"] = new AuthenticationHeaderValue("Basic", base64).ToString();
            }
#if DEBUG
            result.ReadResponseAsString = true;
#endif
            return(result);
        }