msgstorage.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. let Disp = require("../../utils/Dispatcher.js");
  2. let msgPackager = require("./msgpackager.js");
  3. let msgType = require("./msgtype.js");
  4. let msgStorage = new Disp();
  5. let disp = require("../../utils/broadcast.js");
  6. msgStorage.saveReceiveMsg = function (receiveMsg, type) {
  7. let sendableMsg;
  8. if (type == msgType.IMAGE) {
  9. sendableMsg = {
  10. id: receiveMsg.id,
  11. type: type,
  12. body: {
  13. id: receiveMsg.id,
  14. from: receiveMsg.from,
  15. to: receiveMsg.to,
  16. type: receiveMsg.type,
  17. ext: receiveMsg.ext,
  18. chatType: receiveMsg.type,
  19. toJid: "",
  20. body: {
  21. type: type,
  22. url: receiveMsg.url,
  23. filename: receiveMsg.filename,
  24. filetype: receiveMsg.filetype,
  25. size: {
  26. width: receiveMsg.width,
  27. height: receiveMsg.height
  28. }
  29. }
  30. }
  31. };
  32. } else if (type == msgType.TEXT || type == msgType.EMOJI) {
  33. sendableMsg = {
  34. id: receiveMsg.id,
  35. type: type,
  36. body: {
  37. id: receiveMsg.id,
  38. from: receiveMsg.from,
  39. to: receiveMsg.to,
  40. type: receiveMsg.type,
  41. ext: receiveMsg.ext,
  42. chatType: receiveMsg.type,
  43. toJid: "",
  44. body: {
  45. type: type,
  46. msg: receiveMsg.data
  47. }
  48. },
  49. value: receiveMsg.data
  50. };
  51. }
  52. else if (type == 'INFORM') { // 通知消息
  53. sendableMsg = {
  54. body: {
  55. from: receiveMsg.from,
  56. to: receiveMsg.to,
  57. chatType: 'INFORM',
  58. gid:receiveMsg.gid ? receiveMsg.gid:'',
  59. type:receiveMsg.type
  60. },
  61. };
  62. } else if (type == msgType.FILE) {
  63. sendableMsg = {
  64. id: receiveMsg.id,
  65. type: type,
  66. body: {
  67. id: receiveMsg.id,
  68. length: receiveMsg.file_length,
  69. from: receiveMsg.from,
  70. to: receiveMsg.to,
  71. type: receiveMsg.type,
  72. ext: receiveMsg.ext,
  73. chatType: receiveMsg.type,
  74. toJid: "",
  75. body: {
  76. type: type,
  77. url: receiveMsg.url,
  78. filename: receiveMsg.filename,
  79. msg: "当前不支持此格式消息展示"
  80. }
  81. },
  82. value: receiveMsg.data
  83. };
  84. } else if (type == msgType.AUDIO) {
  85. sendableMsg = {
  86. id: receiveMsg.id,
  87. type: type,
  88. accessToken: receiveMsg.token || receiveMsg.accessToken,
  89. body: {
  90. id: receiveMsg.id,
  91. length: receiveMsg.length,
  92. from: receiveMsg.from,
  93. to: receiveMsg.to,
  94. type: receiveMsg.type,
  95. ext: receiveMsg.ext,
  96. chatType: receiveMsg.type,
  97. toJid: "",
  98. body: {
  99. type: type,
  100. url: receiveMsg.url,
  101. filename: receiveMsg.filename,
  102. filetype: receiveMsg.filetype,
  103. from: receiveMsg.from,
  104. to: receiveMsg.to
  105. }
  106. }
  107. };
  108. } else if (type == msgType.VIDEO) {
  109. sendableMsg = {
  110. id: receiveMsg.id,
  111. type: type,
  112. accessToken: receiveMsg.token || receiveMsg.accessToken,
  113. body: {
  114. id: receiveMsg.id,
  115. length: receiveMsg.length,
  116. from: receiveMsg.from,
  117. to: receiveMsg.to,
  118. type: receiveMsg.type,
  119. ext: receiveMsg.ext,
  120. chatType: receiveMsg.type,
  121. toJid: "",
  122. body: {
  123. type: type,
  124. url: receiveMsg.url,
  125. filename: receiveMsg.filename,
  126. filetype: receiveMsg.filetype,
  127. from: receiveMsg.from,
  128. to: receiveMsg.to
  129. },
  130. },
  131. };
  132. } else {
  133. return;
  134. }
  135. this.saveMsg(sendableMsg, type, receiveMsg);
  136. };
  137. msgStorage.saveMsg = function (sendableMsg, type, receiveMsg) {
  138. let me = this;
  139. let myName = uni.getStorageSync("myUsername");
  140. let sessionKey; // 仅用作群聊收消息,发消息没有 receiveMsg
  141. if (receiveMsg && receiveMsg.type == "groupchat") {
  142. sessionKey = receiveMsg.to + myName;
  143. } else if (sendableMsg.body.chatType === 'INFORM'){
  144. sessionKey = 'INFORM'
  145. }
  146. // 群聊发 & 单发 & 单收
  147. else {
  148. sessionKey = sendableMsg.body.from == myName ? sendableMsg.body.to + myName : sendableMsg.body.from + myName;
  149. }
  150. let curChatMsg = uni.getStorageSync(sessionKey) || [];
  151. let renderableMsg = msgPackager(sendableMsg, type, myName);
  152. if (type == msgType.AUDIO) {
  153. renderableMsg.msg.length = sendableMsg.body.length;
  154. renderableMsg.msg.token = sendableMsg.accessToken;
  155. }
  156. curChatMsg.push(renderableMsg); //console.log('renderableMsgrenderableMsg', renderableMsg)
  157. if (type == msgType.VIDEO) {
  158. renderableMsg.msg.token = sendableMsg.accessToken; //如果是音频则请求服务器转码
  159. }
  160. save();
  161. function save() {
  162. uni.setStorage({
  163. key: sessionKey,
  164. data: curChatMsg,
  165. success() {
  166. if (type == msgType.AUDIO || type == msgType.VIDEO) {
  167. disp.fire('em.chat.audio.fileLoaded');
  168. }
  169. me.fire("newChatMsg", renderableMsg, type, curChatMsg, sessionKey);
  170. }
  171. });
  172. }
  173. };
  174. module.exports = msgStorage;