chat.js
2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
'use strict';
const orderModel = require('../../home/models/order');
const crypto = global.yoho.crypto;
const imApi = require('../../serverAPI/im');
const imModel = require('../models/im');
const helpers = global.yoho.helpers;
const sign = global.yoho.sign;
exports.appAdapter = (req, res, next) => {
if (req.yoho.isApp) {
req.query.client_secret = req.yoho.client_secret;
if (sign.checkSign(req.query)) {
let uid = (req.query.uid || '').trim();
req.user.uid = uid;
}
}
next();
};
exports.page = (req, res) => {
res.render('chat/index', {
module: 'service',
page: 'chat',
pageStyle: 'service-chat',
width750: true,
localCss: true,
imServer: global.yoho.config.domains.imServer,
userData: {
uid: req.user.uid,
encrypteduid: req.user.ENCRYPTION_UID || (crypto.encryption(null, req.user.uid + '' || '0')),
avatar: helpers.image(req.user.AVATAR, 100, 100),
uname: req.user.NAME
}
});
};
exports.getOrders = (req, res, next) => {
orderModel.getOrders({
type: req.query.type || 1,
page: req.query.page || 1,
gender: req.query.gender || '1,3',
yh_channel: req.query.channel || 1,
uid: req.user.uid
}).then(result => {
res.render('chat/chat-order', {
layout: false,
orders: result
});
}).catch(next);
};
/**
* 获取历史消息
* Request:
*
*/
exports.msghistory = (req, res) => {
const uid = req.user.uid;
imApi.fetchImHistory(uid).then(result => {
res.json(result);
});
};
/**
* Request: 发表留言
* type: POST
* params:
* conversationId 会话id
* content 留言内容
*/
exports.saveMSG = (req, res) => {
const uid = req.user.uid;
const conversationId = req.body.conversationId;
const content = req.body.content;
imApi.saveMessage(uid, conversationId, content)
.then(result => {
res.json(result);
});
};
/**
* Request: 获取订单
* type: GET
*
* TODO:
* 1. 分页, 目前接口不支持
* 2. 失败情况
*/
exports.fetchOrders = (req, res) => {
const uid = req.user.uid;
imApi.fetchOrderList(uid)
.then(result => {
imModel.handleOrderList(result.data);
res.json(result);
});
};