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 ImageMessageEventCommand : IRequest { #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 { private readonly IWeChatApiHttpClientFactory _weChatApiHttpClientFactory; public ImageMessageEventCommandHandler(IWeChatApiHttpClientFactory weChatApiHttpClientFactory) { _weChatApiHttpClientFactory = weChatApiHttpClientFactory; } public async Task 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); } } }