CancelMessageKit.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. package org.jim.server.util;
  2. import org.apache.commons.lang3.StringUtils;
  3. import org.apache.log4j.Logger;
  4. import org.jim.common.ImPacket;
  5. import org.jim.common.ImStatus;
  6. import org.jim.common.http.HttpConst;
  7. import org.jim.common.packets.CancelMessageReqBody;
  8. import org.jim.common.packets.Command;
  9. import org.jim.common.packets.RespBody;
  10. import org.jim.common.utils.ImKit;
  11. import org.jim.common.utils.JsonKit;
  12. import org.tio.core.ChannelContext;
  13. import java.io.UnsupportedEncodingException;
  14. /**
  15. * IM撤销消息 命令工具类
  16. * @author Darren
  17. * @date 2020/2/12 17:26
  18. */
  19. public class CancelMessageKit {
  20. private static Logger log = Logger.getLogger(CancelMessageKit.class);
  21. /**
  22. * 转换为消息结构;
  23. * @param body
  24. * @return
  25. */
  26. private static CancelMessageReqBody parseCancelMessageBody(byte[] body){
  27. if(body == null) {
  28. return null;
  29. }
  30. CancelMessageReqBody cancelMessageReqBody = null;
  31. try {
  32. String text = new String(body, HttpConst.CHARSET_NAME);
  33. cancelMessageReqBody = JsonKit.toBean(text, CancelMessageReqBody.class);
  34. if( null != cancelMessageReqBody){
  35. return cancelMessageReqBody;
  36. }
  37. } catch (UnsupportedEncodingException e) {
  38. log.error(e.toString());
  39. }
  40. return cancelMessageReqBody;
  41. }
  42. /**
  43. * 验证消息体中的值
  44. * @param cancelMessageReqBody
  45. * @return
  46. */
  47. private static boolean validateCancelMessageBody(CancelMessageReqBody cancelMessageReqBody){
  48. boolean b1 = StringUtils.isNotEmpty(cancelMessageReqBody.getId());
  49. boolean b2 = StringUtils.isNotEmpty(cancelMessageReqBody.getGroup_id());
  50. boolean b3 = StringUtils.isNotEmpty(cancelMessageReqBody.getFrom());
  51. boolean b4 = null != cancelMessageReqBody.getMsgState();
  52. boolean b5 = null != cancelMessageReqBody.getChatType();
  53. return (b1 && b2 && b3 && b4 && b5);
  54. }
  55. /**
  56. * 转换为消息结构;
  57. * @param body
  58. * @return
  59. */
  60. public static CancelMessageReqBody toCancelMessageBody(byte[] body){
  61. CancelMessageReqBody cancelMessageReqBody = parseCancelMessageBody(body);
  62. if( null != cancelMessageReqBody ){
  63. if( validateCancelMessageBody(cancelMessageReqBody) ){
  64. return cancelMessageReqBody;
  65. }
  66. }
  67. return null;
  68. }
  69. /**
  70. * 消息数据格式不正确响应包
  71. * @param channelContext
  72. * @return imPacket
  73. * @throws Exception
  74. */
  75. public static ImPacket dataInCorrectRespPacket(ChannelContext channelContext) {
  76. RespBody chatDataInCorrectRespPacket = new RespBody(Command.COMMAND_CANCEL_MSG_RESP, ImStatus.C10023);
  77. ImPacket respPacket = ImKit.ConvertRespPacket(chatDataInCorrectRespPacket, channelContext);
  78. respPacket.setStatus(ImStatus.C10023);
  79. return respPacket;
  80. }
  81. /**
  82. * 消息撤销失败,当前撤销消息不是您发的消息,不可以被撤销!
  83. * @param channelContext
  84. * @return imPacket
  85. * @throws Exception
  86. */
  87. public static ImPacket fromIdInCorrectRespPacket(ChannelContext channelContext) {
  88. RespBody chatDataInCorrectRespPacket = new RespBody(Command.COMMAND_CANCEL_MSG_RESP, ImStatus.C10025);
  89. ImPacket respPacket = ImKit.ConvertRespPacket(chatDataInCorrectRespPacket, channelContext);
  90. respPacket.setStatus(ImStatus.C10025);
  91. return respPacket;
  92. }
  93. /**
  94. * 消息撤销成功响应包
  95. * @param channelContext
  96. * @return
  97. * @throws Exception
  98. */
  99. public static ImPacket sendSuccessRespPacket(ChannelContext channelContext) {
  100. RespBody chatDataInCorrectRespPacket = new RespBody(Command.COMMAND_CANCEL_MSG_RESP,ImStatus.C10024);
  101. ImPacket respPacket = ImKit.ConvertRespPacket(chatDataInCorrectRespPacket, channelContext);
  102. respPacket.setStatus(ImStatus.C10024);
  103. return respPacket;
  104. }
  105. }