mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
57 lines
2.0 KiB
C#
57 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Security.Bitpay;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using NBitcoin.DataEncoders;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace BTCPayServer.Models
|
|
{
|
|
//{"data":[{"pos":"FfZ6WCa8TunAvPCpQZXkdBsoH4Yo18FyPaJ5X5qjrVVY"},{"pos/invoice":"H1pwwh2tMeSCri9rh5VvHWEHokGdf2EGtghfZkUEbeZv"},{"merchant":"89zEBr9orAc6wgybAABp8ioGcjYeFrUaZgMzjxNuqYty"},{"merchant/invoice":"8e7ijDxGfJsWXWgJuKXjjNgxnX1xpsBM8cTZCFnU7ehj"}]}
|
|
public class GetTokensResponse : IActionResult
|
|
{
|
|
BitTokenEntity[] _Tokens;
|
|
public GetTokensResponse(BitTokenEntity[] tokens)
|
|
{
|
|
if (tokens == null)
|
|
throw new ArgumentNullException(nameof(tokens));
|
|
this._Tokens = tokens;
|
|
}
|
|
|
|
[JsonProperty(PropertyName = "data")]
|
|
//{"pos":"FfZ6WCa8TunAvPCpQZXkdBsoH4Yo18FyPaJ5X5qjrVVY"}
|
|
public JArray Data
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public async Task ExecuteResultAsync(ActionContext context)
|
|
{
|
|
JObject jobj = new JObject();
|
|
JArray jarray = new JArray();
|
|
jobj.Add("data", jarray);
|
|
var token = _Tokens.FirstOrDefault();
|
|
if (token != null)
|
|
{
|
|
JObject item = new JObject();
|
|
jarray.Add(item);
|
|
JProperty jProp = new JProperty("merchant");
|
|
item.Add(jProp);
|
|
jProp.Value = token.Value;
|
|
}
|
|
context.HttpContext.Response.Headers.Add("Content-Type", new Microsoft.Extensions.Primitives.StringValues("application/json"));
|
|
var str = JsonConvert.SerializeObject(jobj);
|
|
await using (var writer = new StreamWriter(context.HttpContext.Response.Body, new UTF8Encoding(false), 1024 * 10, true))
|
|
{
|
|
await writer.WriteAsync(str);
|
|
}
|
|
}
|
|
}
|
|
}
|