easypay.js
4.36 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
/**
* 立即购买controller
* @author: yyq<yanqing.yang@yoho.cn>
* @date: 2016/9/23
*/
'use strict';
const _ = require('lodash');
const helper = global.yoho.helpers;
const crypto = global.yoho.crypto;
const easypayApi = require('./easypay-api');
const _handelPaymentInfo = (d) => {
let resData = {};
// 地址信息加密
d.delivery_address.id = crypto.encryption('', `${d.delivery_address.address_id}`);
delete d.delivery_address.address_id;
resData.deliveryAddress = d.delivery_address;
d.shopping_cart_data.hasCoin = _.round(d.yoho_coin * 100); // 有货币稀释
let supportLine = [];
_.forEach(['zhifubao', 'zaixianzhifu', 'weixinzhifu', 'wangyinzaixian',
'caifutong', 'shengfutong', 'tonglianzhifu'], sl => {
supportLine.push(`//static.yohobuy.com/images/pay/icon/${sl}.png`);
}
);
resData.supportLine = supportLine;
let supportBank = [];
_.forEach(
['BOC', 'ICBC', 'CMB', 'CCB', 'ABC', 'SPDB', 'CIB', 'GDB', 'SDB', 'CMBC',
'COMM', 'CITIC', 'HZCBB2C', 'CEB', 'SHBANK', 'NBBANK', 'SZPAB', 'BJRCB', 'FDB', 'PSBC'],
sb => {
supportBank.push(`//static.yohobuy.com/images/bankico/${sb}.gif`);
}
);
resData.supportBank = supportBank;
_.forEach(d.goods_list, g => {
// link to goods
g.linkToGoods = helper.urlFormat(`/product/pro_${g.product_id}_${g.goods_id}/${g.cn_alphabet}.html`,
'', 'item');
});
resData.goodsList = d.goods_list;
_.remove(d.payment_way, function(n) {
return n.is_support === 'N';
});
let dPw = _.find(d.payment_way, {default: 'Y'});
let dDt = _.find(d.delivery_time, {default: 'Y'});
resData.defaultPayDelivery = {
paymentTypeName: dPw ? dPw.payment_type_name : '在线支付(推荐)',
paymentType: dPw ? dPw.payment_type : 1,
paymentTypeId: dPw ? dPw.payment_id : 15,
deliveryTimeStr: dDt ? dDt.delivery_time_string : '送货时间不限',
deliveryTimeId: dDt ? dDt.delivery_time_id : 2,
contractMe: false
};
Object.assign(resData, {
paymentWay: d.payment_way,
deliveryTime: d.delivery_time,
deliveryWay: d.delivery_way,
shoppingCartData: d.shopping_cart_data,
invoices: d.invoices
});
return resData;
};
const _getLimitProductData = (params) => {
let info = {
type: 'limitcode',
buy_number: 1
},
limitCode = crypto.decrypt('', decodeURIComponent(params.limitcode));
if (params.sku && params.skn && params.limitcode) {
Object.assign(info, {
sku: params.sku,
skn: params.skn,
limitproductcode: parseInt(limitCode, 10)
});
return JSON.stringify([info]);
}
return false;
};
const getEasypayOrderData = (params, uid) => {
let resData = {};
let strInfo = _getLimitProductData(params);
return easypayApi.getEasyPaymentAsync(strInfo, uid).then(result => {
let d = _.get(result, 'data', false);
if (d) {
Object.assign(resData, _handelPaymentInfo(d), {
productSkuList: crypto.encryption('', strInfo)
});
}
return resData;
});
};
const getOrderComputeData = (uid, cartType, params) => {
params.productSkuList = _getLimitProductData(params);
return easypayApi.getEasypayComputeAsync(uid, cartType, params.paymentType, params.deliveryWay, params).then(result => { // eslint-disable-line
if (result.code === 200) {
result.data.last_order_amount = _.round(result.data.last_order_amount, 2);
}
return result;
});
};
// 订单提交
const easypayOrderSubmit = (uid, cartType, params) => {
params.addressId = crypto.decrypt('', params.addressId);
params.productSkuList = _getLimitProductData(params);
return easypayApi.easypayOrderSubmitAsync(uid, cartType, params.addressId, params.deliveryTime,
params.deliveryWay, params.paymentType, params.paymentId, params.printPrice, params).then(result => {
if (result.code === 200) {
let d = result.data;
d.url = helper.urlFormat('/shopping/pay', {
ordercode: d.order_code
});
}
return result;
}
);
};
module.exports = {
getEasypayOrderData,
getOrderComputeData,
easypayOrderSubmit
};