mirror of
https://github.com/bitwarden/server
synced 2025-12-24 20:23:21 +00:00
31 lines
875 B
C#
31 lines
875 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using Bit.Core.Settings;
|
|
|
|
namespace Bit.Core.Utilities;
|
|
|
|
public class BitPayClient
|
|
{
|
|
private readonly BitPayLight.BitPay _bpClient;
|
|
|
|
public BitPayClient(GlobalSettings globalSettings)
|
|
{
|
|
if (CoreHelpers.SettingHasValue(globalSettings.BitPay.Token))
|
|
{
|
|
_bpClient = new BitPayLight.BitPay(globalSettings.BitPay.Token,
|
|
globalSettings.BitPay.Production ? BitPayLight.Env.Prod : BitPayLight.Env.Test);
|
|
}
|
|
}
|
|
|
|
public Task<BitPayLight.Models.Invoice.Invoice> GetInvoiceAsync(string id)
|
|
{
|
|
return _bpClient.GetInvoice(id);
|
|
}
|
|
|
|
public Task<BitPayLight.Models.Invoice.Invoice> CreateInvoiceAsync(BitPayLight.Models.Invoice.Invoice invoice)
|
|
{
|
|
return _bpClient.CreateInvoice(invoice);
|
|
}
|
|
}
|