博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
微信云控开发SDK使用教程--手机端推送好友列表通知服务端
阅读量:5288 次
发布时间:2019-06-14

本文共 3871 字,大约阅读时间需要 12 分钟。

微信云控开发SDK使用教程--手机端推送好友列表通知服务端

case FriendPushNotice : {//手机端推送好友列表

log.debug("socket:msgtype=FriendPushNotice");
friendPushNoticeHandler.handleMsg(ctx, msgVo);
break;
}

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

import java.util.List;

import org.slf4j.Logger;

import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Async;
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.domain.WeChatContactInfo;
import com.jubotech.business.web.service.AccountService;
import com.jubotech.business.web.service.WeChatAccountService;
import com.jubotech.business.web.service.WeChatContactService;
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.FriendAddNotice.FriendMessage;

import Jubo.JuLiao.IM.Wx.Proto.FriendPushNotice.FriendPushNoticeMessage;
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 FriendPushNoticeHandler{
private final Logger log = LoggerFactory.getLogger(getClass());
@Autowired
private WeChatAccountService weChatAccountService;
@Autowired
private AccountService accountService;
@Autowired
private WeChatContactService weChatContactService;

/** * 手机端主动推送好友列表消息 * @author wechatno:tangjinjinwx * @param ctx * @param vo */public  void handleMsg(ChannelHandlerContext ctx, TransportMessage vo) {    try {        FriendPushNoticeMessage req = vo.getContent().unpack(FriendPushNoticeMessage.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) {                    asyncSendMsg(chx, req);                }            }            // 告诉客户端消息已收到            MessageUtil.sendMsg(ctx, EnumMsgType.MsgReceivedAck, vo.getAccessToken(), vo.getId(), null);                                    //异步保存到数据库            friendListSave(req, account);        } else {            // 对方不在线            MessageUtil.sendErrMsg(ctx, EnumErrorCode.TargetNotOnline, Constant.ERROR_MSG_NOTONLINE);        }    } catch (Exception e) {        e.printStackTrace();        MessageUtil.sendErrMsg(ctx, EnumErrorCode.InvalidParam, Constant.ERROR_MSG_DECODFAIL);    }}@Asyncprivate  void  asyncSendMsg(ChannelHandlerContext chx,FriendPushNoticeMessage req){    MessageUtil.sendJsonMsg(chx, EnumMsgType.FriendPushNotice, NettyConnectionUtil.getNettyId(chx),null, req);}@Asyncprivate void friendListSave(FriendPushNoticeMessage req,WeChatAccountInfo account) {    List
friendList = req.getFriendsList(); if(null != friendList && friendList.size()>0){ String wechatId = req.getWeChatId(); for(int i=0;i

}

项目地址:https://www.wuliaokankan.cn/url301/138.html

接口参考:http://www.yunlauncher.com/Blog/articles/119.html

转载于:https://www.cnblogs.com/wuliaokankan/p/10608116.html

你可能感兴趣的文章
从局部坐标系到世界坐标系, 向量解奥秘
查看>>
Qt5.9 WebEngine 概述
查看>>
WOJ
查看>>
自己定义进度条PictureProgressBar——从开发到开源公布全过程
查看>>
HTTP 报文格式
查看>>
暑假集训 || 二分+三分
查看>>
Unity打印
查看>>
#转 并查集详解
查看>>
Java中的static关键字解析
查看>>
【转】Android 防破解技术简介
查看>>
Android平板上开发应用的一点心得——精确适配不同的dpi和屏幕尺寸
查看>>
【转】java 解析 plist文件
查看>>
10款屏幕取色器/颜色拾取工具软件介绍及下载地址(附截图)
查看>>
动态规划01背包问题
查看>>
Loader、CursorLoader、AsyncTaskLoader
查看>>
crm-vue项目上线前对加载速度以及兼容IE的一些方法
查看>>
首页列表显示全部问答,完成问答详情页布局
查看>>
sprintf,你知道多少?
查看>>
oc 中使用switch需要注意点
查看>>
认识Caffe与Caffe2
查看>>