pay.js
5.68 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
/**
* 支付成功页
* @author: jing.li<jing.li@yoho.cn>
* @date: 2016/10/25
*/
'use strict';
const api = global.yoho.API;
const serviceAPI = global.yoho.ServiceAPI;
const utils = '../../../utils';
const productProcess = require(`${utils}/product-process`);
const _ = require('lodash');
const ApipayConfig = global.yoho.config.alipayConfig;
const md5 = require('md5');
// 资源位
const _getBanner = (param) => {
return serviceAPI.get('operations/api/v5/resource/get', {
content_code: param.contentCode,
platform: 'iphone'
}, { code: 200 }).then((result) => {
result = result.data;
return result;
});
};
// 购买此商品的用户也购买了
const _getOthersBuy2 = (param) => {
return api.get('', {
method: 'app.recommend.purchased',
productSkn: param.skn,
udid: param.uid,
rec_pos: '100005',
limit: 2,
client_id: param.client_id
}, { code: 200 }).then((result) => {
if (result && result.data && result.data.product_list) {
return productProcess.processProductList(result.data.product_list);
}
});
};
// 订单信息
const _getOtherDetail = (param) => {
return api.get('', {
method: 'app.SpaceOrders.detail',
uid: param.uid,
order_code: param.orderCode
}, { code: 200 }).then((result) => {
return result;
});
};
// 购买此商品的用户也购买了,要先从订单详情获取商品skn
const _getOthersBuy = (param) => {
return api.all([
_getOtherDetail(param)
]).then((result) => {
let goodSkn = '';
if (result && result[0] && result[0].data && result[0].data.order_goods) {
goodSkn = result[0].data.order_goods[0].product_skn;
}
return _getOthersBuy2(Object.assign(param, { skn: goodSkn }));
}).then((result) => {
return result;
});
};
// 货到付款
const getPayCod = (param) => {
return api.all([
_getBanner(param),
_getOthersBuy(param),
_getOtherDetail(param)
]).then((result) => {
let resu = {
match: true,
banner: [],
othersBuy: []
};
if (result && result[0]) {
_.forEach(result[0], function(val) {
if (val.template_name === 'single_image') {
resu.banner = val;
} else if (val.template_name === 'text') {
resu.prompt = val.data;
}
});
}
if (result && result[1]) {
resu.othersBuy = result[1];
}
if (result && result[2] && result[2].data && result[2].data.payment_amount) {
resu.payment = result[2].data.payment_amount;
} else {
resu.match = false;
}
resu.orderCode = param.orderCode;
resu.orderUrl = '/home/orders/detail?order_code=' + param.orderCode;
return resu;
});
};
const _raw = (args) => {
let keys = Object.keys(args);
keys = keys.filter(k => {
let keyValueCheck =
k === 'sign' ||
k === 'sign_type' ||
k === 'code' ||
args[k] === '' ||
args[k] === 'undefined';
return !keyValueCheck;
}).sort();
return keys.map(k => {
return k + '=' + decodeURI(args[k]);
}).join('&');
};
/**
* 验证返回结果的正确性
*/
const _checkResponse = (params) => {
if (!params.sign) {
return false;
}
let rawResult = _raw(params);
let sign = rawResult + ApipayConfig.alipayKey;
let md5Result = md5(sign);
return md5Result === params.sign;
};
/**
* 支付宝支付结果校验
*/
const alipayResultVerify = (params) => {
let checkResult = {};
if (params.q) {
delete params.q;
}
if (!_checkResponse(params)) {
checkResult.payResult = false;
} else {
_.assign(checkResult, {
bankName: '',
orderCode: params.out_trade_no,
payResult: params.trade_status === 'TRADE_SUCCESS',
payTime: params.gmt_payment || '',
totalFee: params.total_fee,
resultMsg: params.notify_type,
payOrderCode: params.out_trade_no,
tradeNo: params.trade_no,
bankBillNo: ''
});
}
return checkResult;
};
// 支付宝支付
const getPayAli = (param) => {
return api.all([
_getBanner(param),
_getOthersBuy(param),
_getOtherDetail(param)
]).then((result) => {
let resu = {
match: true,
banner: [],
othersBuy: []
};
if (result && result[0]) {
_.forEach(result[0], function(val) {
if (val.template_name === 'single_image') {
resu.banner = val;
} else if (val.template_name === 'text') {
resu.prompt = val.data;
}
});
}
if (result && result[1]) {
resu.othersBuy = result[1];
}
if (result && result[2] && result[2].data && result[2].data.payment_amount) {
resu.packageTitle = _.get(result[2], 'data.package_title', '');
if (param.isPay && param.isPay === true) {
resu.payment = '0.00';
resu.payWay = false;
} else {
resu.payWay = true;
resu.payment = result[2].data.payment_amount;
}
} else {
resu.match = false;
}
resu.orderCode = param.orderCode;
resu.orderUrl = '/home/orders/detail?order_code=' + param.orderCode;
return resu;
});
};
module.exports = {
getPayCod,
getPayAli,
alipayResultVerify
};