WindChat/windchat-message/src/main/java/com/windchat/im/message/group/handler/GroupMessageTextSecretHandl...

101 lines
3.5 KiB
Java
Executable File

/**
* Copyright 2018-2028 Akaxin Group
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.windchat.im.message.group.handler;
import com.windchat.common.channel.ChannelSession;
import com.windchat.common.command.Command;
import com.windchat.common.command.RedisCommand;
import com.windchat.common.constant.CommandConst;
import com.akaxin.proto.client.ImStcMessageProto;
import com.akaxin.proto.core.CoreProto;
import com.akaxin.proto.core.CoreProto.MsgType;
import com.akaxin.proto.site.ImCtsMessageProto;
import com.windchat.im.storage.api.IMessageDao;
import com.windchat.im.storage.bean.GroupMessageBean;
import com.windchat.im.storage.service.MessageDaoService;
import io.netty.channel.Channel;
/**
* 群加密文本消息(暂不支持)
*
* @author Sam{@link an.guoyue254@gmail.com}
* @since 2018-04-26 15:15:01
*/
@Deprecated
public class GroupMessageTextSecretHandler extends AbstractGroupHandler<Command> {
private IMessageDao messageDao = new MessageDaoService();
public Boolean handle(Command command) {
ChannelSession channelSession = command.getChannelSession();
try {
ImCtsMessageProto.ImCtsMessageRequest request = ImCtsMessageProto.ImCtsMessageRequest
.parseFrom(command.getParams());
int type = request.getType().getNumber();
if (CoreProto.MsgType.GROUP_SECRET_TEXT_VALUE == type) {
String gmsg_id = request.getGroupSecretText().getMsgId();
String group_user_id = request.getGroupSecretText().getSiteUserId();
String group_id = request.getGroupSecretText().getSiteGroupId();
String group_text = request.getGroupSecretText().getText().toStringUtf8();
command.setSiteGroupId(group_id);
// command.setField("group_id", group_id);
System.out.println(
"GroupMsg = id=" + gmsg_id + "," + group_user_id + "," + group_id + "," + group_text + ",");
long msgTime = System.currentTimeMillis();
GroupMessageBean gmsgBean = new GroupMessageBean();
gmsgBean.setMsgTime(msgTime);
messageDao.saveGroupMessage(gmsgBean);
msgResponse(channelSession.getChannel(), command, group_user_id, group_id, gmsg_id, msgTime);
return true;
}
return true;
} catch (Exception e) {
e.printStackTrace();
}
return false;
}
private void msgResponse(Channel channel, Command command, String from, String to, String msgId, long msgTime) {
CoreProto.MsgStatus status = CoreProto.MsgStatus.newBuilder().setMsgId(msgId).setMsgServerTime(msgTime)
.setMsgStatus(1).build();
ImStcMessageProto.MsgWithPointer statusMsg = ImStcMessageProto.MsgWithPointer.newBuilder()
.setType(MsgType.MSG_STATUS).setStatus(status).build();
ImStcMessageProto.ImStcMessageRequest request = ImStcMessageProto.ImStcMessageRequest.newBuilder()
.addList(0, statusMsg).build();
CoreProto.TransportPackageData data = CoreProto.TransportPackageData.newBuilder()
.setData(request.toByteString()).build();
channel.writeAndFlush(new RedisCommand().add(CommandConst.PROTOCOL_VERSION).add(CommandConst.IM_MSG_TOCLIENT)
.add(data.toByteArray()));
}
}