-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathwx_pub.js
89 lines (83 loc) · 2.75 KB
/
wx_pub.js
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
var callbacks = require('../callbacks');
var utils = require('../utils');
var stash = require('../stash');
var mods = require('../mods');
var hasOwn = {}.hasOwnProperty;
/*global WeixinJSBridge*/
module.exports = {
PINGPP_NOTIFY_URL_BASE: 'https://notify.pingxx.com/notify',
handleCharge: function(charge) {
var credential = charge.credential[charge.channel];
var fields = [
'appId', 'timeStamp', 'nonceStr', 'package', 'signType', 'paySign'
];
for (var k = 0; k < fields.length; k++) {
if (!hasOwn.call(credential, fields[k])) {
callbacks.innerCallback('fail',
callbacks.error('invalid_credential', 'missing_field_' + fields[k]));
return;
}
}
stash.jsApiParameters = credential;
this.callpay();
},
callpay: function() {
var self = this;
var wx_jssdk = mods.getExtraModule('wx_jssdk');
if (typeof wx_jssdk !== 'undefined' && wx_jssdk.jssdkEnabled()) {
wx_jssdk.callpay();
} else if (typeof WeixinJSBridge == 'undefined') {
var eventCallback = function() {
self.jsApiCall();
};
if (document.addEventListener) {
document.addEventListener('WeixinJSBridgeReady',
eventCallback, false);
} else if (document.attachEvent) {
document.attachEvent('WeixinJSBridgeReady', eventCallback);
document.attachEvent('onWeixinJSBridgeReady', eventCallback);
}
} else {
this.jsApiCall();
}
},
jsApiCall: function() {
if (hasOwn.call(stash, 'jsApiParameters')) {
WeixinJSBridge.invoke(
'getBrandWCPayRequest',
stash.jsApiParameters,
function(res) {
delete stash.jsApiParameters;
if (res.err_msg == 'get_brand_wcpay_request:ok') {
callbacks.innerCallback('success');
} else if (res.err_msg == 'get_brand_wcpay_request:cancel') {
callbacks.innerCallback('cancel');
} else {
callbacks.innerCallback('fail',
callbacks.error('wx_result_fail', res.err_msg));
}
}
);
}
},
runTestMode: function(charge) {
var dopay = confirm('模拟付款?');
if (dopay) {
var path = '/charges/' + charge.id;
utils.request(this.PINGPP_NOTIFY_URL_BASE + path + '?livemode=false',
'GET', null,
function(data, status) {
if (status >= 200 && status < 400 && data == 'success') {
callbacks.innerCallback('success');
} else {
var extra = 'http_code:' + status + ';response:' + data;
callbacks.innerCallback('fail',
callbacks.error('testmode_notify_fail', extra));
}
},
function() {
callbacks.innerCallback('fail', callbacks.error('network_err'));
});
}
}
};