|
@@ -9,10 +9,7 @@ import org.jim.common.cache.redis.RedisCache;
|
|
|
import org.jim.common.cache.redis.RedisCacheManager;
|
|
|
import org.jim.common.listener.ImBindListener;
|
|
|
import org.jim.common.message.AbstractMessageHelper;
|
|
|
-import org.jim.common.packets.ChatBody;
|
|
|
-import org.jim.common.packets.Group;
|
|
|
-import org.jim.common.packets.User;
|
|
|
-import org.jim.common.packets.UserMessageData;
|
|
|
+import org.jim.common.packets.*;
|
|
|
import org.jim.common.utils.ChatKit;
|
|
|
import org.jim.common.utils.JsonKit;
|
|
|
import org.slf4j.Logger;
|
|
@@ -22,6 +19,7 @@ import java.util.ArrayList;
|
|
|
import java.util.Iterator;
|
|
|
import java.util.List;
|
|
|
import java.util.Set;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
|
* Redis获取持久化+同步消息助手;
|
|
@@ -98,6 +96,60 @@ public class RedisMessageHelper extends AbstractMessageHelper{
|
|
|
RedisCacheManager.getCache(timelineTable).sortSetPush(timelineId, score, chatBody);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 移除redis中 需要撤销的消息
|
|
|
+ * @param cancelMessageReqBody
|
|
|
+ * @return {@link }
|
|
|
+ * @author Darren
|
|
|
+ * @date 2020/2/13 11:53
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public void removeCancelMessage(CancelMessageReqBody cancelMessageReqBody){
|
|
|
+ String key = GROUP + SUBFIX + cancelMessageReqBody.getGroup_id();
|
|
|
+ List<String> messages = storeCache.sortSetGetAll(key);
|
|
|
+ if(CollectionUtils.isNotEmpty(messages)){
|
|
|
+ List<ChatBody> chatBodies = JsonKit.toArray(messages, ChatBody.class);
|
|
|
+ List<String> chatBodyIds = chatBodies.stream().map(ChatBody::getId).collect(Collectors.toList());
|
|
|
+ if(chatBodyIds.contains(cancelMessageReqBody.getId())){
|
|
|
+ storeCache.remove(key);
|
|
|
+ Iterator<ChatBody> it = chatBodies.iterator();
|
|
|
+ while(it.hasNext()){
|
|
|
+ ChatBody chatBody = it.next();
|
|
|
+ if( !chatBody.getId().equals(cancelMessageReqBody.getId()) ){
|
|
|
+ storeCache.sortSetPush(key,chatBody.getCreateTime(),chatBody);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 移除redis中 推送给 离线用户的消息 中需要撤销的消息
|
|
|
+ * @param cancelMessageReqBody
|
|
|
+ * @return {@link }
|
|
|
+ * @author Darren
|
|
|
+ * @date 2020/2/13 11:53
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public void removeCancelMessageByOffOnlineUserId(String userId, CancelMessageReqBody cancelMessageReqBody){
|
|
|
+ String key = GROUP + SUBFIX + cancelMessageReqBody.getGroup_id() + SUBFIX + userId;
|
|
|
+ List<String> messages = pushCache.sortSetGetAll(key);
|
|
|
+ if(CollectionUtils.isNotEmpty(messages)){
|
|
|
+ List<ChatBody> chatBodies = JsonKit.toArray(messages, ChatBody.class);
|
|
|
+ List<String> chatBodyIds = chatBodies.stream().map(ChatBody::getId).collect(Collectors.toList());
|
|
|
+ if(chatBodyIds.contains(cancelMessageReqBody.getId())){
|
|
|
+ pushCache.remove(key);
|
|
|
+ Iterator<ChatBody> it = chatBodies.iterator();
|
|
|
+ while(it.hasNext()){
|
|
|
+ ChatBody chatBody = it.next();
|
|
|
+ if( !chatBody.getId().equals(cancelMessageReqBody.getId()) ){
|
|
|
+ pushCache.sortSetPush(key,chatBody.getCreateTime(),chatBody);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
@Override
|
|
|
public void addGroupUser(String userid, String group_id) {
|
|
@@ -156,6 +208,9 @@ public class RedisMessageHelper extends AbstractMessageHelper{
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取用户指定群组离线消息;
|
|
|
+ */
|
|
|
@Override
|
|
|
public UserMessageData getGroupOfflineMessage(String userid, String groupid) {
|
|
|
String key = GROUP+SUBFIX+groupid+SUBFIX+userid;
|
|
@@ -197,6 +252,16 @@ public class RedisMessageHelper extends AbstractMessageHelper{
|
|
|
return messageData;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取群组历史消息
|
|
|
+ * @param userid
|
|
|
+ * @param groupid
|
|
|
+ * @param beginTime 消息区间开始时间
|
|
|
+ * @param endTime 消息区间结束时间
|
|
|
+ * @param offset 分页偏移量
|
|
|
+ * @param count 数量
|
|
|
+ * @return
|
|
|
+ */
|
|
|
@Override
|
|
|
public UserMessageData getGroupHistoryMessage(String userid, String groupid,Double beginTime,Double endTime,Integer offset,Integer count) {
|
|
|
String key = GROUP+SUBFIX+groupid;
|