LinePay.js
5.57 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
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0;
var _querystring = _interopRequireDefault(require("querystring"));
var _axiosError = _interopRequireDefault(require("axios-error"));
var _axios = _interopRequireDefault(require("axios"));
var _invariant = _interopRequireDefault(require("invariant"));function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { default: obj };}function ownKeys(object, enumerableOnly) {var keys = Object.keys(object);if (Object.getOwnPropertySymbols) {var symbols = Object.getOwnPropertySymbols(object);if (enumerableOnly) symbols = symbols.filter(function (sym) {return Object.getOwnPropertyDescriptor(object, sym).enumerable;});keys.push.apply(keys, symbols);}return keys;}function _objectSpread(target) {for (var i = 1; i < arguments.length; i++) {var source = arguments[i] != null ? arguments[i] : {};if (i % 2) {ownKeys(source, true).forEach(function (key) {_defineProperty(target, key, source[key]);});} else if (Object.getOwnPropertyDescriptors) {Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));} else {ownKeys(source).forEach(function (key) {Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));});}}return target;}function _objectWithoutProperties(source, excluded) {if (source == null) return {};var target = _objectWithoutPropertiesLoose(source, excluded);var key, i;if (Object.getOwnPropertySymbols) {var sourceSymbolKeys = Object.getOwnPropertySymbols(source);for (i = 0; i < sourceSymbolKeys.length; i++) {key = sourceSymbolKeys[i];if (excluded.indexOf(key) >= 0) continue;if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;target[key] = source[key];}}return target;}function _objectWithoutPropertiesLoose(source, excluded) {if (source == null) return {};var target = {};var sourceKeys = Object.keys(source);var key, i;for (i = 0; i < sourceKeys.length; i++) {key = sourceKeys[i];if (excluded.indexOf(key) >= 0) continue;target[key] = source[key];}return target;}function _defineProperty(obj, key, value) {if (key in obj) {Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true });} else {obj[key] = value;}return obj;}
function handleError(err) {
if (err.response && err.response.data) {
const { returnCode, returnMessage } = err.response.data;
const msg = `LINE PAY API - ${returnCode} ${returnMessage}`;
throw new _axiosError.default(msg, err);
}
throw new _axiosError.default(err.message, err);
}
function throwWhenNotSuccess(res) {
if (res.data.returnCode !== '0000') {
const { returnCode, returnMessage } = res.data;
const msg = `LINE PAY API - ${returnCode} ${returnMessage}`;
throw new _axiosError.default(msg);
}
return res.data.info;
}
class LinePay {
static connect(config) {
return new LinePay(config);
}
constructor({
channelId,
channelSecret,
sandbox = false,
origin })
{_defineProperty(this, "_axios", void 0);
const linePayOrigin = sandbox ?
'https://sandbox-api-pay.line.me' :
'https://api-pay.line.me';
this._axios = _axios.default.create({
baseURL: `${origin || linePayOrigin}/v2/`,
headers: {
'Content-Type': 'application/json',
'X-LINE-ChannelId': channelId,
'X-LINE-ChannelSecret': channelSecret } });
}
get axios() {
return this._axios;
}
getPayments({
transactionId,
orderId } =
{}) {
(0, _invariant.default)(
transactionId || orderId,
'getPayments: One of `transactionId` or `orderId` must be provided');
const query = {};
if (transactionId) {
query.transactionId = transactionId;
}
if (orderId) {
query.orderId = orderId;
}
return this._axios.
get(`/payments?${_querystring.default.stringify(query)}`).
then(throwWhenNotSuccess, handleError);
}
getAuthorizations({
transactionId,
orderId } =
{}) {
(0, _invariant.default)(
transactionId || orderId,
'getAuthorizations: One of `transactionId` or `orderId` must be provided');
const query = {};
if (transactionId) {
query.transactionId = transactionId;
}
if (orderId) {
query.orderId = orderId;
}
return this._axios.
get(`/payments/authorizations?${_querystring.default.stringify(query)}`).
then(throwWhenNotSuccess, handleError);
}
reserve(_ref)
{let { productName, amount, currency, confirmUrl, orderId } = _ref,options = _objectWithoutProperties(_ref, ["productName", "amount", "currency", "confirmUrl", "orderId"]);
return this._axios.
post('/payments/request', _objectSpread({
productName,
amount,
currency,
confirmUrl,
orderId },
options)).
then(throwWhenNotSuccess, handleError);
}
confirm(
transactionId,
{
amount,
currency })
{
return this._axios.
post(`/payments/${transactionId}/confirm`, {
amount,
currency }).
then(throwWhenNotSuccess, handleError);
}
capture(
transactionId,
{
amount,
currency })
{
return this._axios.
post(`/payments/authorizations/${transactionId}/capture`, {
amount,
currency }).
then(throwWhenNotSuccess, handleError);
}
void(transactionId) {
return this._axios.
post(`/payments/authorizations/${transactionId}/void`).
then(throwWhenNotSuccess, handleError);
}
refund(transactionId, options = {}) {
return this._axios.
post(`/payments/${transactionId}/refund`, options).
then(throwWhenNotSuccess, handleError);
}}exports.default = LinePay;