mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
b71fd1653e
closes #728
88 lines
2.9 KiB
C#
88 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Payments.Changelly.Models;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
using SshNet.Security.Cryptography;
|
|
|
|
namespace BTCPayServer.Payments.Changelly
|
|
{
|
|
public class Changelly
|
|
{
|
|
private readonly string _apisecret;
|
|
private readonly HttpClient _httpClient;
|
|
|
|
public Changelly(HttpClient httpClient, string apiKey, string apiSecret, string apiUrl)
|
|
{
|
|
_apisecret = apiSecret;
|
|
_httpClient = httpClient;
|
|
_httpClient.BaseAddress = new Uri(apiUrl);
|
|
_httpClient.DefaultRequestHeaders.Add("api-key", apiKey);
|
|
}
|
|
|
|
|
|
private static string ToHexString(byte[] array)
|
|
{
|
|
var hex = new StringBuilder(array.Length * 2);
|
|
foreach (var b in array)
|
|
{
|
|
hex.AppendFormat(CultureInfo.InvariantCulture, "{0:x2}", b);
|
|
}
|
|
|
|
return hex.ToString();
|
|
}
|
|
|
|
private async Task<ChangellyResponse<T>> PostToApi<T>(string message)
|
|
{
|
|
using var hmac = new HMACSHA512(Encoding.UTF8.GetBytes(_apisecret));
|
|
var hashMessage = hmac.ComputeHash(Encoding.UTF8.GetBytes(message));
|
|
var sign = ToHexString(hashMessage);
|
|
|
|
using var request = new HttpRequestMessage(HttpMethod.Post, "");
|
|
request.Headers.Add("sign", sign);
|
|
request.Content = new StringContent(message, Encoding.UTF8, "application/json");
|
|
|
|
var result = await _httpClient.SendAsync(request);
|
|
|
|
if (!result.IsSuccessStatusCode)
|
|
throw new ChangellyException(result.ReasonPhrase);
|
|
var content =
|
|
await result.Content.ReadAsStringAsync();
|
|
return JObject.Parse(content).ToObject<ChangellyResponse<T>>();
|
|
|
|
}
|
|
|
|
public virtual async Task<IEnumerable<CurrencyFull>> GetCurrenciesFull()
|
|
{
|
|
const string message = @"{
|
|
""jsonrpc"": ""2.0"",
|
|
""id"": 1,
|
|
""method"": ""getCurrenciesFull"",
|
|
""params"": []
|
|
}";
|
|
|
|
var result = await PostToApi<IEnumerable<CurrencyFull>>(message);
|
|
|
|
return result.Result;
|
|
}
|
|
|
|
public virtual async Task<decimal> GetExchangeAmount(string fromCurrency,
|
|
string toCurrency,
|
|
decimal amount)
|
|
{
|
|
var message =
|
|
$"{{\"id\": \"test\",\"jsonrpc\": \"2.0\",\"method\": \"getExchangeAmount\",\"params\":{{\"from\": \"{fromCurrency}\",\"to\": \"{toCurrency}\",\"amount\": \"{amount}\"}}}}";
|
|
|
|
var result = await PostToApi<string>(message);
|
|
|
|
return Convert.ToDecimal(result.Result, CultureInfo.InvariantCulture);
|
|
}
|
|
}
|
|
}
|