mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
75 lines
2.5 KiB
C#
75 lines
2.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Rating;
|
|
using ExchangeSharp;
|
|
|
|
namespace BTCPayServer.Services.Rates
|
|
{
|
|
public class ExchangeSharpRateProvider : IRateProvider
|
|
{
|
|
readonly ExchangeAPI _ExchangeAPI;
|
|
readonly string _ExchangeName;
|
|
public ExchangeSharpRateProvider(string exchangeName, ExchangeAPI exchangeAPI, bool reverseCurrencyPair = false)
|
|
{
|
|
if (exchangeAPI == null)
|
|
throw new ArgumentNullException(nameof(exchangeAPI));
|
|
exchangeAPI.RequestTimeout = TimeSpan.FromSeconds(5.0);
|
|
_ExchangeAPI = exchangeAPI;
|
|
_ExchangeName = exchangeName;
|
|
ReverseCurrencyPair = reverseCurrencyPair;
|
|
}
|
|
|
|
public bool ReverseCurrencyPair
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public async Task<ExchangeRates> GetRatesAsync()
|
|
{
|
|
await new SynchronizationContextRemover();
|
|
var rates = await _ExchangeAPI.GetTickersAsync();
|
|
lock (notFoundSymbols)
|
|
{
|
|
var exchangeRates =
|
|
rates.Select(t => CreateExchangeRate(t))
|
|
.Where(t => t != null)
|
|
.ToArray();
|
|
return new ExchangeRates(exchangeRates);
|
|
}
|
|
}
|
|
|
|
// ExchangeSymbolToGlobalSymbol throws exception which would kill perf
|
|
HashSet<string> notFoundSymbols = new HashSet<string>();
|
|
private ExchangeRate CreateExchangeRate(KeyValuePair<string, ExchangeTicker> ticker)
|
|
{
|
|
if (notFoundSymbols.Contains(ticker.Key))
|
|
return null;
|
|
try
|
|
{
|
|
var tickerName = _ExchangeAPI.ExchangeSymbolToGlobalSymbol(ticker.Key);
|
|
if (!CurrencyPair.TryParse(tickerName, out var pair))
|
|
{
|
|
notFoundSymbols.Add(ticker.Key);
|
|
return null;
|
|
}
|
|
if(ReverseCurrencyPair)
|
|
pair = new CurrencyPair(pair.Right, pair.Left);
|
|
var rate = new ExchangeRate();
|
|
rate.CurrencyPair = pair;
|
|
rate.Exchange = _ExchangeName;
|
|
rate.Value = ticker.Value.Bid;
|
|
return rate;
|
|
}
|
|
catch (ArgumentException)
|
|
{
|
|
notFoundSymbols.Add(ticker.Key);
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
}
|