api-im.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. import http from '../http-request'
  2. // 资源实体在URL中的占位符
  3. const USER_PATH = ':user_id'
  4. const SESSION_PATH = ':session_id'
  5. const TOPIC_PATH = ':topic_id'
  6. const PARTICIPANT_PATH = ':participant_id'
  7. // REST API
  8. var ENDPOINTS = {
  9. Application: {
  10. BadgeNo: '/application/badge_no'
  11. },
  12. Management: {
  13. Health: '/management/health',
  14. DbStatus: '/management/db'
  15. },
  16. Users: {
  17. Login: '/users/login',
  18. Logout: '/users/logout',
  19. User: '/users/:user_id',
  20. UserStatus: '/users/:user_id/status'
  21. },
  22. Sessions: {
  23. Sessions: '/sessions',
  24. getSessionsInfo: '/sessions/:session_id/session',
  25. Session: '/sessions/:session_id',
  26. SessionSticky: '/sessions/:session_id/sticky',
  27. RecentSessions: '/sessions/recent',
  28. Topics: '/sessions/:session_id/topics',
  29. Topic: '/sessions/:session_id/topics/:topic_id',
  30. TopicEnded: '/sessions/:session_id/topics/:topic_id/ended',
  31. Messages: '/sessions/:session_id/messages',
  32. MessagesByTopic: '/sessions/:session_id/topics/:topic_id/messages',
  33. Message: '/sessions/:session_id/messages/:message_id',
  34. SessionsUnreadMessageCount: '/sessions/unread_message_count',
  35. SessionUnreadMessageCount: '/sessions/:session_id/unread_message_count',
  36. SessionUnreadMessages: '/sessions/:session_id/messages/unread',
  37. Participants: '/sessions/:session_id/participants',
  38. ParticipantsAvatar: '/sessions/:session_id/participants/avatars',
  39. Participant: '/sessions/:session_id/participants/:participant_id',
  40. ParticipantAvatar: '/session/:session_id/participants/:participant_id/avatars'
  41. },
  42. Search: {
  43. Search: '/search'
  44. },
  45. Consult: {
  46. getHealthConsult: '/sessions/topics',
  47. updateConsultStatus: '/sessions/:session_id/topics'
  48. }
  49. }
  50. export default {
  51. Application: {
  52. // 获取应用角标数
  53. getBadgeNo(userId) {
  54. return http.imget(ENDPOINTS.Application.BadgeNo, { user_id: userId })
  55. }
  56. },
  57. Management: {
  58. getDbStatus() {
  59. return http.imget(ENDPOINTS.Management.DbStatus)
  60. }
  61. },
  62. Users: {
  63. // 登录
  64. login(userId, token, clientId, platform) {
  65. return http.impost(ENDPOINTS.Users.Login,
  66. { user_id: userId, token: token, client_id: clientId, platform: platform })
  67. },
  68. // 退出
  69. logout(userId) {
  70. return http.imdelete(ENDPOINTS.Users.Logout,
  71. { user_id: userId })
  72. },
  73. // 更新用户状态
  74. updateStatus(userId, appInBg) {
  75. return http.imput(ENDPOINTS.Users.UserStatus.replace(USER_PATH, userId),
  76. { app_in_bg: appInBg })
  77. }
  78. },
  79. Sessions: {
  80. // 创建MUC会话
  81. createMucSession(userId, peerId, sessionName) {
  82. var p = {}
  83. p[userId] = 0
  84. p[peerId] = 0
  85. return http.impost(ENDPOINTS.Sessions.Sessions,
  86. {
  87. session_id: userId,
  88. session_type: 1,
  89. session_name: sessionName,
  90. participants: JSON.stringify(p)
  91. })
  92. },
  93. // 创建P2P会话
  94. createP2pSession(userId, peerId, sessionName) {
  95. var p = {}
  96. p[userId] = 0
  97. p[peerId] = 0
  98. return http.impost(ENDPOINTS.Sessions.Sessions,
  99. { session_type: 2, session_name: sessionName, participants: JSON.stringify(p) })
  100. },
  101. createGroupSession(sessionId, sessionType, sessionName, participants, videoconferencing) {
  102. //sessionType: 3-团队群聊,4-临时群聊
  103. var p = {}
  104. for (var k in participants) {
  105. p[k] = 0
  106. }
  107. console.log("create group session");
  108. return http.impost(ENDPOINTS.Sessions.Sessions,
  109. { session_id: sessionId, session_type: sessionType, session_name: sessionName, participants: JSON.stringify(p), videoconferencing: videoconferencing? 1 : 0 })
  110. },
  111. /**
  112. * @api sessinos缓存读取
  113. * @param {string} userId 登录者的uid
  114. * @param {string} page 分页
  115. * @param {string} size 大小
  116. * @param {string} status isPatient判断是否为咨询病人1是0不是
  117. * @apiVersion 0.0.1
  118. * @desc 获取与患者发生的会话,实际上这些是MUC会话
  119. **/
  120. getSessionsWithPatient(userId, page, size, status) {
  121. return http.imget(ENDPOINTS.Sessions.Sessions,
  122. { user_id: userId, business_type: '2', status: status, page: page, size: size })
  123. },
  124. // 获取与医生相关的会话,实际上这些是P2P,群聊和讨论组
  125. getSessionsWithDoctor(userId, page, size) {
  126. return http.imget(ENDPOINTS.Sessions.Sessions,
  127. { user_id: userId, page: page, size: size ,videoconferencing:1})
  128. // return http.imget(ENDPOINTS.Sessions.Sessions,
  129. // { user_id: userId, business_type: '1', page: page, size: size ,videoconferencing:1})
  130. },
  131. // 获取最近7天内的会话列表
  132. getRecentSessions(userId) {
  133. return http.imget(ENDPOINTS.Sessions.RecentSessions,
  134. { user_id: userId, date_span: 7 })
  135. },
  136. // 获取与患者的最近会话
  137. getRecentSessionsWithPatient(userId) {
  138. return http.imget(ENDPOINTS.Sessions.RecentSessions,
  139. { session_type: 1, user_id: userId })
  140. },
  141. // 获取与医生的最近会话,包括P2P、群聊与讨论组
  142. getRecentSessionsWithDoctor(userId) {
  143. return http.imget(ENDPOINTS.Sessions.RecentSessions,
  144. { session_type: '2, 3', userId: userId })
  145. },
  146. // 置顶会话
  147. stickSession(userId, sessionId) {
  148. return http.imput(ENDPOINTS.Sessions.SessionSticky.replace(SESSION_PATH, sessionId),
  149. { user_id: userId })
  150. },
  151. // 取消会话置顶
  152. unstickSession(userId, sessionId) {
  153. return http.imput(ENDPOINTS.Sessions.SessionSticky.replace(SESSION_PATH, sessionId),
  154. { user_id: userId })
  155. },
  156. // 获取所有咨询
  157. getTopics(sessionId) {
  158. return http.imget(ENDPOINTS.Sessions.Topics.replace(SESSION_PATH, sessionId))
  159. },
  160. // 创建咨询
  161. createTopic(sessionId, userId) {
  162. return http.impost(ENDPOINTS.Sessions.Topics.replace(SESSION_PATH, sessionId),
  163. { user_id: userId })
  164. },
  165. // 结束咨询
  166. endTopic(sessionId, userId) {
  167. return http.imput(ENDPOINTS.Sessions.Topics.replace(SESSION_PATH, sessionId),
  168. { user_id: userId })
  169. },
  170. // 咨询是否已结束
  171. isTopicEnded(sessionId, topicId) {
  172. return http.imget(ENDPOINTS.Sessions.TopicEnded.replace(SESSION_PATH, sessionId).replace(TOPIC_PATH, topicId),
  173. { session_id: sessionId, topic_id: topicId })
  174. },
  175. // 发送消息,不论是何种会话,均不需要指定会话对象是谁,只需要向会话本身发送消息即可
  176. sendMessage(sessionId, sendorCode, sendorName, content, contentType) {
  177. // var userAgent = plus.storage.getItem("userAgent");
  178. var view = 0 // 记录观察者模式
  179. // if(JSON.parse(userAgent).observer == "1"){
  180. // view = 1;
  181. // }
  182. return http.impost(ENDPOINTS.Sessions.Messages.replace(SESSION_PATH, sessionId),
  183. { sender_id: sendorCode, sender_name: sendorName, content_type: contentType, content: content, view: view })
  184. },
  185. // 按会话获取消息
  186. getMessagesBySession(sessionId, userCode, page, pagesize, startMsgId, endMsgId, contentType, isoffset) {
  187. return http.imget(ENDPOINTS.Sessions.Messages.replace(SESSION_PATH, sessionId),
  188. {
  189. page: page || 1,
  190. pagesize: pagesize || 20,
  191. end_msg_id: endMsgId || '',
  192. start_msg_id: startMsgId || '',
  193. user: userCode,
  194. session_id: sessionId,
  195. content_type: contentType || '',
  196. isoffset: isoffset || ''
  197. })
  198. },
  199. // 按议题获取消息
  200. getMessagesByTopic(sessionId, topicId, startMessageId, count) {
  201. return http.imget(ENDPOINTS.Sessions.MessagesByTopic.replace(SESSION_PATH, sessionId),
  202. { start_message_id: startMessageId, count: count })
  203. },
  204. // 获取所有会话的未读消息数
  205. getAllSessionUnreadMessageCount(userId) {
  206. return http.imget(ENDPOINTS.Sessions.SessionsUnreadMessageCount,
  207. { user_id: userId })
  208. },
  209. // 获取指定会话的未读消息数
  210. getSessionUnreadMessageCount(sessionId, userId) {
  211. return http.imget(ENDPOINTS.Sessions.SessionUnreadMessageCount.replace(SESSION_PATH, sessionId),
  212. { user_id: userId })
  213. },
  214. // 获取指定会话的未读消息
  215. getSessionUnreadMessages(sessionId, userId) {
  216. return http.imget(ENDPOINTS.Sessions.SessionUnreadMessages.replace(SESSION_PATH, sessionId),
  217. { user_id: userId })
  218. },
  219. // 添加会话成员
  220. addParticipant(sessionId, participantId) {
  221. return http.imput(ENDPOINTS.Sessions.Participant.replace(SESSION_PATH, sessionId).replace(PARTICIPANT_PATH, participantId),
  222. { participant_id: participantId })
  223. },
  224. // 获取会话成员列表
  225. getParticipants(sessionId) {
  226. return http.imget(ENDPOINTS.Sessions.Participants.replace(SESSION_PATH, sessionId))
  227. },
  228. // 移除会话成员
  229. removeParticipant(sessionId, participantId) {
  230. return http.imdelete(ENDPOINTS.Sessions.Participant.replace(SESSION_PATH, sessionId).replace(PARTICIPANT_PATH, participantId))
  231. },
  232. // 获取会话成员头像
  233. getParticipantAvatar(sessionId, participantId) {
  234. return http.imget(ENDPOINTS.Sessions.ParticipantAvatar.replace(SESSION_PATH, sessionId).replace(PARTICIPANT_PATH, participantId))
  235. },
  236. // 获取会话成员头像
  237. getParticipantsAvatars(sessionId) {
  238. return http.imget(ENDPOINTS.Sessions.ParticipantsAvatar.replace(SESSION_PATH, sessionId))
  239. },
  240. // 根据session_id获取会话信息
  241. getSessionsInfo(sessionId, userId) {
  242. return http.imget(ENDPOINTS.Sessions.getSessionsInfo.replace(SESSION_PATH, sessionId),
  243. { user_id: userId })
  244. }
  245. },
  246. Search: {
  247. Doctor: {
  248. // 搜索所有对象:医生,会话及消息
  249. searchAll(userId, keyword, excludeTopicEndedSessions) {
  250. return http.imget(ENDPOINTS.Search.Search,
  251. { user_id: userId, target_role: 'doctor', entity_type: 'all', keyword: keyword, exclude_topic_ended_sessions: excludeTopicEndedSessions })
  252. },
  253. // 搜索医生
  254. searchDoctors(userId, keyword, excludeTopicEndedSessions, page, size) {
  255. return http.imget(ENDPOINTS.Search.Search,
  256. { user_id: userId, target_role: 'doctor', entity_type: 'user', keyword: keyword, exclude_topic_ended_sessions: excludeTopicEndedSessions, page: page, size: size })
  257. },
  258. // 搜索会话
  259. searchSessions(userId, keyword, excludeTopicEndedSessions, page, size) {
  260. return http.imget(ENDPOINTS.Search.Search,
  261. { user_id: userId, target_role: 'doctor', entity_type: 'session', keyword: keyword, exclude_topic_ended_sessions: excludeTopicEndedSessions, page: page, size: size })
  262. },
  263. // 搜索会话消息
  264. searchMessages(userId, keyword, page, size) {
  265. return http.imget(ENDPOINTS.Search.Search,
  266. { user_id: userId, target_role: 'doctor', entity_type: 'message', keyword: keyword, exclude_topic_ended_sessions: false, page: page, size: size })
  267. }
  268. },
  269. Patient: {
  270. // 搜索所有对象:患者,会话及消息
  271. searchAll(userId, keyword, excludeTopicEndedSessions) {
  272. return http.imget(ENDPOINTS.Search.Search,
  273. { user_id: userId, target_role: 'patient', entity_type: 'all', keyword: keyword, exclude_topic_ended_sessions: excludeTopicEndedSessions })
  274. },
  275. // 搜索患者
  276. searchPatient(userId, keyword, excludeTopicEndedSessions, page, size) {
  277. return http.imget(ENDPOINTS.Search.Search,
  278. { user_id: userId, target_role: 'patient', entity_type: 'user', keyword: keyword, exclude_topic_ended_sessions: excludeTopicEndedSessions, page: page, size: size })
  279. },
  280. // 搜索会话
  281. searchSessions(userId, keyword, excludeTopicEndedSessions, page, size) {
  282. return http.imget(ENDPOINTS.Search.Search,
  283. { user_id: userId, target_role: 'patient', entity_type: 'session', keyword: keyword, exclude_topic_ended_sessions: excludeTopicEndedSessions, page: page, size: size })
  284. },
  285. // 搜索会话消息
  286. searchMessages(userId, keyword, page, size) {
  287. return http.imget(ENDPOINTS.Search.Search,
  288. { user_id: userId, target_role: 'patient', entity_type: 'message', keyword: keyword, exclude_topic_ended_sessions: false, page: page, size: size })
  289. }
  290. }
  291. },
  292. Consult: {
  293. // 获取健康咨询列表
  294. getHealthConsult(user, status, page, pagesize) {
  295. return http.imget(ENDPOINTS.Consult.getHealthConsult,
  296. { user: user, status: status, page: page, pagesize: pagesize })
  297. },
  298. // 更新咨询状态
  299. updateConsultStatus(sessionId, id, status) {
  300. return http.imput(ENDPOINTS.Consult.updateConsultStatus.replace(SESSION_PATH, sessionId),
  301. { topic_id: id, data: JSON.stringify({ status: status }) })
  302. }
  303. }
  304. }