| 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 |
1
1
1
20
20
20
18
1
1
5
5
1
4
1
3
1
2
2
2
1
2
1
2
2
1
2
1
3
1
2
2
2
1
2
1
3
1
2
2
2
1
2
1
3
1
2
2
2
1
2
1
3
3
3
1
3
1
22
22
1
21
20
1
19
1
20
20
1
| /*
Copyright (c) 2014, Ryuichi Okumura. All rights reserved.
Code licensed under the BSD License:
https://github.com/okuryu/node-fastpay/blob/master/LICENSE
*/
var request = require("request");
const BASE_REQUEST_URL = "https://fastpay.yahooapis.jp/v1/charges";
function FastPay(option, callback) {
this.apiKey = option.apiKey;
this.requestUrl = option.requestUrl || BASE_REQUEST_URL;
request(this.requestUrl, {
auth: {
user: this.apiKey,
pass: ""
}
}, function (err, res, body) {
if (typeof callback === "function") {
callback(err, res, body);
}
});
}
FastPay.prototype.create = function (option, callback) {
var form = {};
if (typeof option !== "object") {
throw new Error("the option (object) is required.");
}
if (typeof option.amount !== "number" && typeof option.amount !== "string") {
throw new Error("the option.amount (number or string) is required.");
}
if (typeof option.card !== "string") {
throw new Error("the option.card (string) is required.");
}
form.amount = option.amount;
form.card = option.card;
if (typeof option.description === "string") {
form.description = option.description;
}
if (typeof option.capture === "boolean") {
form.capture = option.capture;
}
request.post(this.requestUrl, {
auth: {
user: this.apiKey,
pass: ""
},
form: form
}, function (err, res, body) {
if (typeof callback === "function") {
callback(err, res, body);
}
});
return this;
};
FastPay.prototype.retrieve = function (id, callback) {
if (typeof id !== "string") {
throw new Error("the id (string) is required.");
}
this.requestUrl += "/" + id;
request(this.requestUrl, {
auth: {
user: this.apiKey,
pass: ""
}
}, function (err, res, body) {
if (typeof callback === "function") {
callback(err, res, body);
}
});
return this;
};
FastPay.prototype.refund = function (id, callback) {
if (typeof id !== "string") {
throw new Error("the id (string) is required.");
}
this.requestUrl += "/" + id + "/refund";
request.post(this.requestUrl, {
auth: {
user: this.apiKey,
pass: ""
},
headers: {
"Content-Length": 0
}
}, function (err, res, body) {
if (typeof callback === "function") {
callback(err, res, body);
}
});
return this;
};
FastPay.prototype.capture = function (id, callback) {
if (typeof id !== "string") {
throw new Error("the id (string) is required.");
}
this.requestUrl += "/" + id + "/capture";
request.post(this.requestUrl, {
auth: {
user: this.apiKey,
pass: ""
},
headers: {
"Content-Length": 0
}
}, function (err, res, body) {
if (typeof callback === "function") {
callback(err, res, body);
}
});
return this;
};
FastPay.prototype.all = function (option, callback) {
var qs = option || {};
request(this.requestUrl, {
auth: {
user: this.apiKey,
pass: ""
},
qs: qs
}, function (err, res, body) {
if (typeof callback === "function") {
callback(err, res, body);
}
});
return this;
};
function fastpay(option, callback) {
var fp,
opt;
if (typeof option === "string") {
opt = {
apiKey: option
};
} else if (typeof option === "object") {
if (typeof option.apiKey !== "string") {
throw new Error("the option.apiKey (string) is required.");
}
opt = option;
} else {
throw new Error("the option (object or string) is required.");
}
fp = new FastPay(opt, callback);
return fp;
}
module.exports = fastpay;
|