123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- /**
- * 会话接口。
- *
- * author: Sand
- * since: 12/15/2016
- */
- "use strict";
- let express = require('express');
- let router = express.Router();
- let http = require('http');
- let log = require('../../util/log.js');
- let ObjectUtil = require("../../util/object.util.js");
- let ControllerUtil = require('../../util/controller.util');
- let Sessions = require('../../models/sessions/sessions');
- let Messages = require('../../models/messages/messages');
- let Participants = require('../../models/sessions/participants');
- const SESSION_TYPES = require('../../include/commons').SESSION_TYPES;
- const APIv2 = require('../../include/endpoints').APIv2;
- /**
- * 创建会话。对MUC会话而言,需要创建的是议题,如果是第一次创建议题,那应该附带创建会话,而不是直接创建会话。
- *
- * session_type:1表示MUC会话,2表示P2P,3表示群会话,4表示临时讨论组
- * users 讨论组包含的用户标示
- * sessionId 会话ID
- *
- * 请求URL: /sessions
- * 参数:
- * {
- * session_id: 会话ID,非必须,仅对群消息使用。
- * session_type: 会话类型,必须。
- * session_name: 会话名称,
- * participants: 此会话的成员列表,格式:["userId1:role", "userId2:role"],用户的ID及角色。
- * }
- */
- router.post("/", function (req, res) {
- let payload = req.body;
- let testing = ObjectUtil.fieldsCheck(payload, 'participants', 'session_name', 'session_type');
- if (!testing.pass) {
- throw testing.message;
- }
- let participants = payload.participants;
- let sessionName = payload.session_name;
- let sessionType = payload.session_type;
- let sessionId = null;
- if (payload.session_type == SESSION_TYPES.GROUP||payload.session_type == SESSION_TYPES.MUC) {
- if(!payload.hasOwnProperty('session_id') && payload.session_id.trim().length > 0){
- throw {httpStatus: 406, message: 'Field "session_id" is necessary and cannot be empty for GROUP session.'};
- }
- sessionId = payload.session_id;
- }
- let sessions = new Sessions();
- ControllerUtil.regModelEventHandler(sessions, res);
- sessions.createSession(sessionId, sessionName, sessionType, participants);
- });
- /**
- * 获取会话列表
- *
- * 请求URL /sessions?user_id=3121&page=0&size=10
- */
- router.get("/", function (req, res) {
- let page = req.query.page;
- let size = req.query.size;
- let userId = req.query.user_id;
- let businessType = req.query.business_type;
- if (!page) {
- throw {httpStatus: 406, message: 'Missing page.'};
- }
- if (!size) {
- throw {httpStatus: 406, message: 'Missing size.'};
- }
- if (!userId) {
- throw {httpStatus: 406, message: 'Missing user.'};
- }
- let sessions = new Sessions();
- ControllerUtil.regModelEventHandler(sessions, res);
- sessions.getUserSessions(userId, page, size,businessType);
- });
- /**
- * 某个聊天记录置顶操作
- *
- * 请求URL /stick?user=3121&sessionId=testsessionmsg1
- */
- router.post(APIv2.Sessions.SessionSticky, function (req, res) {
- let user = req.query.user;
- let sessionId = req.query.sessionId;
- if (!user) {
- throw {httpStatus: 406, message: 'Missing user.'};
- }
- if (!sessionId) {
- throw {httpStatus: 406, message: 'Missing sessionId.'};
- }
- let sessions = new Sessions();
- ControllerUtil.regModelEventHandler(sessions, res);
- sessions.stickSession(sessionId, user);
- });
- /**
- * 取消置顶
- * 请求URL /cancelStick?user=3121&sessionId=testsessionmsg1
- */
- router.delete(APIv2.Sessions.SessionSticky, function (req, res) {
- let user = req.query.user;
- let sessionId = req.query.sessionId;
- if (!user) {
- throw {httpStatus: 406, message: 'Missing user.'};
- }
- if (!sessionId) {
- throw {httpStatus: 406, message: 'Missing sessionId.'};
- }
- let sessions = new Sessions();
- ControllerUtil.regModelEventHandler(sessions, res);
- sessions.cancelStickSession(sessionId, user);
- });
- /**
- * 获取会话成员。
- */
- router.get(APIv2.Sessions.Participants, function (req, res) {
- let sessionId = req.params.session_id;
- let participants = new Participants();
- ControllerUtil.regModelEventHandler(participants, res);
- participants.getParticipants(sessionId);
- });
- /**
- * 获取会话成员头像列表。
- */
- router.get(APIv2.Sessions.ParticipantsAvatar, function (req, res) {
- let sessionId = req.params.session_id;
- let participants = new Participants();
- ControllerUtil.regModelEventHandler(participants, res);
- participants.getParticipantsAvatar(sessionId);
- });
- /**
- * 增加成员
- * user:移除的人员
- * sessionId 会话ID
- */
- router.put(APIv2.Sessions.Participant, function (req, res) {
- let user = req.query.user;
- if (!user) {
- throw {httpStatus: 406, message: 'Missing user.'};
- }
- let sessionId = req.query.sessionId;
- if (!sessionId) {
- throw {httpStatus: 406, message: 'Missing sessionId.'};
- }
- let participants = new Participants();
- ControllerUtil.regModelEventHandler(sessions, res);
- participants.addUser(sessionId, user);
- });
- /**
- * 移除成员
- * user:移除的人员
- * sessionId 会话ID
- */
- router.delete(APIv2.Sessions.Participant, function (req, res) {
- let user = req.query.user;
- if (!user) {
- throw {httpStatus: 406, message: 'Missing user.'};
- }
- let sessionId = req.query.sessionId;
- if (!sessionId) {
- throw {httpStatus: 406, message: 'Missing sessionId.'};
- }
- let participants = new Participants();
- ControllerUtil.regModelEventHandler(sessions, res);
- participants.removeUser(sessionId, user);
- });
- /**
- * 发送消息
- *
- * 请求URL:
- * /sessions/:session_id/messages
- *
- * 消息体:
- * {
- * sender_id: bea851fc,
- * sender_name: 李毅,
- * content_type: 1,
- * content: 李医生,你好
- * }
- */
- router.post(APIv2.Sessions.Messages, function (req, res) {
- let payload = req.body;
- let testing = ObjectUtil.fieldsCheck(payload, "sender_id", "sender_name", "content_type", "content");
- if (!testing.pass) {
- throw {httpStatus: 406, message: testing.message}
- }
- let sessions = new Sessions();
- ControllerUtil.regModelEventHandler(sessions, res);
- payload.timestamp = new Date();
- sessions.saveMessageBySession(req.params.session_id, payload);
- });
- /**
- * 获取消息
- *
- * 请求URL:
- * /sessions/:session_id/messages?session_id=blabla&user_id=abc&start_message_id=100&end_message_id=20
- */
- router.get(APIv2.Sessions.Messages, function (req, res) {
- let startMsgId = req.query.start_msg_id;
- let endMsgId = req.query.end_msg_id;
- let pagesize = req.query.pagesize;
- let page = req.query.page;
- let user = req.query.user;
- let sessionId = req.query.session_id;
- let content_type = req.query.content_type;
- let isoffset = req.query.isoffset;
- if (!user) {
- throw {httpStatus: 406, message: 'Missing user.'};
- }
- if (!sessionId) {
- throw {httpStatus: 406, message: 'Missing session_id.'};
- }
- if(!pagesize){
- pagesize = 20;
- }
- if(!page){
- page = 1;
- }
- if(content_type){
- let messages = new Messages();
- ControllerUtil.regModelEventHandler(messages, res);
- messages.getMessageByType(sessionId,page,pagesize,content_type)
- }else{
- let sessions = new Sessions();
- ControllerUtil.regModelEventHandler(sessions, res);
- sessions.getMessages(sessionId, user, startMsgId,endMsgId,page,pagesize,isoffset);
- }
- });
- router.get(APIv2.Sessions.SessionUnreadMessages, function (req, res) {
- let sessionId = req.params.session_id;
- let userId = req.query.user_id;
- let sessions = new Sessions();
- ControllerUtil.regModelEventHandler(sessions, res);
- sessions.getSessionUnreadMessages(sessionId, userId);
- });
- /**
- * 获取所有会话未读消息数。
- *
- * 请求URL:/sessions/unread_message_count?user_id=xyz
- */
- router.get(APIv2.Sessions.SessionsUnreadMessageCount, function (req, res) {
- let userId = req.query.user_id;
- let sessions = new Sessions();
- ControllerUtil.regModelEventHandler(sessions, res);
- sessions.getAllSessionsUnreadMessageCount(userId);
- });
- /**
- * 获取指定会话未读消息数
- *
- * 请求URL
- * /sessions/:session_id/unread_message_count?user_id=xyz
- */
- router.get(APIv2.Sessions.SessionUnreadMessageCount, function (req, res) {
- let sessionId = req.params.session_id;
- let userId = req.query.user_id;
- let sessions = new Sessions();
- ControllerUtil.regModelEventHandler(sessions, res);
- sessions.getSessionUnreadMessageCount(sessionId, userId);
- });
- module.exports = router;
|