pay.js
13.5 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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
/**
* 支付
* @author: jing.li<jing.li@yoho.cn>
* @date: 2016/10/25
*/
'use strict';
const serviceAPI = global.yoho.ServiceAPI;
const utils = '../../../utils';
const productProcess = require(`${utils}/product-process`);
const ApipayConfig = global.yoho.config.alipayConfig;
const md5 = require('yoho-md5');
const payApiModel = require('./pay-api');
const _ = require('lodash');
const co = require('bluebird').coroutine;
const logger = global.yoho.logger;
const stringProcess = require(`${global.utils}/string-process`);
class payModel extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
// 资源位
_getBanner(param) {
return this.get({
api: serviceAPI,
url: 'operations/api/v5/resource/get',
data: {
content_code: param.contentCode,
platform: 'iphone'
},
param: { code: 200 }
}).then((result) => {
result = result.data;
return result;
});
}
// 购买此商品的用户也购买了
_getOthersBuy2(param) {
return this.get({data: {
method: 'app.recommend.purchased',
productSkn: param.skn,
uid: param.uid,
rec_pos: '100005',
limit: 2,
client_id: param.client_id
}, param: { code: 200 }}).then((result) => {
if (result && result.data && result.data.product_list) {
return productProcess.processProductList(result.data.product_list);
}
});
}
/**
* 处理订单详情新接口返回的数据,兼容旧接口数据格式
* @param {*} result
*/
_handleGoodsDetailData(result) {
return {
data: {
attribute: _.get(result, 'data.order_extInfo.attribute') ||
_.get(result, 'data.attribute'),
is_cancel: _.get(result, 'data.order_extInfo.is_cancel') ||
_.get(result, 'data.is_cancel'),
order_code: _.get(result, 'data.order_basic_info[0].value') ||
_.get(result, 'data.order_code'),
payment_amount: _.get(result, 'data.order_extInfo.payment_amount') ||
_.get(result, 'data.payment_amount'),
pay_expire: _.get(result, 'data.order_detail_info.ext.pay_expire') ||
_.get(result, 'data.pay_expire'),
order_goods: _.get(result, 'data.order_goods'),
package_info: _.get(result, 'data.package_info', [])
}
};
}
// 订单信息
getOtherDetail(param) {
if (!param.uid || !param.orderCode || !stringProcess.isNumeric(param.orderCode)) {
return Promise.resolve({});
}
param.uid.appVersion = _.get(global, 'yoho.config.appVersion');
return this.get({data: {
method: 'app.SpaceOrders.detail',
uid: param.uid,
order_code: param.orderCode,
session_key: param.sessionKey
}, param: { code: 200 }}).then(result => {
return this._handleGoodsDetailData(result);
});
}
// 购买此商品的用户也购买了,要先从订单详情获取商品skn
_getOthersBuy(param) {
this.getOtherDetail(param).then(result => {
let skn = _.get(result, 'data.order_goods.0.product_skn', '');
if (skn) {
return this._getOthersBuy2(Object.assign(param, { skn: skn }));
} else {
return Promise.resolve([]);
}
});
}
/**
* 获取订单支付银行信息
* @param id
*/
getBankByOrder(id) {
let self = this;
return co(function* () {
let result = yield self.ctx.req.ctx(payApiModel).getBankByOrder(id);
if (result && result.code === 200 && result.data) {
return result.data;
}
return {};
})();
}
/**
* 设置订单支付银行
* @param code
* @param payment
* @param bankCode
*/
setOrderPayBank(code, payment, bankCode) {
let self = this;
return co(function* () {
let data = yield self.ctx.req.ctx(payApiModel).setOrderPayBank(code, payment, bankCode);
return data;
})();
}
/**
* 获取支付方式的相关参数, (密钥等信息)
* @param id
*/
getPaymentInfo(id) {
let self = this;
return co(function* () {
let result = yield self.ctx.req.ctx(payApiModel).getPaymentInfo(id);
if (result && result.code === 200 && result.data) {
return result.data;
}
return {};
})();
}
/**
* 支付确认
* @param code
* @param payment
* @param uid
*/
sendPayConfirm(code, payment, uid) {
let self = this;
return co(function* () {
let data = yield self.ctx.req.ctx(payApiModel).sendPayConfirm(code, payment, uid);
return data;
})();
}
/**
* 更新订单支付方式
* @param code
* @param payment
* @param uid
* @returns {*}
*/
updateOrderPayment(code, payment, uid) {
return this.get({data: {
method: 'app.SpaceOrders.updateOrdersPaymentByCode',
order_code: code,
payment: payment,
uid: uid
}});
}
/**
* 更新订单支付银行
* @param code
* @param payment
* @param bankCode
*/
updateOrderPayBank(code, payment, bankCode) {
let self = this;
return co(function* () {
let data = yield self.ctx.req.ctx(payApiModel).updateOrderPayBank(code, payment, bankCode);
return data;
})();
}
/**
* 支付成功,前端回调时,处理订单信息
* @param payResult
* @param uid
* @param sessionKey
*/
procOrderData(payResult, uid, sessionKey) {
let self = this;
return co(function* () {
let orderCode = payResult.orderCode;
let result = { code: 400, message: '' };
if (!orderCode) {
result.message = '未查到订单信息,订单状态更新失败!';
return result;
} else {
let orderInfo = yield self._getOtherDetail({
uid: uid,
orderCode: orderCode,
sessionKey: sessionKey
});
if (orderInfo && orderInfo.data) {
let order = orderInfo.data;
let amount = order.payment_amount;
if (order.is_cancel === 'Y') {
logger.warn('front pay success but order is cancel.', { payResult: payResult, order: order });
self.ctx.req.ctx(payApiModel).sendMessage(order.mobile,
'error_sms', '支付成功,但订单已取消,订单号为' + orderCode);
return { code: 417, message: '支付成功,但订单已取消,需联系客服!' };
}
if (order.payment_status === 'N') {
logger.warn('front pay success but may be notify fail');
}
if (_.round(parseFloat(amount), 2) !== _.round(parseFloat(payResult.totalFee), 2)) {
logger.warn('front pay success but the amount is not same.', {
payResult: payResult, order: order
});
return {
code: 415,
message: '支付金额与订单金额不一致,订单状态更新失败!'
};
}
return {
code: 200,
message: '支付成功,请等待发货',
data: {
order: order
}
};
} else {
result.message = '未查到订单信息,订单状态更新失败!';
}
}
return result;
})();
}
/**
* 支付中心
* @param params
*/
payCenter(params) {
return this.getOtherDetail({
uid: params.uid,
orderCode: params.orderCode,
sessionKey: params.sessionKey
}).then(result => {
return _.get(result, 'data', {});
});
}
// 货到付款
getPayCod(param) {
return Promise.all([
this._getBanner(param),
this._getOthersBuy(param),
this.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;
});
}
_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('&');
}
/**
* 验证返回结果的正确性
*/
_checkResponse(params) {
if (!params.sign) {
return false;
}
let rawResult = this._raw(params);
let sign = rawResult + ApipayConfig.alipayKey;
let md5Result = md5(sign);
return md5Result === params.sign;
}
/**
* 支付宝支付结果校验
*/
alipayResultVerify(params) {
let checkResult = {};
if (params.uid) {
delete params.uid;
}
if (params.q) {
delete params.q;
}
if (!this._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;
}
// 支付宝支付
getPayAli(param) {
return Promise.all([
this._getBanner(param),
this._getOthersBuy(param),
this.getOtherDetail(param),
this.getPayResultText(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[3], 'data.notice', '');
resu.gain_yoho_coin = _.get(result[3], 'data.gain_yoho_coin', 0);
resu.growth_value = _.get(result[3], 'data.growth_value', 0);
resu.msg = _.get(result[3], 'data.msg', '');
resu.payment = result[2].data.payment_amount;
if (param.isPay && param.isPay === true) {
if (result[2].data.payment_status && result[2].data.payment_status === 'Y') {
resu.payWay = false;
} else {
resu.isCancel = true;
}
} else {
resu.payWay = true;
}
} else {
resu.match = false;
}
resu.orderCode = param.orderCode;
resu.orderUrl = '/home/orders/detail?order_code=' + param.orderCode;
return resu;
});
}
/**
* 获取支付结果信息
*/
getPayResultText(params) {
return this.get({
data: {
method: 'app.SpaceOrders.getOrderExNotice',
order_code: params.orderCode,
uid: params.uid
}
});
}
}
module.exports = payModel;