using MediatR;
using SKIT.FlurlHttpClient.Wechat.Api;
using SKIT.FlurlHttpClient.Wechat.Api.Events;
using Zncy.CloudCar.WeChat.Service.Models;
using Zncy.CloudCar.WeChat.Service.Services.HttpClients;
using Znyc.CloudCar.Utility.Helper;
namespace Zncy.CloudCar.WeChat.Service.Mediator
{
///
/// 表示 TEXT 事件的数据
///
public class VoiceMessageEventCommand : IRequest
{
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“EventObj”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
public VoiceMessageEvent EventObj { get; set; }
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“EventObj”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
}
public class VoiceMessageEventCommandHandler : IRequestHandler
{
private readonly IWeChatApiHttpClientFactory _weChatApiHttpClientFactory;
public VoiceMessageEventCommandHandler(IWeChatApiHttpClientFactory weChatApiHttpClientFactory)
{
_weChatApiHttpClientFactory = weChatApiHttpClientFactory;
}
public async Task Handle(VoiceMessageEventCommand request, CancellationToken cancellationToken)
{
var jm = new WeChatApiCallBack() { Status = true };
if (request.EventObj != null)
{
var client = _weChatApiHttpClientFactory.CreateWxOpenClient();
var replyModel = new SKIT.FlurlHttpClient.Wechat.Api.Events.TransferCustomerServiceReply()
{
ToUserName = request.EventObj.FromUserName,
FromUserName = request.EventObj.ToUserName,
CreateTimestamp = CommonHelper.GetTimeStampByTotalSeconds()
};
var replyXml = client.SerializeEventToXml(replyModel);
jm.Data = replyXml;
}
return await Task.FromResult(jm);
}
}
}