-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
529 lines (452 loc) · 17.9 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
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
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.mpxAPI = exports.Path = exports.MPXAPIError = exports.Errors = void 0;
var _without = _interopRequireDefault(require("lodash/without"));
var _kebabCase = _interopRequireDefault(require("lodash/kebabCase"));
var _pick = _interopRequireDefault(require("lodash/pick"));
var _map = _interopRequireDefault(require("lodash/map"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
function _wrapNativeSuper(Class) { var _cache = typeof Map === "function" ? new Map() : undefined; _wrapNativeSuper = function _wrapNativeSuper(Class) { if (Class === null || !_isNativeFunction(Class)) return Class; if (typeof Class !== "function") { throw new TypeError("Super expression must either be null or a function"); } if (typeof _cache !== "undefined") { if (_cache.has(Class)) return _cache.get(Class); _cache.set(Class, Wrapper); } function Wrapper() { return _construct(Class, arguments, _getPrototypeOf(this).constructor); } Wrapper.prototype = Object.create(Class.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }); return _setPrototypeOf(Wrapper, Class); }; return _wrapNativeSuper(Class); }
function isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }
function _construct(Parent, args, Class) { if (isNativeReflectConstruct()) { _construct = Reflect.construct; } else { _construct = function _construct(Parent, args, Class) { var a = [null]; a.push.apply(a, args); var Constructor = Function.bind.apply(Parent, a); var instance = new Constructor(); if (Class) _setPrototypeOf(instance, Class.prototype); return instance; }; } return _construct.apply(null, arguments); }
function _isNativeFunction(fn) { return Function.toString.call(fn).indexOf("[native code]") !== -1; }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
/////// 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
var host;
/**
* Cache to track register global response handler
*
* @private
*/
var globalResponseHandler = {
handler: null,
invoke: function invoke(err, data) {
if (this.handler) {
try {
var response = this.handler(err, data);
if (response.catch) {
response.catch(function (err) {// prevent promise handlers from erroring
});
}
} catch (err) {// catch any error in handler
}
}
}
};
var 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.
*
*/
};
exports.Errors = Errors;
var MPXAPIError =
/*#__PURE__*/
function (_Error) {
_inherits(MPXAPIError, _Error);
/**
*
* @constructor
* @param {Error} error
*/
function MPXAPIError(error) {
var _this;
_classCallCheck(this, MPXAPIError);
_this = _possibleConstructorReturn(this, _getPrototypeOf(MPXAPIError).call(this, error.detail || error.title)); // set error properties on the property error
Object.assign(_assertThisInitialized(_this), (0, _pick.default)(error, ['id', 'status', 'code', 'title', 'detail']));
return _this;
}
return MPXAPIError;
}(_wrapNativeSuper(Error));
/**
* Appends correct host to path
*
* @private
* @param {string} path
* @param {string} filterString
* @param {string} id
* @return {string}
*/
exports.MPXAPIError = MPXAPIError;
var url = function url(path, filterString, id) {
if (typeof host !== 'string') {
throw Errors.HOST_NOT_SET_ERROR;
}
var url = host + path + (id !== null ? "/".concat(id) : '') + (filterString !== null ? "".concat('?' + 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
*/
var serializeRequest = function serializeRequest(path, body) {
var JSONAPISerializer = require('jsonapi-serializer').Serializer;
var pathSegments = path.split('/').filter(Boolean);
var type = body.type || (0, _kebabCase.default)(pathSegments[0]);
if (!Array.isArray(body) && !body.id && pathSegments[1]) {
body.id = pathSegments[1];
}
var serializedRequest = Object.assign(new JSONAPISerializer(type, {
attributes: (0, _without.default)(Object.keys(body), 'id')
}).serialize(body));
return serializedRequest;
};
/**
*
* @private
* @param {string} path
* @param {object | object[]} body
* @param {boolean} serialize
*/
var jsonAPIRequestHandler = function jsonAPIRequestHandler(path, body, serialize) {
return JSON.stringify(serialize ? serializeRequest(path, body) : body);
};
/**
* Create Auth/UnAuthed Header
*
* @private
* @param {string} authorizationToken
*/
var createHeader = function createHeader(authorizationToken) {
if (authorizationToken) {
return {
'Content-Type': 'application/vnd.api+json',
Authorization: "Bearer ".concat(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
*/
var jsonAPIResponseHandler = function jsonAPIResponseHandler(deserialize) {
return function (response) {
if (response.status === 204) {
globalResponseHandler.invoke(null, response);
return response;
}
return response.json().then(function (json) {
if (!response.ok) {
var error = (0, _map.default)(json.errors, function (error) {
return new MPXAPIError(error);
});
globalResponseHandler.invoke(error);
return Promise.reject(error);
}
if (deserialize) {
var JSONAPIDeserializer = require('jsonapi-serializer').Deserializer;
var opts = {
keyForAttribute: 'camelCase'
};
return new JSONAPIDeserializer(opts).deserialize(json).then(function (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
*/
var 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 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 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'
};
/**
* 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
*/
exports.Path = Path;
var mpxAPI = {
/**
* Set host for mpx-api
* example https://api.mpxechange.io
*
* @param {string} newHost apiHost
*/
setHost: function 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: function 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: function get(path) {
var _ref = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
_ref$fetch = _ref.fetch,
fetch = _ref$fetch === void 0 ? window.fetch : _ref$fetch,
_ref$filterString = _ref.filterString,
filterString = _ref$filterString === void 0 ? null : _ref$filterString,
_ref$id = _ref.id,
id = _ref$id === void 0 ? null : _ref$id,
_ref$deserialize = _ref.deserialize,
deserialize = _ref$deserialize === void 0 ? true : _ref$deserialize,
_ref$authorizationTok = _ref.authorizationToken,
authorizationToken = _ref$authorizationTok === void 0 ? null : _ref$authorizationTok;
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: function post(path) {
var body = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var _ref2 = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {},
_ref2$fetch = _ref2.fetch,
fetch = _ref2$fetch === void 0 ? window.fetch : _ref2$fetch,
_ref2$filterString = _ref2.filterString,
filterString = _ref2$filterString === void 0 ? null : _ref2$filterString,
_ref2$id = _ref2.id,
id = _ref2$id === void 0 ? null : _ref2$id,
_ref2$serializeReques = _ref2.serializeRequest,
serializeRequest = _ref2$serializeReques === void 0 ? true : _ref2$serializeReques,
_ref2$deserialize = _ref2.deserialize,
deserialize = _ref2$deserialize === void 0 ? true : _ref2$deserialize,
_ref2$authorizationTo = _ref2.authorizationToken,
authorizationToken = _ref2$authorizationTo === void 0 ? null : _ref2$authorizationTo;
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: function patch(path) {
var body = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var _ref3 = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {},
_ref3$fetch = _ref3.fetch,
fetch = _ref3$fetch === void 0 ? window.fetch : _ref3$fetch,
_ref3$filterString = _ref3.filterString,
filterString = _ref3$filterString === void 0 ? null : _ref3$filterString,
_ref3$id = _ref3.id,
id = _ref3$id === void 0 ? null : _ref3$id,
_ref3$serializeReques = _ref3.serializeRequest,
serializeRequest = _ref3$serializeReques === void 0 ? true : _ref3$serializeReques,
_ref3$deserialize = _ref3.deserialize,
deserialize = _ref3$deserialize === void 0 ? true : _ref3$deserialize,
_ref3$authorizationTo = _ref3.authorizationToken,
authorizationToken = _ref3$authorizationTo === void 0 ? null : _ref3$authorizationTo;
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: function put(path) {
var body = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var _ref4 = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {},
_ref4$fetch = _ref4.fetch,
fetch = _ref4$fetch === void 0 ? window.fetch : _ref4$fetch,
_ref4$filterString = _ref4.filterString,
filterString = _ref4$filterString === void 0 ? null : _ref4$filterString,
_ref4$id = _ref4.id,
id = _ref4$id === void 0 ? null : _ref4$id,
_ref4$serializeReques = _ref4.serializeRequest,
serializeRequest = _ref4$serializeReques === void 0 ? true : _ref4$serializeReques,
_ref4$deserialize = _ref4.deserialize,
deserialize = _ref4$deserialize === void 0 ? true : _ref4$deserialize,
_ref4$authorizationTo = _ref4.authorizationToken,
authorizationToken = _ref4$authorizationTo === void 0 ? null : _ref4$authorizationTo;
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: function _delete(path) {
var _ref5 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
_ref5$fetch = _ref5.fetch,
fetch = _ref5$fetch === void 0 ? window.fetch : _ref5$fetch,
_ref5$filterString = _ref5.filterString,
filterString = _ref5$filterString === void 0 ? null : _ref5$filterString,
_ref5$id = _ref5.id,
id = _ref5$id === void 0 ? null : _ref5$id,
_ref5$deserialize = _ref5.deserialize,
deserialize = _ref5$deserialize === void 0 ? true : _ref5$deserialize,
_ref5$authorizationTo = _ref5.authorizationToken,
authorizationToken = _ref5$authorizationTo === void 0 ? null : _ref5$authorizationTo;
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: Path
};
exports.mpxAPI = mpxAPI;