mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
ded55a1440
* customized api/v1/invoices query parameters to filter results * customized api/v1/invoices query parameters to filter results * update swagger and make parameters as arrays * change startDate and endDate types to UnixTimestamp * update invoice status type in swagger and better handle dateTimeoffset * change status type to array of InvoiceStatus to match controller * change status type to array of InvoiceStatus to match controller Co-authored-by: somera <somera@tesla.com>
118 lines
5.3 KiB
C#
118 lines
5.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Client.Models;
|
|
using NBitcoin;
|
|
|
|
namespace BTCPayServer.Client
|
|
{
|
|
public partial class BTCPayServerClient
|
|
{
|
|
public virtual async Task<IEnumerable<InvoiceData>> GetInvoices(string storeId, string orderId = null, InvoiceStatus[] status = null,
|
|
long? startDate = null,
|
|
long? endDate = null,
|
|
bool includeArchived = false,
|
|
CancellationToken token = default)
|
|
{
|
|
Dictionary<string, object> queryPayload = new Dictionary<string, object>();
|
|
queryPayload.Add(nameof(includeArchived), includeArchived);
|
|
|
|
if (startDate != null)
|
|
queryPayload.Add(nameof(startDate), startDate);
|
|
|
|
if (endDate != null)
|
|
queryPayload.Add(nameof(endDate), endDate);
|
|
|
|
if (orderId != null)
|
|
queryPayload.Add(nameof(orderId), orderId);
|
|
|
|
if (status != null)
|
|
queryPayload.Add(nameof(status), status.Select(s=> s.ToString().ToLower()).ToArray());
|
|
|
|
var response =
|
|
await _httpClient.SendAsync(
|
|
CreateHttpRequest($"api/v1/stores/{storeId}/invoices",
|
|
queryPayload), token);
|
|
return await HandleResponse<IEnumerable<InvoiceData>>(response);
|
|
}
|
|
|
|
public virtual async Task<InvoiceData> GetInvoice(string storeId, string invoiceId,
|
|
CancellationToken token = default)
|
|
{
|
|
var response = await _httpClient.SendAsync(
|
|
CreateHttpRequest($"api/v1/stores/{storeId}/invoices/{invoiceId}"), token);
|
|
return await HandleResponse<InvoiceData>(response);
|
|
}
|
|
public virtual async Task<InvoicePaymentMethodDataModel[]> GetInvoicePaymentMethods(string storeId, string invoiceId,
|
|
CancellationToken token = default)
|
|
{
|
|
var response = await _httpClient.SendAsync(
|
|
CreateHttpRequest($"api/v1/stores/{storeId}/invoices/{invoiceId}/payment-methods"), token);
|
|
return await HandleResponse<InvoicePaymentMethodDataModel[]>(response);
|
|
}
|
|
|
|
public virtual async Task ArchiveInvoice(string storeId, string invoiceId,
|
|
CancellationToken token = default)
|
|
{
|
|
var response = await _httpClient.SendAsync(
|
|
CreateHttpRequest($"api/v1/stores/{storeId}/invoices/{invoiceId}",
|
|
method: HttpMethod.Delete), token);
|
|
await HandleResponse(response);
|
|
}
|
|
|
|
public virtual async Task<InvoiceData> CreateInvoice(string storeId,
|
|
CreateInvoiceRequest request, CancellationToken token = default)
|
|
{
|
|
if (request == null)
|
|
throw new ArgumentNullException(nameof(request));
|
|
var response = await _httpClient.SendAsync(
|
|
CreateHttpRequest($"api/v1/stores/{storeId}/invoices", bodyPayload: request,
|
|
method: HttpMethod.Post), token);
|
|
return await HandleResponse<InvoiceData>(response);
|
|
}
|
|
|
|
public virtual async Task<InvoiceData> UpdateInvoice(string storeId, string invoiceId,
|
|
UpdateInvoiceRequest request, CancellationToken token = default)
|
|
{
|
|
if (request == null)
|
|
throw new ArgumentNullException(nameof(request));
|
|
var response = await _httpClient.SendAsync(
|
|
CreateHttpRequest($"api/v1/stores/{storeId}/invoices/{invoiceId}", bodyPayload: request,
|
|
method: HttpMethod.Put), token);
|
|
return await HandleResponse<InvoiceData>(response);
|
|
}
|
|
|
|
public virtual async Task<InvoiceData> MarkInvoiceStatus(string storeId, string invoiceId,
|
|
MarkInvoiceStatusRequest request, CancellationToken token = default)
|
|
{
|
|
if (request == null)
|
|
throw new ArgumentNullException(nameof(request));
|
|
if (request.Status!= InvoiceStatus.Settled && request.Status!= InvoiceStatus.Invalid)
|
|
throw new ArgumentOutOfRangeException(nameof(request.Status), "Status can only be Invalid or Complete");
|
|
var response = await _httpClient.SendAsync(
|
|
CreateHttpRequest($"api/v1/stores/{storeId}/invoices/{invoiceId}/status", bodyPayload: request,
|
|
method: HttpMethod.Post), token);
|
|
return await HandleResponse<InvoiceData>(response);
|
|
}
|
|
|
|
public virtual async Task<InvoiceData> UnarchiveInvoice(string storeId, string invoiceId, CancellationToken token = default)
|
|
{
|
|
var response = await _httpClient.SendAsync(
|
|
CreateHttpRequest($"api/v1/stores/{storeId}/invoices/{invoiceId}/unarchive",
|
|
method: HttpMethod.Post), token);
|
|
return await HandleResponse<InvoiceData>(response);
|
|
}
|
|
|
|
public virtual async Task ActivateInvoicePaymentMethod(string storeId, string invoiceId, string paymentMethod, CancellationToken token = default)
|
|
{
|
|
var response = await _httpClient.SendAsync(
|
|
CreateHttpRequest($"api/v1/stores/{storeId}/invoices/{invoiceId}/payment-methods/{paymentMethod}/activate",
|
|
method: HttpMethod.Post), token);
|
|
await HandleResponse(response);
|
|
}
|
|
}
|
|
}
|