seckill.js
6.03 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/**
* 秒杀结算
*/
'use strict';
const _ = require('lodash');
const crypto = global.yoho.crypto;
const co = require('bluebird').coroutine;
const seckillModel = require('../models/seckill');
const headerModel = require('../../../doraemon/models/header'); // 头部model
const BAD_REQUEST = '非法请求';
const SLAT = 'yohobuyseckill98';
exports.ensure = (req, res, next) => {
const sku = parseInt(req.query.sku, 10);
const skn = parseInt(req.query.skn, 10);
const uid = req.user.uid;
let activityId;
let orderInfo = req.cookies['order-info'];
try {
orderInfo = JSON.parse(req.cookies['order-info']);
} catch (e) {
orderInfo = {};
}
// require skn, sku;
if (!(sku && skn)) {
return next();
}
co(function*() {
let paymentOption = {
buy_number: 1,
yoho_coin_mode: 0, // 默认不使用有货币
product_sku: sku,
sku_type: 'S',
uid
};
let skillData = yield seckillModel.skillData(skn); // 根据skn查活动信息
let view = {
orderEnsure: false,
message: ''
};
skillData = skillData.data;
// 不在秒杀中
if (skillData && (skillData.status !== 2)) {
return res.redirect('/product/seckill');
}
if (!(
skillData &&
skillData.secKillSku.some(obj => obj.productSku === sku) // skn has sku;
)) {
view.message = '挤爆啦,系统繁忙';
return res.render('order-ensure', Object.assign({
module: 'cart',
page: 'seckill',
pageHeader: headerModel.setNav({
navTitle: '确认订单',
backUrl: '/product/' + skn + '.html' // 商品url改版
}),
}, view));
}
paymentOption.activity_id = activityId = skillData.activityId;
let orderComputerData;
if (orderInfo) {
orderComputerData = yield seckillModel.compute(_.assign(paymentOption, {
delivery_way: orderInfo.deliveryId || 1,
payment_type: orderInfo.paymentType || 1,
use_yoho_coin: orderInfo.yohoCoin || 0
}));
}
// 获取结算 数据
let paymentInfo = yield seckillModel.payment(paymentOption, orderInfo, orderComputerData.data);
if (paymentInfo.code !== 200) {
view = {
orderEnsure: false,
message: paymentInfo.message
};
// hotfix: nginx 接口限流, code:9999991时没message 信息
if (!view.message) {
view.message = '挤爆啦,系统繁忙';
}
} else {
// 渲染
view = Object.assign({
seckill: skillData,
orderEnsure: true,
sku,
}, paymentInfo.data);
}
res.locals.title = '确认订单';
res.render('order-ensure', Object.assign({
module: 'cart',
page: 'seckill',
pageHeader: headerModel.setNav({
navTitle: '确认订单',
backUrl: '/product/' + skn + '.html' // 商品url改版
}),
cartToken: crypto.encryption(SLAT, [sku, activityId].join(''))
}, view));
})().catch(next);
};
exports.compute = (req, res, next) => {
const uid = req.user.uid,
sku = req.body.sku,
paymentType = parseInt(req.body.paymentType || 1, 10),
activityId = req.body.activityId;
if (!req.xhr) {
return next(400);
}
// 必填字段
if ([uid, sku, activityId, paymentType].some(field => !field)) {
return res.status(400).json({
code: 400,
msg: BAD_REQUEST
});
}
const options = {
sku_type: 'S', // 秒杀
buy_number: 1,
yoho_coin_mode: 1,
payment_type: paymentType,
uid: req.user.uid,
product_sku: sku,
delivery_way: req.body.deliveryId || 1,
use_yoho_coin: req.body.yohoCoin || 0,
activity_id: activityId
};
return seckillModel.compute(options)
.then(result => {
res.json(result.data);
})
.catch(next);
};
exports.submit = (req, res, next) => {
const uid = req.user.uid,
sku = req.body.sku,
activityId = req.body.activityId,
deliveryTime = parseInt(req.body.deliveryTime, 10),
deliveryWay = parseInt(req.body.deliveryWay, 10),
paymentId = parseInt(req.body.paymentId, 10),
paymentType = parseInt(req.body.paymentType, 10),
token = req.body.cartToken;
let addressId = req.body.addressId || '';
if (!req.xhr) {
return next();
}
let compareToken = crypto.encryption(SLAT, [sku, activityId].join(''));
if (token !== compareToken) {
return next();
}
if (!addressId) {
return res.json({code: 400, message: '请选择地址'});
} else {
addressId = parseInt(crypto.decrypt(null, req.body.addressId), 10);
}
if ([uid, sku, activityId, addressId, deliveryTime,
deliveryWay, paymentId, paymentType
].some(field => !field)) {
return res.status(400).json({
code: 400,
message: BAD_REQUEST
});
}
const options = {
sku_type: 'S',
buy_number: 1,
invoices_title: req.body.invoicesTitle || '',
invoices_type_id: req.body.invoicesTypeId || '',
use_yoho_coin: parseFloat(req.body.useYohoCoin) || 0,
remark: req.body.remark || '',
address_id: addressId,
delivery_time: deliveryTime,
delivery_way: deliveryWay,
payment_id: paymentId,
payment_type: paymentType,
product_sku: sku,
activity_id: activityId,
uid,
ip: req.ip || ''
};
return seckillModel.submit(options)
.then(result => {
res.clearCookie('order-info');
res.json(result);
})
.catch(next);
};