You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
3.1 KiB
C#
83 lines
3.1 KiB
C#
using Essensoft.Paylink.WeChatPay;
|
|
using Essensoft.Paylink.WeChatPay.V2;
|
|
using Essensoft.Paylink.WeChatPay.V2.Notify;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.Extensions.Options;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DS.TestResult.PayNotify
|
|
{
|
|
/// <summary>
|
|
/// 微信支付异步通知
|
|
/// </summary>
|
|
[Route("Notify/[controller]/[action]")]
|
|
public class WeChatPayController : ControllerBase
|
|
{
|
|
private readonly IWeChatPayNotifyClient _client;
|
|
private readonly IOptions<WeChatPayOptions> _optionsAccessor;
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
public WeChatPayController(
|
|
IWeChatPayNotifyClient client
|
|
, IOptions<WeChatPayOptions> optionsAccessor)
|
|
{
|
|
_client = client;
|
|
_optionsAccessor = optionsAccessor;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 统一下单支付结果通知
|
|
/// </summary>
|
|
[HttpPost]
|
|
public async Task<IActionResult> Unifiedorder()
|
|
{
|
|
try
|
|
{
|
|
var notify = await _client.ExecuteAsync<WeChatPayUnifiedOrderNotify>(Request, _optionsAccessor.Value);
|
|
if (notify.ReturnCode == WeChatPayCode.Success)
|
|
{
|
|
// await _redisOperationRepository.ListLeftPushAsync(RedisMessageQueueKey.WeChatPayNotice, JsonConvert.SerializeObject(notify));
|
|
return WeChatPayNotifyResult.Success;
|
|
}
|
|
// NLogUtil.WriteAll(LogLevel.Trace, LogType.Order, "微信支付成功回调", JsonConvert.SerializeObject(notify));
|
|
return NoContent();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
// NLogUtil.WriteAll(LogLevel.Trace, LogType.Order, "微信支付成功回调", "统一下单支付结果通知", ex);
|
|
return NoContent();
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// 退款结果通知
|
|
/// </summary>
|
|
[HttpPost]
|
|
public async Task<IActionResult> Refund()
|
|
{
|
|
try
|
|
{
|
|
var notify = await _client.ExecuteAsync<WeChatPayRefundNotify>(Request, _optionsAccessor.Value);
|
|
// NLogUtil.WriteAll(LogLevel.Trace, LogType.Refund, "微信退款结果通知", JsonConvert.SerializeObject(notify));
|
|
|
|
if (notify.ReturnCode == WeChatPayCode.Success)
|
|
if (notify.RefundStatus == WeChatPayCode.Success)
|
|
{
|
|
//Console.WriteLine("OutTradeNo: " + notify.OutTradeNo);
|
|
var memo = JsonConvert.SerializeObject(notify);
|
|
// await _billRefundServices.UpdateAsync(p => new CoreCmsBillRefund { memo = memo }, p => p.refundId == notify.OutTradeNo);
|
|
return WeChatPayNotifyResult.Success;
|
|
}
|
|
return NoContent();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
// NLogUtil.WriteAll(LogLevel.Trace, LogType.Refund, "微信退款结果通知", "退款结果通知", ex);
|
|
|
|
return NoContent();
|
|
}
|
|
}
|
|
}
|
|
} |