students.js
4.45 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/**
* 学生营销数据处理
* @date: 2016-08-06 14:24:04
* @author: name<emial@yoho.cn>
*/
'use strict';
const api = global.yoho.API;
const queryString = require('querystring');
const _ = require('lodash');
const studentsApi = require('./students-api');
const stuHandler = require('./students-handler');
const helpers = global.yoho.helpers;
const crypto = global.yoho.crypto;
// const productProcess = require(`${utils}/product-process`);
// const _ = require('lodash');
const headerModel = require('../../../doraemon/models/header');
const serviceApi = global.yoho.ServiceAPI;
// 学生营销资源码
const studentsCode = '989396a17443bf61e3e269702e51ef04'; // h5 a83b7d55324fb65f96c1f85a3387ebd8
// const studentsCode = 'a83b7d55324fb65f96c1f85a3387ebd8'; // h5 a83b7d55324fb65f96c1f85a3387ebd8
/**
* 获取学生营销页面数据
* @params channel Object 频道
* @return name returnType 返回值描述
*/
exports.getStudentsData = (channel, req) => {
let apiMethod = [
headerModel.requestHeaderData(channel),
// 资源位数据
serviceApi.get('operations/api/v5/resource/get', {content_code: studentsCode}),
// 认证总数
studentsApi.getVerifiedTotal(),
// 商品数据
studentsApi.getStuProducts()
];
if (req.user.uid && req.query.collegeName && req.query.educationDegree &&
req.query.enrollmentYear && req.query.sign) {
apiMethod.push(
studentsApi.verifyStudent(req.user.uid, req.query.collegeName,
req.query.educationDegree, req.query.enrollmentYear)
);
}
return api.all(apiMethod).then(result => {
let responseData = {
module: 'product',
page: 'students',
realData: {
sortItem: [
{title: '学生权益介绍', href: 'stu-rights'},
{title: '我要验证身份', href: 'stu-identity'},
{title: '学生热门单品', href: 'stu-good'},
{title: '更多活动推荐', href: 'stu-activity'}
],
identityItem: {
stuNum: []
}
},
footerTop: true
};
// 头部数据
Object.assign(responseData, result[0]);
// 资源位数据
if (result[1].code === 200) {
Object.assign(responseData.realData, stuHandler.studentResource(result[1].data));
}
if (result[2].code === 200) {
responseData.realData.identityItem.stuNum = stuHandler.studentsNum(result[2].data);
}
if (result[3].code === 200) {
Object.assign(responseData.realData, {proItem: stuHandler.stuProducts(result[3].data.product_list)});
}
if (result[4]) {
Object.assign(responseData.realData, {verifyRusult: stuHandler.stuVerify(result[4])});
}
return responseData;
});
};
/**
* 获取学校地区数据
* @return Object 接口数据
*/
exports.getSchoolArea = studentsApi.getArea;
/**
* 根据地区码查询学校列表
* @params areaCode int 地区码
* @return Object 接口数据
*/
exports.getSchoolList = studentsApi.getSchool;
/**
* 学历层次
* @params areaCode int 地区码
* @return Object 接口数据
*/
exports.getEduLevel = studentsApi.getEduLevelList;
/**
* 身份验证
* @params areaCode int 地区码
* @return Object 接口数据
*/
exports.verifyIdentity = (uid, params) => {
let pageUrl = helpers.urlFormat('/product/students', {
collegeName: params.collegeName,
educationDegree: params.educationDegree,
enrollmentYear: params.enrollmentYear
}) + '&';
return studentsApi.verifyIdentity(uid, params.certNo, params.name, pageUrl);
};
/**
* 学生验证
* @params areaCode int 地区码
* @return Object 接口数据
*/
exports.verifyStudents = (params) => {
return studentsApi.verifyStudent(params.uid, params.collegeName, params.educationDegree, params.enrollmentYear);
};
/**
* 获取优惠券领取状态
* @params
* @return
*/
exports.userAcquireStatus = (uid, couponIds) => {
let ids = couponIds.map(coupon => crypto.decrypt(null, coupon)).join(',');
return studentsApi.userAcquireStatus(uid, ids).then(result => {
if (result.code === 200) {
_.forEach(result.data, (value) => {
value.couponId = crypto.encryption(null, value.couponId + '');
});
}
return result;
});
};