cn.herodotus.engine.access.wxapp.processor.WxappLogHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of access-sdk-wxapp Show documentation
Show all versions of access-sdk-wxapp Show documentation
基于 Spring Authorization Server 的 微信小程序外部接入基础核心组件模块
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2020-2030 郑庚伟 ZHENGGENGWEI (码匠君), Licensed under the AGPL License
*
* This file is part of Herodotus Engine.
*
* Herodotus Engine is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Herodotus Engine is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
package cn.herodotus.engine.access.wxapp.processor;
import cn.binarywang.wx.miniapp.api.WxMaService;
import cn.binarywang.wx.miniapp.bean.WxMaKefuMessage;
import cn.binarywang.wx.miniapp.bean.WxMaMessage;
import cn.binarywang.wx.miniapp.message.WxMaMessageHandler;
import cn.binarywang.wx.miniapp.message.WxMaXmlOutMessage;
import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.common.session.WxSessionManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Map;
/**
* Description: 微信小程序Log处理器
*
* @author : gengwei.zheng
* @date : 2021/4/7 12:44
*/
public class WxappLogHandler implements WxMaMessageHandler {
private static final Logger log = LoggerFactory.getLogger(WxappLogHandler.class);
@Override
public WxMaXmlOutMessage handle(WxMaMessage wxMaMessage, Map context, WxMaService wxMaService, WxSessionManager sessionManager) throws WxErrorException {
log.info("收到消息:" + wxMaMessage.toString());
wxMaService.getMsgService().sendKefuMsg(WxMaKefuMessage.newTextBuilder().content("收到信息为:" + wxMaMessage.toJson())
.toUser(wxMaMessage.getFromUser()).build());
return null;
}
}