mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
56 lines
2.1 KiB
C#
56 lines
2.1 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using System.Web.Http;
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample.Controllers
|
|
{
|
|
using SKIT.FlurlHttpClient.Wechat.TenpayV3;
|
|
using SKIT.FlurlHttpClient.Wechat.TenpayV3.Models;
|
|
|
|
[RoutePrefix("api/refund")]
|
|
public class TenpayRefundController : ApiController
|
|
{
|
|
private readonly Services.HttpClients.IWechatTenpayHttpClientFactory _tenpayHttpClientFactory;
|
|
|
|
public TenpayRefundController(
|
|
Services.HttpClients.IWechatTenpayHttpClientFactory tenpayHttpClientFactory)
|
|
{
|
|
_tenpayHttpClientFactory = tenpayHttpClientFactory;
|
|
}
|
|
|
|
[HttpPost]
|
|
[Route("")]
|
|
public async Task<IHttpActionResult> CreateRefund([FromBody] Models.CreateRefundRequest requestModel, CancellationToken cancellationToken)
|
|
{
|
|
if (requestModel == null)
|
|
return BadRequest();
|
|
|
|
var client = _tenpayHttpClientFactory.Create(requestModel.MerchantId);
|
|
var request = new CreateRefundDomesticRefundRequest()
|
|
{
|
|
TransactionId = requestModel.TransactionId,
|
|
OutRefundNumber = "SAMPLE_ORN_" + DateTimeOffset.Now.ToString("yyyyMMddHHmmssfff"),
|
|
Amount = new CreateRefundDomesticRefundRequest.Types.Amount()
|
|
{
|
|
Total = requestModel.OrderAmount,
|
|
Refund = requestModel.RefundAmount
|
|
},
|
|
Reason = "示例退款",
|
|
NotifyUrl = Options.TenpayOptions.Instance.Value.NotifyUrl
|
|
};
|
|
var response = await client.ExecuteCreateRefundDomesticRefundAsync(request, cancellationToken);
|
|
if (!response.IsSuccessful())
|
|
{
|
|
Debug.WriteLine(
|
|
"申请退款失败(状态码:{0},错误代码:{1},错误描述:{2})。",
|
|
response.RawStatus, response.ErrorCode, response.ErrorMessage
|
|
);
|
|
}
|
|
|
|
return Json(response);
|
|
}
|
|
}
|
|
}
|