-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
211 lines (193 loc) · 4.37 KB
/
index.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
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
const JsonRpcError = require('./JsonRpcError');
const REQUEST = {
method: 'POST',
};
const HEADERS = {
Accept: 'application/json',
'Content-Type': 'application/json',
};
const BODY = {
params: [],
jsonrpc: '1.0',
};
/**
* Create JsonRPC authorization header from RPC credentials.
*
* @param {String} rpcuser
* @param {String} rpcpassword
* @returns {{Authorization: string}}
*/
const createAuthorizationHeaders = (rpcuser, rpcpassword) => ({
Authorization: `Basic ${new Buffer(rpcuser + ':' + rpcpassword).toString(
'base64'
)}`,
});
/**
* Ensure params are an array form.
*
* @param {Array|*} params
* @returns {Array}
*/
const toArray = params => (Array.isArray(params) ? params : [params]);
/**
* Build the JsonRPC endpoint from scheme, host and port.
*
* @param {String} rpcscheme
* @param {String} rpchost
* @param {String} rpcport
* @returns {String}
*/
const buildEndpoint = ({
rpcscheme = 'http',
rpchost = '127.0.0.1',
rpcport = 8332,
}) => `${rpcscheme}://${rpchost}:${rpcport}`;
/**
* Generate a string id for given method and params.
*
* @param {String} method
* @param {Array} params
* @returns {string}
*/
const generateId = (method, params = []) =>
`${method}_${params.join('_')}_${s4()}`;
/**
* Generate a random string of 4 characters, containing letters and numbers.
*
* @returns {string}
*/
const s4 = () =>
Math.floor((1 + Math.random()) * 0x10000)
.toString(16)
.substring(1);
/**
* Create an error handler for given method.
*
* @param {Object} context
* @returns {Function}
*/
const createErrorHandler = context =>
/**
* Throw an `Error` if the response is not in `ok` state.
* Return the `Response` unchanged otherwise.
*
* @param {Response} response
* @returns {Response}
* @throws Error
*/
response => {
if (!response.ok) {
switch (response.status) {
case 404:
throw new JsonRpcError('Method nod found.', {
...context,
code: 404,
});
case 500:
return response;
default:
throw new JsonRpcError(response.statusText, {
...context,
code: response.status,
});
}
}
return response;
};
/**
* Shorthand method, transform the `Response` to a Json response object.
*
* @param {Response} response
* @returns {Object}
*/
const toJson = response => response.json();
/**
* Throw an error if the Json response object contains a `JsonRPC` error.
* Return the Json response object unchanged otherwise.
*
* @param {Object} context
* @returns {Function}
*/
const handleJsonError = (context = {}) =>
/**
* @param {Object} jsonResponse
* @returns {Object}
* @throws Error
*/
jsonResponse => {
if (jsonResponse.error) {
const { message, code } = jsonResponse.error;
throw new JsonRpcError(message, {
...context,
code,
});
}
return jsonResponse;
};
/**
* Return the result key of the Json response object.
*
* @param {Object} jsonResponse
* @returns {Object}
*/
const toResult = jsonResponse => jsonResponse.result;
/**
* Create the JsonRPC call function for given endpoint and credentials.
*
* @param {String} rpcscheme
* @param {string} rpchost
* @param {Number|String} rpcport
* @param {String} rpcuser
* @param {String} rpcpassword
* @returns {function(*=, ...[*]=): Promise<Object>}
*/
const createCall = ({
rpcscheme = 'http',
rpchost = '127.0.0.1',
rpcport = 8332,
rpcuser,
rpcpassword,
}) => {
const endpoint = buildEndpoint({ rpcscheme, rpchost, rpcport });
const request = {
...REQUEST,
headers: {
...HEADERS,
...createAuthorizationHeaders(rpcuser, rpcpassword),
},
};
return (method, ...params) => {
const arrayParams = toArray(params);
const context = {
id: generateId(method, arrayParams),
method,
params: arrayParams,
};
return fetch(endpoint, {
...request,
body: JSON.stringify({
...BODY,
...context,
}),
})
.then(createErrorHandler({ ...context, rpcuser, endpoint }))
.then(toJson)
.then(handleJsonError({ ...context, rpcuser, endpoint }))
.then(toResult);
};
};
module.exports = {
REQUEST,
HEADERS,
BODY,
createAuthorizationHeaders,
toArray,
buildEndpoint,
generateId,
s4,
createErrorHandler,
toJson,
handleJsonError,
toResult,
createCall,
};