2019-02-22 04:43:37 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Utilities
|
|
|
|
|
{
|
|
|
|
|
public class BitPayClient
|
|
|
|
|
{
|
2019-12-19 16:27:06 +01:00
|
|
|
|
private readonly BitPayLight.BitPay _bpClient;
|
2019-02-22 04:43:37 +01:00
|
|
|
|
|
|
|
|
|
public BitPayClient(GlobalSettings globalSettings)
|
|
|
|
|
{
|
2020-03-27 19:36:37 +01:00
|
|
|
|
if (CoreHelpers.SettingHasValue(globalSettings.BitPay.Token))
|
2019-03-20 04:32:54 +01:00
|
|
|
|
{
|
2019-12-19 16:27:06 +01:00
|
|
|
|
_bpClient = new BitPayLight.BitPay(globalSettings.BitPay.Token,
|
|
|
|
|
globalSettings.BitPay.Production ? BitPayLight.Env.Prod : BitPayLight.Env.Test);
|
2019-03-20 04:32:54 +01:00
|
|
|
|
}
|
2019-02-22 04:43:37 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 16:27:06 +01:00
|
|
|
|
public Task<BitPayLight.Models.Invoice.Invoice> GetInvoiceAsync(string id)
|
2019-02-22 04:43:37 +01:00
|
|
|
|
{
|
2019-12-19 16:27:06 +01:00
|
|
|
|
return _bpClient.GetInvoice(id);
|
2019-02-22 04:43:37 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-19 16:27:06 +01:00
|
|
|
|
public Task<BitPayLight.Models.Invoice.Invoice> CreateInvoiceAsync(BitPayLight.Models.Invoice.Invoice invoice)
|
2019-02-22 04:43:37 +01:00
|
|
|
|
{
|
2019-12-19 16:27:06 +01:00
|
|
|
|
return _bpClient.CreateInvoice(invoice);
|
2019-02-22 04:43:37 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|