You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
2.1 KiB
47 lines
2.1 KiB
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
|
|
{
|
|
/// <summary>
|
|
/// 表示 TEXT 事件的数据
|
|
/// </summary>
|
|
public class ImageMessageEventCommand : IRequest<WeChatApiCallBack>
|
|
{
|
|
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的 属性“EventObj”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
|
public ImageMessageEvent EventObj { get; set; }
|
|
#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的 属性“EventObj”必须包含非 null 值。请考虑将 属性 声明为可以为 null。
|
|
}
|
|
|
|
public class ImageMessageEventCommandHandler : IRequestHandler<ImageMessageEventCommand, WeChatApiCallBack>
|
|
{
|
|
private readonly IWeChatApiHttpClientFactory _weChatApiHttpClientFactory;
|
|
|
|
public ImageMessageEventCommandHandler(IWeChatApiHttpClientFactory weChatApiHttpClientFactory)
|
|
{
|
|
_weChatApiHttpClientFactory = weChatApiHttpClientFactory;
|
|
}
|
|
|
|
public async Task<WeChatApiCallBack> Handle(ImageMessageEventCommand 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);
|
|
}
|
|
}
|
|
}
|
|
|