|
@@ -1,13 +1,15 @@
|
|
|
package com.cn.processor;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
+import org.apache.commons.collections4.CollectionUtils;
|
|
|
+import org.jim.common.ImSessionContext;
|
|
|
+import org.jim.common.cache.redis.RedisCache;
|
|
|
+import org.jim.common.cache.redis.RedisCacheManager;
|
|
|
+import org.jim.common.packets.*;
|
|
|
import org.jim.server.model.ChatGroup;
|
|
|
import org.jim.server.model.Conversation;
|
|
|
import org.jim.server.model.ConversationRecord;
|
|
|
import org.jim.common.ImAio;
|
|
|
-import org.jim.common.packets.ChatBody;
|
|
|
-import org.jim.common.packets.ChatType;
|
|
|
-import org.jim.common.packets.User;
|
|
|
import org.jim.server.command.handler.processor.chat.DefaultAsyncChatMessageProcessor;
|
|
|
import org.jim.server.enums.VisitTypeEnum;
|
|
|
import org.jim.server.model.GroupConversationMiddle;
|
|
@@ -20,6 +22,7 @@ import java.sql.Timestamp;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
import java.util.Date;
|
|
|
import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
/**
|
|
@@ -33,6 +36,24 @@ public class IMChatAsyncChatMessageProcessor extends DefaultAsyncChatMessageProc
|
|
|
|
|
|
private static SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
|
|
|
|
|
+ //设置key的过期时间 30分钟
|
|
|
+ private static final int TIME_OUT = 30 * 60;
|
|
|
+
|
|
|
+ private final String SUBFIX = ":";
|
|
|
+
|
|
|
+ private static RedisCache groupCache;
|
|
|
+
|
|
|
+ private static RedisCache userCache;
|
|
|
+
|
|
|
+ static{
|
|
|
+ RedisCacheManager.register(USER, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
+ RedisCacheManager.register(GROUP, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
+ RedisCacheManager.register(STORE, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
+ RedisCacheManager.register(PUSH, Integer.MAX_VALUE, Integer.MAX_VALUE);
|
|
|
+ groupCache = RedisCacheManager.getCache(GROUP);
|
|
|
+ userCache = RedisCacheManager.getCache(USER);
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public void doHandler(ChatBody chatBody, ChannelContext channelContext) {
|
|
|
log.info("聊天记录持久化... 开始:" + sdf.format(new Date()));
|
|
@@ -56,11 +77,39 @@ public class IMChatAsyncChatMessageProcessor extends DefaultAsyncChatMessageProc
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ //延长redis数据过期时间
|
|
|
+ this.extendRedisData(chatBody,channelContext);
|
|
|
}
|
|
|
log.info("聊天记录持久化... 结束:" + sdf.format(new Date()));
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 延长redis数据过期时间
|
|
|
+ * @param chatBody
|
|
|
+ * @param channelContext
|
|
|
+ * @return {@link }
|
|
|
+ * @author Darren
|
|
|
+ * @date 2020/2/18 21:02
|
|
|
+ */
|
|
|
+ private void extendRedisData(ChatBody chatBody, ChannelContext channelContext){
|
|
|
+ String userId = chatBody.getFrom();
|
|
|
+ String groupId = chatBody.getGroup_id();
|
|
|
+ ImSessionContext imSessionContext = (ImSessionContext)channelContext.getAttribute();
|
|
|
+ Client client = imSessionContext.getClient();
|
|
|
+ if(client != null) {
|
|
|
+ User onlineUser = client.getUser();
|
|
|
+ if(onlineUser != null){
|
|
|
+ userCache.expire(userId + SUBFIX + TERMINAL + SUBFIX + onlineUser.getTerminal(),TIME_OUT);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ userCache.expire( userId + SUBFIX + GROUP,TIME_OUT);
|
|
|
+ userCache.expire(userId + SUBFIX + INFO,TIME_OUT);
|
|
|
+ userCache.expire(userId + SUBFIX + FRIENDS,TIME_OUT);
|
|
|
+ groupCache.expire(groupId + SUBFIX + USER,TIME_OUT);
|
|
|
+ groupCache.expire(groupId + SUBFIX + INFO,TIME_OUT);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 组装ConversationRecord数据
|
|
|
* @param chatBody
|
|
|
* @param conversation
|