using System.Linq; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using BTCPayServer.Rating; using System.Threading; using System.Net.Http; using Newtonsoft.Json.Linq; namespace BTCPayServer.Services.Rates { public class BitpayRateProvider : IRateProvider { private readonly HttpClient _httpClient; public BitpayRateProvider(HttpClient httpClient) { _httpClient = httpClient ?? new HttpClient(); } public async Task GetRatesAsync(CancellationToken cancellationToken) { var response = await _httpClient.GetAsync("https://bitpay.com/rates", cancellationToken); var jarray = (JArray)(await response.Content.ReadAsAsync(cancellationToken))["data"]; return jarray .Children() .Select(jobj => new PairRate(new CurrencyPair("BTC", jobj["code"].Value()), new BidAsk(jobj["rate"].Value()))) .Where(o => o.CurrencyPair.Right != "BTC") .ToArray(); } } }