2020-04-01 08:21:54 +02:00
|
|
|
using System;
|
2020-03-24 16:18:43 +01:00
|
|
|
using System.Collections.Generic;
|
2020-03-31 14:43:35 +02:00
|
|
|
using System.Net.Http;
|
2020-03-24 16:18:43 +01:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using BTCPayServer.Client.Models;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Client
|
|
|
|
{
|
|
|
|
public partial class BTCPayServerClient
|
|
|
|
{
|
|
|
|
public virtual async Task<IEnumerable<StoreData>> GetStores(CancellationToken token = default)
|
|
|
|
{
|
2020-03-26 12:34:09 +01:00
|
|
|
var response = await _httpClient.SendAsync(CreateHttpRequest("api/v1/stores"), token);
|
2020-03-24 16:18:43 +01:00
|
|
|
return await HandleResponse<IEnumerable<StoreData>>(response);
|
|
|
|
}
|
2020-03-31 10:47:13 +02:00
|
|
|
|
|
|
|
public virtual async Task<StoreData> GetStore(string storeId, CancellationToken token = default)
|
|
|
|
{
|
|
|
|
var response = await _httpClient.SendAsync(
|
|
|
|
CreateHttpRequest($"api/v1/stores/{storeId}"), token);
|
|
|
|
return await HandleResponse<StoreData>(response);
|
|
|
|
}
|
2020-06-28 10:55:27 +02:00
|
|
|
|
2020-03-31 14:43:35 +02:00
|
|
|
public virtual async Task RemoveStore(string storeId, CancellationToken token = default)
|
|
|
|
{
|
|
|
|
var response = await _httpClient.SendAsync(
|
|
|
|
CreateHttpRequest($"api/v1/stores/{storeId}", method: HttpMethod.Delete), token);
|
2020-06-08 16:40:58 +02:00
|
|
|
await HandleResponse(response);
|
2020-03-31 14:43:35 +02:00
|
|
|
}
|
2020-06-28 10:55:27 +02:00
|
|
|
|
2020-04-01 08:21:54 +02:00
|
|
|
public virtual async Task<StoreData> CreateStore(CreateStoreRequest request, CancellationToken token = default)
|
|
|
|
{
|
|
|
|
if (request == null)
|
|
|
|
throw new ArgumentNullException(nameof(request));
|
|
|
|
var response = await _httpClient.SendAsync(CreateHttpRequest("api/v1/stores", bodyPayload: request, method: HttpMethod.Post), token);
|
|
|
|
return await HandleResponse<StoreData>(response);
|
|
|
|
}
|
2020-06-28 10:55:27 +02:00
|
|
|
|
2020-04-27 13:13:20 +02:00
|
|
|
public virtual async Task<StoreData> UpdateStore(string storeId, UpdateStoreRequest request, CancellationToken token = default)
|
|
|
|
{
|
|
|
|
if (request == null)
|
|
|
|
throw new ArgumentNullException(nameof(request));
|
|
|
|
if (storeId == null)
|
|
|
|
throw new ArgumentNullException(nameof(storeId));
|
|
|
|
var response = await _httpClient.SendAsync(CreateHttpRequest($"api/v1/stores/{storeId}", bodyPayload: request, method: HttpMethod.Put), token);
|
|
|
|
return await HandleResponse<StoreData>(response);
|
|
|
|
}
|
2020-04-01 08:21:54 +02:00
|
|
|
|
2020-03-24 16:18:43 +01:00
|
|
|
}
|
|
|
|
}
|