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

97 lines
3.2 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 org.slf4j.Logger;
import org.slf4j.LoggerFactory;
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.service.MessageDaoService;
import io.netty.channel.Channel;
/**
* 群加密语音消息(暂不支持)
*
* @author Sam{@link an.guoyue254@gmail.com}
* @since 2018-04-26 15:15:54
*/
@Deprecated
public class GroupMessageVoiceSecretHandler extends AbstractGroupHandler<Command> {
private static final Logger logger = LoggerFactory.getLogger(GroupMessageVoiceSecretHandler.class);
private IMessageDao messageDao = new MessageDaoService();
@Override
public Boolean handle(Command command) {
try {
ImCtsMessageProto.ImCtsMessageRequest request = ImCtsMessageProto.ImCtsMessageRequest
.parseFrom(command.getParams());
int type = request.getType().getNumber();
if (CoreProto.MsgType.GROUP_SECRET_VOICE_VALUE == type) {
// String gmsgId = request.getGroupSecretVoice().getMsgId();
// String siteUserId =
// request.getGroupSecretVoice().getSiteUserId();
// String groupId =
// request.getGroupSecretVoice().getSiteGroupId();
// String groupVoiceId =
// request.getGroupSecretVoice().getVoicdId();
//
//
// GroupMessageBean gmsgBean = new GroupMessageBean();
// messageDao.saveGroupMessage(gmsgBean);
//
// msgResponse(channelSession.getChannel(), command,
// group_user_id, group_id, gmsg_id);
return true;
}
return true;
} catch (Exception e) {
e.printStackTrace();
}
return false;
}
private void msgResponse(Channel channel, Command command, String from, String to, String msgId) {
CoreProto.MsgStatus status = CoreProto.MsgStatus.newBuilder().setMsgId(msgId).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()));
}
}