account.js
2.82 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/**
* 个人中心---账户安全
* @author gaohongwei <hongwei.gao@yoho.cn>
* @date: 2016/8/30
*/
'use strict';
const mRoot = '../models';
const accountService = require(`${mRoot}/account-service`); // user 页 model
/**
* 账户安全
* @param {[type]} req [description]
* @param {[type]} res [description]
* @return {[type]} [description]
*/
exports.index = (req, res, next) => {
let channel = req.query.channel || req.cookies._Channel || 'boys';
let uid = '8039836';
let responseData = {
module: 'home',
page: 'account'
};
// 真实数据输出
accountService.getAccountInfo(channel, uid).then(result => {
responseData.user = result;
responseData.headerData = result.headerData;
responseData.meAccountPage = true;
responseData.account = {
allAccounts: result
};
res.render('home/account/account', responseData);
}).catch(next);
};
/**
* 个人中心-修改密码身份验证-page1/2/3
*/
exports.userPwd = (req, res, next) => {
let channel = req.query.channel || req.cookies._Channel || 'boys';
let uid = '8039836';
let responseData = {
module: 'home',
page: 'validate'
};
req.uid = uid;
// 真实数据输出
accountService.userPwd(req, res, channel).then(result => {
responseData.headerData = result.headerData;
Object.assign(responseData, result);
res.render('home/account/userpwd', responseData);
}).catch(next);
};
/**
* 个人中心-邮箱验证身份-page1/2/3
*/
exports.userEmail = (req, res, next) => {
let channel = req.query.channel || req.cookies._Channel || 'boys';
let uid = '8039836';
let responseData = {
module: 'home',
page: 'validate'
};
req.uid = uid;
// 真实数据输出
accountService.userEmail(req, res, channel).then(result => {
responseData.headerData = result.headerData;
Object.assign(responseData, result);
res.render('home/account/email', responseData);
}).catch(next);
};
/**
* 个人中心-手机验证身份-page1/2/3
*/
exports.userMobile = (req, res, next) => {
let channel = req.query.channel || req.cookies._Channel || 'boys';
let uid = '8039836';
let responseData = {
module: 'home',
page: 'validate'
};
req.uid = uid;
// 真实数据输出
accountService.userMobile(req, res, channel).then(result => {
responseData.headerData = result.headerData;
Object.assign(responseData, result);
res.render('home/account/mobile', responseData);
}).catch(next);
};
/**
* 分-验证图形验证码-ajax
*/
exports.checkVerifyCode = (req, res, next) => {
// 真实数据输出
accountService.checkVerifyCode(req).then(result => {
res.json(result);
}).catch(next);
};