cart.js
6.76 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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/**
* Created by TaoHuang on 2016/10/19.
*/
'use strict';
const co = require('bluebird').coroutine;
const service = require('../models/cart-service');
const helper = require('../models/cart-helper');
const ghelper = require('../../guang/models/guang-helper');
const simpleHeaderModel = require('../../../doraemon/models/simple-header');
const getProductInfo = (req, res, next) => {
let pid = req.query.productId || '';
service.getProductInfoAsync(pid).then((result) => {
return res.render('goods-detail', Object.assign({
layout: false
}, result));
}).catch(next);
};
/**
* 设置购物车COOKIE信息
*/
const setShoppingCookie = (req) => {
let uid = req.user.uid || true;
let shoppingKey = helper.getShoppingKeyByCookie(req);
return service.getCartCount(uid, shoppingKey).then(ret => {
if (ret && ret.data && ret.data.cart_goods_count) {
req.cookies('_g', {
_k: shoppingKey,
_nac: ret.data.cart_goods_count,
_ac: 0,
_r: 1
});
}
});
};
/**
* 我的购物车
*/
const cart = (req, res, next) => {
let uid = req.user.uid;
let shoppingKey = helper.getShoppingKeyByCookie(req);
let cartDelList = req.cookies['cart-del-list'];
if (cartDelList) {
req.cookies['cart-del-list'] = '';
}
service.getCartData(uid, shoppingKey, cartDelList)
.then(ret => {
console.log(JSON.stringify(ret));
return res.render('cart', {
module: 'cart',
page: 'cart',
simpleHeader: simpleHeaderModel.setSimpleHeaderData(),
uid: uid,
cartEnsure: {
loginUrl: ''
}
});
})
.catch(next);
};
/**
* 加入购物车
*/
const cartAdd = () => {
co(function * (){
let uid = req.user.uid;
let shoppingKey = helper.getShoppingKeyByCookie(req);
let productSku = req.body.productSku;
let buyNumber = req.body.buyNumber || 1;
let goodsType = req.body.goodsType || 0;
let promotionId = req.body.promotionId || 0
let isEdit = req.body.isEdit || 0;
let result = yield service.addToCart(productSku, buyNumber, goodsType, isEdit, promotionId, uid, shoppingKey);
// 设置加入购物车凭证到客户端浏览器
if(!shoppingKey && result && result.data && result.data.shopping_key) {
// req.cookies['_SPK'] = result.data.shopping_key
//$this->setCookie('_SPK', $result['data']['shopping_key'], time() + 86400 * 360);
}
// 老站购物车需要的COOKIE
if (result && result.data && result.data.shopping_key) {
/*$this->setCookie('_g', json_encode(array(
'_k' => $result['data']['shopping_key'],
'_nac' => $result['data']['goods_count'],
'_ac' => 0,
'_r' => 1
)));*/
}
res.send(result);
});
};
/**
* 获取购物车商品总数
*/
const cartTotal = () => {
co(function * (){
let uid = req.user.uid;
let shoppingKey = helper.getShoppingKeyByCookie(req);
let callback = req.query.callback;
let ret = yield service.getCartCount(uid, shoppingKey);
return res.send(callback + '(' + JSON.stringify(ret) + ')');
});
};
/**
* 购物车商品选择与取消
*/
const selectProduct = (req, res) => {
let uid = req.user.uid;
let productId = req.body.skuList;
let hasPromotion = req.body.hasPromotion || false;
let shoppingKey = helper.getShoppingKeyByCookie(req);
service.selectGoods(uid, productId, shoppingKey, hasPromotion)
.then(ret => {
res.send(ret);
}).catch(() => {
res.send({
code: 400
});
});
};
/**
* 修改购物车商品数量
*/
const modifyProduct = (req, res) => {
let uid = req.user.uid;
let shoppingKey = helper.getShoppingKeyByCookie(req);
let sku = req.body.sku;
let increaseNum = req.body.increaseNum || null;
let decreaseNum = req.body.decreaseNum || null;
return service.modifyProductNum(uid, sku, increaseNum, decreaseNum, shoppingKey)
.then(ret => {
if (ret && ret.code === 200) {
return setShoppingCookie().then(() => {
return res.send(ret);
});
}
})
.catch(next);
};
/**
* 移出购物车
*/
const removeProduct = (req, res) => {
co(function * (){
let uid = req.user.uid;
let shoppingKey = helper.getShoppingKeyByCookie(req);
let skuList = req.body.skuList;
let hasPromotion = true;
let ret = yield service.removeFromCart(uid, shoppingKey, skuList, hasPromotion);
if(ret && ret.code === 200) {
yield setShoppingCookie();
}
return res.send(ret);
});
};
/**
* 移入收藏夹
* 支持批量移入收藏夹
*/
const moveToFav = (req, res) => {
co(function * (){
let uid = req.user.uid;
// let shoppingKey = helper.getShoppingKeyByCookie(req);
let skuList = req.body.skuList;
let hasPromotion = req.body.hasPromotion || false;
let ret = yield service.addToFav(uid, skuList, hasPromotion);
if(ret && ret.code === 200) {
yield setShoppingCookie();
}
return res.send(ret);
});
};
/**
* 检查是否收藏
*/
const checkFav = (req, res) => {
co(function * (){
let uid = req.user.uid;
let pids = req.body.pidList;
let ret = {
code: 200,
message: '是否收藏',
data: {}
};
ret.data = yield service.checkUserIsFav(uid, pids);
return res.send(ret);
});
};
/**
* 凑单商品异步请求
*/
const getTogetherProduct = (req, res) => {
co(function * (){
let page = req.query.page;
/*let ret = {
code: 200,
message: '凑单商品'
};*/
ret = yield service.getTogetherProduct(page);
return res.send(ret);
});
};
/**
* 为你优选商品异步请求
*/
const getRecommendProductAction = (req, res) => {
co(function * (){
let channel = req.yoho.channel;
let uid = req.user.uid;
let udid = ghelper.getUdid(req, res);
let page = req.query.page;
if(page === '6') {
page = 1;
}
let ret = yield service.getRecommendProduct(channel, uid, udid, page);
res.send(ret);
});
};
module.exports = {
getProductInfo,
cart,
cartAdd,
cartTotal,
setShoppingCookie,
selectProduct,
modifyProduct,
removeProduct,
moveToFav,
checkFav,
getTogetherProduct,
getRecommendProductAction
};