• 微信二次开发SDK使用教程--手机检测到有人评论/删除朋友圈通知服务端


    微信二次开发SDK使用教程--手机检测到有人评论/删除朋友圈通知服务端

    case CircleCommentNotice : {//手机检测到有人评论/删除朋友圈通知
    log.debug("socket:msgtype=CircleCommentNotice");
    circleCommentNoticeHandler.handleMsg(ctx, msgVo);
    break;
    }

    package com.jubotech.framework.netty.handler.socket;

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.stereotype.Service;

    import com.google.protobuf.util.JsonFormat;
    import com.jubotech.business.web.domain.AccountInfo;
    import com.jubotech.business.web.domain.WeChatAccountInfo;
    import com.jubotech.business.web.service.AccountService;
    import com.jubotech.business.web.service.WeChatAccountService;
    import com.jubotech.framework.netty.common.Constant;
    import com.jubotech.framework.netty.utils.MessageUtil;
    import com.jubotech.framework.netty.utils.NettyConnectionUtil;

    import Jubo.JuLiao.IM.Wx.Proto.CircleCommentNotice.CircleCommentNoticeMessage;
    import Jubo.JuLiao.IM.Wx.Proto.TransportMessageOuterClass.EnumErrorCode;
    import Jubo.JuLiao.IM.Wx.Proto.TransportMessageOuterClass.EnumMsgType;
    import Jubo.JuLiao.IM.Wx.Proto.TransportMessageOuterClass.TransportMessage;
    import io.netty.channel.ChannelHandlerContext;

    @Service
    public class CircleCommentNoticeHandler {
    private final Logger log = LoggerFactory.getLogger(getClass());
    @Autowired
    private WeChatAccountService weChatAccountService;
    @Autowired
    private AccountService accountService;

    /**
     * 手机检测到有人评论/删除朋友圈通知
     * @author wechatno:tangjinjinwx
     * @param ctx
     * @param vo
     */
    
    public void handleMsg(ChannelHandlerContext ctx, TransportMessage vo) {
    	try {
    		CircleCommentNoticeMessage req = vo.getContent().unpack(CircleCommentNoticeMessage.class);
    		log.info(JsonFormat.printer().print(req));
    		// 把消息转发给pc端
    		// a、根据wechatId找到accountid
    		// b、通过accountid找到account
    		// c、通过account账号找到通道
    		WeChatAccountInfo account = weChatAccountService.findWeChatAccountInfoByWeChatId(req.getWeChatId());
    		if (null != account && null != account.getAccountid() && 1 != account.getIslogined()) {
    			AccountInfo accInfo = accountService.findAccountInfoByid(account.getAccountid());
    			if (null != accInfo) {
    				// 转发给pc端
    				ChannelHandlerContext chx = NettyConnectionUtil.getClientChannelHandlerContextByUserId(accInfo.getAccount());
    				if (null != chx) {
    					MessageUtil.sendJsonMsg(chx, EnumMsgType.CircleCommentNotice,NettyConnectionUtil.getNettyId(chx), null, req);
    				}
    			}
    			// 告诉客户端消息已收到
    			MessageUtil.sendMsg(ctx, EnumMsgType.MsgReceivedAck, vo.getAccessToken(), vo.getId(), null);
    		} else {
    			// 对方不在线
    			MessageUtil.sendErrMsg(ctx, EnumErrorCode.TargetNotOnline, Constant.ERROR_MSG_NOTONLINE);
    		}
    		  
    	} catch (Exception e) {
    		e.printStackTrace();
    		MessageUtil.sendErrMsg(ctx, EnumErrorCode.InvalidParam, Constant.ERROR_MSG_DECODFAIL);
    	}
    }
    

    }

    项目地址:https://www.wuliaokankan.cn/url301/138.html
    接口参考:http://www.yunlauncher.com/Blog/articles/119.html

  • 相关阅读:
    Visual Studio 2010单元测试(2)--运行测试并查看代码覆盖率
    实用设计模式之观察者模式
    并查集简单题pku1611
    HDU 4534 郑厂长系列故事——新闻净化(AC自动机+DP)
    求 小于 n 的 质数 几种方式
    MySQL数据库高并发优化配置
    MySQL 对于千万级的大表要怎么优化?
    mysql数据库优化总结
    php 正则表达式怎么匹配标签里面的style?
    MySql数据库优化可以从哪几个方面进行?
  • 原文地址:https://www.cnblogs.com/wuliaokankan/p/10607893.html
Copyright © 2020-2023  润新知