-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathas_promises.js
86 lines (82 loc) · 2.22 KB
/
as_promises.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
'use strict';
const omise = require('./index');
let cardDetails = {
card: {
'name': 'JOHN DOE',
'city': 'Bangkok',
'postal_code': 10320,
'number': '4242424242424242',
'expiration_month': 2,
'expiration_year': 2024,
},
};
//Auto capture a charge
omise.tokens.create(cardDetails).then(function(token) {
console.log(token);
return omise.customers.create({
'email': '[email protected]',
'description': 'John Doe (id: 30)',
'card': token.id,
});
}).then(function(customer) {
console.log(customer);
return omise.charges.create({
'amount': 10000,
'currency': 'thb',
'customer': customer.id,
});
}).then(function(charge) {
console.log(charge);
}).catch(function(err) {
console.log(err);
}).finally();
// Manually capture a charge
omise.tokens.create(cardDetails).then(function(token) {
console.log(token);
return omise.customers.create({
'email': '[email protected]',
'description': 'John Doe (id: 30)',
'card': token.id,
});
}).then(function(customer) {
console.log(customer);
return omise.charges.create({
'amount': 10000,
'currency': 'thb',
'customer': customer.id,
'authorization_type': 'pre_auth',
'capture': false,
});
}).then(function(charge) {
console.log(charge);
omise.charges.capture(charge.id).then(function(capturedCharge){
console.log(capturedCharge);
})
}).catch(function(err) {
console.log(err);
}).finally();
// Partially capture a charge
omise.tokens.create(cardDetails).then(function(token) {
console.log(token);
return omise.customers.create({
'email': '[email protected]',
'description': 'John Doe (id: 30)',
'card': token.id,
});
}).then(function(customer) {
console.log(customer);
return omise.charges.create({
'amount': 10000,
'currency': 'thb',
'customer': customer.id,
'authorization_type': 'pre_auth',
'capture': false,
});
}).then(function(charge) {
console.log(charge);
omise.charges.capture(charge.id,{'capture_amount': charge.amount / 2}).then(function(partiallyCapturedCharge){
console.log(partiallyCapturedCharge);
})
}).catch(function(err) {
console.log(err);
}).finally();