|
@@ -1,15 +1,19 @@
|
|
|
package org.jim.server.command.handler.processor.chat;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import org.jim.common.ImAio;
|
|
|
import org.jim.common.ImConfig;
|
|
|
import org.jim.common.ImConst;
|
|
|
import org.jim.common.ImPacket;
|
|
|
import org.jim.common.message.MessageHelper;
|
|
|
import org.jim.common.packets.CancelMessageReqBody;
|
|
|
import org.jim.common.packets.ChatType;
|
|
|
+import org.jim.common.packets.User;
|
|
|
import org.jim.common.utils.ChatKit;
|
|
|
import org.jim.server.command.CommandManager;
|
|
|
import org.jim.server.command.handler.processor.CmdProcessor;
|
|
|
import org.jim.server.enums.CancelMessageTypeEnum;
|
|
|
+import org.jim.server.enums.VisitTypeEnum;
|
|
|
import org.jim.server.model.ConversationRecord;
|
|
|
import org.jim.server.util.CancelMessageKit;
|
|
|
import org.tio.core.ChannelContext;
|
|
@@ -38,21 +42,37 @@ public class IMCancelMessageProcessor implements CmdProcessor {
|
|
|
String chatBodyId = cancelMessageReqBody.getId();
|
|
|
ConversationRecord conversationRecord = ConversationRecord.dao
|
|
|
.findFirst("select * from sw_conversation_record where chat_body_id = ? ", chatBodyId);
|
|
|
- String oldFromId = conversationRecord.getStr("from_id");
|
|
|
- if( oldFromId.equals(cancelMessageReqBody.getFrom()) ){
|
|
|
- //表示当前撤销的信息 是 当前人 发的消息 可以撤销
|
|
|
- //1.修改 sw_conversation_record 数据中相关对应字段 is_recall 消息是否撤回 1:是 0:否
|
|
|
- conversationRecord.set("is_recall", CancelMessageTypeEnum.CANCEL.getKey()).update();
|
|
|
- //2. 对redis 对应数据 进行更改
|
|
|
- if(ImConst.ON.equals(imConfig.getIsStore())){
|
|
|
- //更改reids中 已经 持久化的 消息
|
|
|
- if(ChatType.CHAT_TYPE_PUBLIC.getNumber() == cancelMessageReqBody.getChatType()){
|
|
|
- removeGroupMessage(cancelMessageReqBody);
|
|
|
+ if( null != conversationRecord ){
|
|
|
+ String oldFromId;
|
|
|
+ User user = ImAio.getUser(cancelMessageReqBody.getFrom());
|
|
|
+ if(user != null){
|
|
|
+ String visitType = user.getVisitType();
|
|
|
+ if(VisitTypeEnum.CUSTOMER.getKey().equals(visitType)){
|
|
|
+ oldFromId = user.getExtras().getString("customerId");
|
|
|
+ }else if(VisitTypeEnum.VISITOR.getKey().equals(visitType)){
|
|
|
+ // VISITOR 游客 发送的消息
|
|
|
+ oldFromId = user.getExtras().getString("visitorId");
|
|
|
+ }else {
|
|
|
+ //SERVICEACCOUNT 客服 发送的消息
|
|
|
+ oldFromId = user.getExtras().getString("serviceAccountId");
|
|
|
}
|
|
|
+ if( oldFromId.equals(conversationRecord.getStr("from_id")) ){
|
|
|
+ //表示当前撤销的信息 是 当前人 发的消息 可以撤销
|
|
|
+ //1.修改 sw_conversation_record 数据中相关对应字段 is_recall 消息是否撤回 1:是 0:否
|
|
|
+ conversationRecord.set("is_recall", CancelMessageTypeEnum.CANCEL.getKey()).update();
|
|
|
+ //2. 对redis 对应数据 进行更改
|
|
|
+ if(ImConst.ON.equals(imConfig.getIsStore())){
|
|
|
+ //更改reids中 已经 持久化的 消息
|
|
|
+ if(ChatType.CHAT_TYPE_PUBLIC.getNumber() == cancelMessageReqBody.getChatType()){
|
|
|
+ removeGroupMessage(cancelMessageReqBody);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return CancelMessageKit.sendSuccessRespPacket(channelContext);
|
|
|
+ }
|
|
|
+ return CancelMessageKit.fromIdInCorrectRespPacket(channelContext);
|
|
|
}
|
|
|
- return CancelMessageKit.sendSuccessRespPacket(channelContext);
|
|
|
}
|
|
|
- return CancelMessageKit.fromIdInCorrectRespPacket(channelContext);
|
|
|
+ return null;
|
|
|
}
|
|
|
|
|
|
/**
|