-
Notifications
You must be signed in to change notification settings - Fork 0
/
mpxAPI.js
469 lines (439 loc) · 10.9 KB
/
mpxAPI.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
import without from "lodash/without";
import kebabCase from "lodash/kebabCase";
import pick from "lodash/pick";
import map from "lodash/map";
/////// Type Definitions
/**
* Callback for handling a response.
* Error would usually be an array of MPXAPIErrors.
*
* @callback ResponseHandler
* @param {Error} err - Error if any, null if no error
* @param {object} data - Parse json-api response data.
*/
/**
* Extra Options objects that are passed to request methods on the
*
*
* @typedef {Object} RequestOptions
* @property {string} id String value that overrides the id on the resource being requested. defaults to `null`.
* @property {string} filterString Filter string, primarily used in get requests. defaults to `null`.
* @property {boolean} serializeRequest Flag to state if the payload has should be json-api serialized. defaults to `true`.
* @property {boolean} deserialize Flag to state if the response from a request should be json-api deserialized or note. defaults to `false`.
* @property {string} authorizationToken Authorization token. Required for request to authenticated paths.
*/
////// end Type Definitions
let host;
/**
* Cache to track register global response handler
*
* @private
*/
let globalResponseHandler = {
handler: null,
invoke: function(err, data) {
if (this.handler) {
try {
const response = this.handler(err, data);
if (response.catch) {
response.catch(err => {
// prevent promise handlers from erroring
});
}
} catch (err) {
// catch any error in handler
}
}
}
};
export const Errors = {
HOST_NOT_SET_ERROR: new Error(
`host url not set. Invoke the 'setHost()' function with your mpxAPI host`
)
};
/**
* MPXAPIError represents an Error that is gotten from the api response.
* It is usually returned as an Array of MPXAPIError.
*
*/
export class MPXAPIError extends Error {
/**
*
* @constructor
* @param {Error} error
*/
constructor(error) {
super(error.detail || error.title);
// set error properties on the property error
Object.assign(
this,
pick(error, ["id", "status", "code", "title", "detail"])
);
}
}
/**
* Appends correct host to path
*
* @private
* @param {string} path
* @param {string} filterString
* @param {string} id
* @return {string}
*/
const url = (path, filterString, id) => {
if (typeof host !== "string") {
throw Errors.HOST_NOT_SET_ERROR;
}
const url =
host +
path +
(id !== null ? `/${id}` : "") +
(filterString !== null ? `${"?" + filterString}` : "");
return url;
};
/**
* Serializes body object to conform with a jsonapi format.
* If no type is specified on the body object, it attempts
* to extract the type from the first path segment.
*
* If no id is specified for the object, it attempts to extract
* the id from the second path segment. Although, if body is an
* array, it doesn't extract id from path segment
*
*
* @private
* @param {string} path
* @param {object | object[]} body
*/
const serializeRequest = (path, body) => {
const JSONAPISerializer = require("jsonapi-serializer").Serializer;
const pathSegments = path.split("/").filter(Boolean);
const type = body.type || kebabCase(pathSegments[0]);
if (!Array.isArray(body) && !body.id && pathSegments[1]) {
body.id = pathSegments[1];
}
const serializedRequest = Object.assign(
new JSONAPISerializer(type, {
attributes: without(Object.keys(body), "id")
}).serialize(body)
);
return serializedRequest;
};
/**
*
* @private
* @param {string} path
* @param {object | object[]} body
* @param {boolean} serialize
*/
const jsonAPIRequestHandler = (path, body, serialize) =>
JSON.stringify(serialize ? serializeRequest(path, body) : body);
/**
* Create Auth/UnAuthed Header
*
* @private
* @param {string} authorizationToken
*/
const createHeader = authorizationToken => {
if (authorizationToken) {
return {
"Content-Type": "application/vnd.api+json",
Authorization: `Bearer ${authorizationToken}`
};
} else {
return {
"Content-Type": "application/vnd.api+json"
};
}
};
/**
* Create a response handle for api requests.
* Takes an argument to deserialize response according to jsonapi
*
* @private
* @param {bool} deserialize
*/
const jsonAPIResponseHandler = deserialize => response => {
if (response.status === 204) {
globalResponseHandler.invoke(null, response);
return response;
}
return response.json().then(json => {
if (!response.ok) {
const error = map(json.errors, error => new MPXAPIError(error));
globalResponseHandler.invoke(error);
return Promise.reject(error);
}
if (deserialize) {
const JSONAPIDeserializer = require("jsonapi-serializer").Deserializer;
const opts = {
keyForAttribute: "camelCase"
};
return new JSONAPIDeserializer(opts)
.deserialize(json)
.then(deserializedData => {
globalResponseHandler.invoke(null, deserializedData);
return deserializedData;
});
} else {
return json;
}
});
};
/**
* Path constants that should be used when calling any of the `get`, `post`, etc.
* functions on the mpxAPI client
*
* @namespace
*/
export const Path = {
/**
* Path to list a summary of all resources and their actions.
*
*/
Root: "/",
/**
* Path to contract resources.
*
*/
Contracts: "/contracts",
/**
* Path to fee receipeint resources.
*
*/
FeeRecipients: "/fee_recipients",
/**
* Path to fills resources.
*
*/
Fills: "/fills",
/**
* Path to perform jwt authentication.
*
*/
JWT: "/json_web_tokens",
/**
* Path to profile of current authenticated user.
*
*/
Me: "/me",
/**
* Path to user notifications
*
*/
Notifications: "/notifications",
/**
* Path to orderbook resources.
*
*/
OrderBook: "/orderbooks",
/**
* Path to order resources on the API.
*
*/
Orders: "/orders",
/**
* Path to asset rates in the MPX Ecosystem.
*
*/
Rates: "/rates",
/**
* Path to fetch Position Token Events on the API.
*
*/
PositionTokenEvents: "/position_token_events",
/**
* Path to API settings
*
*/
Settings: "/settings",
/**
* Path to fetch token pairs on the API.
*
*/
TokenPairs: "/token_pairs",
/**
* Path to fetch User Settings on the API.
*
*/
UserSettings: "/user_settings",
/**
* Path to fetch User Rewards on the API.
*
*/
UserRewards: "/user_rewards"
};
/**
* mpxAPI client namespace object.
*
* Use the methods on this to to make requests
*
* @example
* ```
* import { mpxAPI, Path } from '@marketprotocol/mpx-api-client'
*
* mpxAPI.setHost('https://api.mpexchange.io');
*
* // fetch all token pairs
* mpxAPI.get(Path.TokenPairs)
* .then(tokenPairs, () => {
* // do what you want tokenPairs
* });
* ```
* @namespace
*/
export const mpxAPI = {
/**
* Set host for mpx-api
* example https://api.mpxechange.io
*
* @param {string} newHost apiHost
*/
setHost(newHost) {
host = newHost;
},
/**
* Register a global response handler.
* All response from all requests would be send to this handler is set.
*
* To unregister pass in a null handler argument.
*
*
* @param {ResponseHandler} handler
*/
setGlobalResponseHandler(handler) {
if (handler !== null && typeof handler !== "function") {
throw new Error(
"global response handler must either be null or a function."
);
}
globalResponseHandler.handler = handler;
},
/**
* Makes a GET request to the mpxAPI resource at `path`.
*
* @param {string} path - Path to request API
* @param {RequestOptions} options Extra request options
* @return {Promise<*>} - Result of request
*/
get(
path,
{
fetch = window.fetch,
filterString = null,
id = null,
deserialize = true,
authorizationToken = null
} = {}
) {
return fetch(url(path, filterString, id), {
method: "GET",
headers: createHeader(authorizationToken)
}).then(jsonAPIResponseHandler(deserialize));
},
/**
* Makes a POST request to the mpxAPI resource at `path`.
*
* @param {string} path Path to request API
* @param {Object} body Request body payload
* @param {RequestOptions} options Extra request options
* @return {Promise<*>} result of request
*/
post(
path,
body = {},
{
fetch = window.fetch,
filterString = null,
id = null,
serializeRequest = true,
deserialize = true,
authorizationToken = null
} = {}
) {
return fetch(url(path, filterString, id), {
method: "POST",
headers: createHeader(authorizationToken),
body: jsonAPIRequestHandler(path, body, serializeRequest)
}).then(jsonAPIResponseHandler(deserialize));
},
/**
* Makes a PATCH request to the marketAPI resource at `path`.
*
* @param {string} path Path to request API
* @param {Object} body Request body payload
* @param {RequestOptions} options Extra request options
* @return {Promise<*>} result of request
*/
patch(
path,
body = {},
{
fetch = window.fetch,
filterString = null,
id = null,
serializeRequest = true,
deserialize = true,
authorizationToken = null
} = {}
) {
return fetch(url(path, filterString, id), {
method: "PATCH",
headers: createHeader(authorizationToken),
body: jsonAPIRequestHandler(path, body, serializeRequest)
}).then(jsonAPIResponseHandler(deserialize));
},
/**
* Makes a PUT request to the marketAPI resource at `path`.
*
* @param {string} path Path to request API
* @param {Object} body Request body payload
* @param {RequestOptions} options Extra request options
* @return {Promise<*>} result of request
*/
put(
path,
body = {},
{
fetch = window.fetch,
filterString = null,
id = null,
serializeRequest = true,
deserialize = true,
authorizationToken = null
} = {}
) {
return fetch(url(path, filterString, id), {
method: "PUT",
headers: createHeader(authorizationToken),
body: jsonAPIRequestHandler(path, body, serializeRequest)
}).then(jsonAPIResponseHandler(deserialize));
},
/**
* Makes a DELETE request to the marketAPI resource at `path`.
*
* @param {string} path Path to request API
* @param {RequestOptions} options Extra request options
* @return {Promise<*>} result of request
*/
delete(
path,
{
fetch = window.fetch,
filterString = null,
id = null,
deserialize = true,
authorizationToken = null
} = {}
) {
return fetch(url(path, filterString, id), {
method: "DELETE",
headers: createHeader(authorizationToken)
}).then(jsonAPIResponseHandler(deserialize));
},
/**
* Alias for the global named export `Path`.
* Added for convenience
*/
Path
};