Add requestId to subscription messages and update json-schemas
This commit is contained in:
parent
c0015c2c11
commit
20e28d6c70
@ -1,5 +1,9 @@
|
||||
# CHANGELOG
|
||||
|
||||
vx.x.x
|
||||
------------------------
|
||||
* Expose WebSocketOrderbookChannel and associated types to public interface
|
||||
|
||||
v0.2.0 - _November 29, 2017_
|
||||
------------------------
|
||||
* Add SignedOrder and TokenTradeInfo to the public interface
|
||||
|
@ -1,10 +1,14 @@
|
||||
export {HttpClient} from './http_client';
|
||||
export {WebSocketOrderbookChannel} from './ws_orderbook_channel';
|
||||
export {
|
||||
Client,
|
||||
ECSignature,
|
||||
FeesRequest,
|
||||
FeesResponse,
|
||||
Order,
|
||||
OrderbookChannel,
|
||||
OrderbookChannelHandler,
|
||||
OrderbookChannelSubscriptionOpts,
|
||||
OrderbookRequest,
|
||||
OrderbookResponse,
|
||||
OrdersRequest,
|
||||
|
@ -57,9 +57,12 @@ export interface OrderbookChannelSubscriptionOpts {
|
||||
}
|
||||
|
||||
export interface OrderbookChannelHandler {
|
||||
onSnapshot: (channel: OrderbookChannel, snapshot: OrderbookResponse) => void;
|
||||
onUpdate: (channel: OrderbookChannel, order: SignedOrder) => void;
|
||||
onError: (channel: OrderbookChannel, err: Error) => void;
|
||||
onSnapshot: (channel: OrderbookChannel, subscriptionOpts: OrderbookChannelSubscriptionOpts,
|
||||
snapshot: OrderbookResponse) => void;
|
||||
onUpdate: (channel: OrderbookChannel, subscriptionOpts: OrderbookChannelSubscriptionOpts,
|
||||
order: SignedOrder) => void;
|
||||
onError: (channel: OrderbookChannel, subscriptionOpts: OrderbookChannelSubscriptionOpts,
|
||||
err: Error) => void;
|
||||
onClose: (channel: OrderbookChannel) => void;
|
||||
}
|
||||
|
||||
@ -76,16 +79,19 @@ export enum OrderbookChannelMessageTypes {
|
||||
|
||||
export interface SnapshotOrderbookChannelMessage {
|
||||
type: OrderbookChannelMessageTypes.Snapshot;
|
||||
requestId: number;
|
||||
payload: OrderbookResponse;
|
||||
}
|
||||
|
||||
export interface UpdateOrderbookChannelMessage {
|
||||
type: OrderbookChannelMessageTypes.Update;
|
||||
requestId: number;
|
||||
payload: SignedOrder;
|
||||
}
|
||||
|
||||
export interface UnknownOrderbookChannelMessage {
|
||||
type: OrderbookChannelMessageTypes.Unknown;
|
||||
requestId: number;
|
||||
payload: undefined;
|
||||
}
|
||||
|
||||
|
@ -15,28 +15,24 @@ export const orderbookChannelMessageParsers = {
|
||||
const messageObj = JSON.parse(utf8Data);
|
||||
const type: string = _.get(messageObj, 'type');
|
||||
assert.assert(!_.isUndefined(type), `Message is missing a type parameter: ${utf8Data}`);
|
||||
assert.isString('type', type);
|
||||
switch (type) {
|
||||
case (OrderbookChannelMessageTypes.Snapshot): {
|
||||
assert.doesConformToSchema('message', messageObj, schemas.relayerApiOrderbookChannelSnapshotSchema);
|
||||
const orderbook = messageObj.payload;
|
||||
typeConverters.convertOrderbookStringFieldsToBigNumber(orderbook);
|
||||
return {
|
||||
type,
|
||||
payload: orderbook,
|
||||
};
|
||||
return messageObj;
|
||||
}
|
||||
case (OrderbookChannelMessageTypes.Update): {
|
||||
assert.doesConformToSchema('message', messageObj, schemas.relayerApiOrderbookChannelUpdateSchema);
|
||||
const order = messageObj.payload;
|
||||
typeConverters.convertOrderStringFieldsToBigNumber(order);
|
||||
return {
|
||||
type,
|
||||
payload: order,
|
||||
};
|
||||
return messageObj;
|
||||
}
|
||||
default: {
|
||||
return {
|
||||
type: OrderbookChannelMessageTypes.Unknown,
|
||||
requestId: 0,
|
||||
payload: undefined,
|
||||
};
|
||||
}
|
||||
|
@ -22,9 +22,10 @@ export class WebSocketOrderbookChannel implements OrderbookChannel {
|
||||
private apiEndpointUrl: string;
|
||||
private client: WebSocket.client;
|
||||
private connectionIfExists?: WebSocket.connection;
|
||||
private subscriptionCounter = 0;
|
||||
/**
|
||||
* Instantiates a new WebSocketOrderbookChannel instance
|
||||
* @param url The base url for making API calls
|
||||
* @param url The relayer API base WS url you would like to interact with
|
||||
* @return An instance of WebSocketOrderbookChannel
|
||||
*/
|
||||
constructor(url: string) {
|
||||
@ -46,23 +47,25 @@ export class WebSocketOrderbookChannel implements OrderbookChannel {
|
||||
assert.isFunction('handler.onUpdate', _.get(handler, 'onUpdate'));
|
||||
assert.isFunction('handler.onError', _.get(handler, 'onError'));
|
||||
assert.isFunction('handler.onClose', _.get(handler, 'onClose'));
|
||||
this.subscriptionCounter += 1;
|
||||
const subscribeMessage = {
|
||||
type: 'subscribe',
|
||||
channel: 'orderbook',
|
||||
requestId: this.subscriptionCounter,
|
||||
payload: subscriptionOpts,
|
||||
};
|
||||
this._getConnection((error, connection) => {
|
||||
if (!_.isUndefined(error)) {
|
||||
handler.onError(this, error);
|
||||
handler.onError(this, subscriptionOpts, error);
|
||||
} else if (!_.isUndefined(connection) && connection.connected) {
|
||||
connection.on(WebsocketConnectionEventType.Error, wsError => {
|
||||
handler.onError(this, wsError);
|
||||
handler.onError(this, subscriptionOpts, wsError);
|
||||
});
|
||||
connection.on(WebsocketConnectionEventType.Close, () => {
|
||||
handler.onClose(this);
|
||||
});
|
||||
connection.on(WebsocketConnectionEventType.Message, message => {
|
||||
this._handleWebSocketMessage(message, handler);
|
||||
this._handleWebSocketMessage(subscribeMessage.requestId, subscriptionOpts, message, handler);
|
||||
});
|
||||
connection.sendUTF(JSON.stringify(subscribeMessage));
|
||||
}
|
||||
@ -90,30 +93,34 @@ export class WebSocketOrderbookChannel implements OrderbookChannel {
|
||||
this.client.connect(this.apiEndpointUrl);
|
||||
}
|
||||
}
|
||||
private _handleWebSocketMessage(message: WebSocket.IMessage, handler: OrderbookChannelHandler): void {
|
||||
private _handleWebSocketMessage(requestId: number, subscriptionOpts: OrderbookChannelSubscriptionOpts,
|
||||
message: WebSocket.IMessage, handler: OrderbookChannelHandler): void {
|
||||
if (!_.isUndefined(message.utf8Data)) {
|
||||
try {
|
||||
const utf8Data = message.utf8Data;
|
||||
const parserResult = orderbookChannelMessageParsers.parser(utf8Data);
|
||||
const type = parserResult.type;
|
||||
if (parserResult.requestId === requestId) {
|
||||
switch (parserResult.type) {
|
||||
case (OrderbookChannelMessageTypes.Snapshot): {
|
||||
handler.onSnapshot(this, parserResult.payload);
|
||||
handler.onSnapshot(this, subscriptionOpts, parserResult.payload);
|
||||
break;
|
||||
}
|
||||
case (OrderbookChannelMessageTypes.Update): {
|
||||
handler.onUpdate(this, parserResult.payload);
|
||||
handler.onUpdate(this, subscriptionOpts, parserResult.payload);
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
handler.onError(this, new Error(`Message has missing a type parameter: ${utf8Data}`));
|
||||
handler.onError(
|
||||
this, subscriptionOpts, new Error(`Message has missing a type parameter: ${utf8Data}`));
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
handler.onError(this, error);
|
||||
handler.onError(this, subscriptionOpts, error);
|
||||
}
|
||||
} else {
|
||||
handler.onError(this, new Error(`Message does not contain utf8Data`));
|
||||
handler.onError(this, subscriptionOpts, new Error(`Message does not contain utf8Data`));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -5,13 +5,13 @@ const orderbookJsonString = JSON.stringify(orderbookJSON);
|
||||
export const snapshotOrderbookChannelMessage = `{
|
||||
"type": "snapshot",
|
||||
"channel": "orderbook",
|
||||
"channelId": 1,
|
||||
"requestId": 1,
|
||||
"payload": ${orderbookJsonString}
|
||||
}`;
|
||||
|
||||
export const malformedSnapshotOrderbookChannelMessage = `{
|
||||
"type": "snapshot",
|
||||
"channel": "orderbook",
|
||||
"channelId": 1,
|
||||
"requestId": 1,
|
||||
"payload": {}
|
||||
}`;
|
||||
|
@ -5,6 +5,6 @@ const orderJSONString = JSON.stringify(orderResponseJSON);
|
||||
export const unknownOrderbookChannelMessage = `{
|
||||
"type": "superGoodUpdate",
|
||||
"channel": "orderbook",
|
||||
"channelId": 1,
|
||||
"requestId": 1,
|
||||
"payload": ${orderJSONString}
|
||||
}`;
|
||||
|
@ -5,13 +5,13 @@ const orderJSONString = JSON.stringify(orderResponseJSON);
|
||||
export const updateOrderbookChannelMessage = `{
|
||||
"type": "update",
|
||||
"channel": "orderbook",
|
||||
"channelId": 1,
|
||||
"requestId": 1,
|
||||
"payload": ${orderJSONString}
|
||||
}`;
|
||||
|
||||
export const malformedUpdateOrderbookChannelMessage = `{
|
||||
"type": "update",
|
||||
"channel": "orderbook",
|
||||
"channelId": 1,
|
||||
"requestId": 1,
|
||||
"payload": {}
|
||||
}`;
|
||||
|
@ -41,12 +41,22 @@ describe('orderbookChannelMessageParsers', () => {
|
||||
it('throws when message does not include a type', () => {
|
||||
const typelessMessage = `{
|
||||
"channel": "orderbook",
|
||||
"channelId": 1,
|
||||
"requestId": 1,
|
||||
"payload": {}
|
||||
}`;
|
||||
const badCall = () => orderbookChannelMessageParsers.parser(typelessMessage);
|
||||
expect(badCall).throws(`Message is missing a type parameter: ${typelessMessage}`);
|
||||
});
|
||||
it('throws when type is not a string', () => {
|
||||
const messageWithBadType = `{
|
||||
"type": 1,
|
||||
"channel": "orderbook",
|
||||
"requestId": 1,
|
||||
"payload": {}
|
||||
}`;
|
||||
const badCall = () => orderbookChannelMessageParsers.parser(messageWithBadType);
|
||||
expect(badCall).throws('Expected type to be of type string, encountered: 1');
|
||||
});
|
||||
it('throws when snapshot message has malformed payload', () => {
|
||||
const badCall = () =>
|
||||
orderbookChannelMessageParsers.parser(malformedSnapshotOrderbookChannelMessage);
|
||||
|
@ -4,9 +4,10 @@ export const relayerApiOrderbookChannelSubscribeSchema = {
|
||||
properties: {
|
||||
type: {enum: ['subscribe']},
|
||||
channel: {enum: ['orderbook']},
|
||||
requestId: {type: 'number'},
|
||||
payload: {$ref: '/RelayerApiOrderbookChannelSubscribePayload'},
|
||||
},
|
||||
required: ['type', 'channel', 'payload'],
|
||||
required: ['type', 'channel', 'requestId', 'payload'],
|
||||
};
|
||||
|
||||
export const relayerApiOrderbookChannelSubscribePayload = {
|
||||
|
@ -4,10 +4,10 @@ export const relayerApiOrderbookChannelSnapshotSchema = {
|
||||
properties: {
|
||||
type: {enum: ['snapshot']},
|
||||
channel: {enum: ['orderbook']},
|
||||
channelId: {type: 'number'},
|
||||
requestId: {type: 'number'},
|
||||
payload: {$ref: '/RelayerApiOrderbookChannelSnapshotPayload'},
|
||||
},
|
||||
required: ['type', 'channel', 'channelId', 'payload'],
|
||||
required: ['type', 'channel', 'requestId', 'payload'],
|
||||
};
|
||||
|
||||
export const relayerApiOrderbookChannelSnapshotPayload = {
|
||||
|
@ -4,8 +4,8 @@ export const relayerApiOrderbookChannelUpdateSchema = {
|
||||
properties: {
|
||||
type: {enum: ['update']},
|
||||
channel: {enum: ['orderbook']},
|
||||
channelId: {type: 'number'},
|
||||
requestId: {type: 'number'},
|
||||
payload: {$ref: '/SignedOrder'},
|
||||
},
|
||||
required: ['type', 'channel', 'channelId', 'payload'],
|
||||
required: ['type', 'channel', 'requestId', 'payload'],
|
||||
};
|
||||
|
@ -432,6 +432,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'subscribe',
|
||||
channel: 'orderbook',
|
||||
requestId: 1,
|
||||
payload: {
|
||||
baseTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
quoteTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
@ -442,6 +443,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'subscribe',
|
||||
channel: 'orderbook',
|
||||
requestId: 1,
|
||||
payload: {
|
||||
baseTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
quoteTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
@ -453,9 +455,20 @@ describe('Schema', () => {
|
||||
it('should fail for invalid orderbook channel websocket subscribe message', () => {
|
||||
const checksummedAddress = '0xA2b31daCf30a9C50ca473337c01d8A201ae33e32';
|
||||
const testCases = [
|
||||
{
|
||||
type: 'subscribe',
|
||||
channel: 'orderbook',
|
||||
payload: {
|
||||
baseTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
quoteTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
snapshot: true,
|
||||
limit: 100,
|
||||
},
|
||||
},
|
||||
{
|
||||
type: 'foo',
|
||||
channel: 'orderbook',
|
||||
requestId: 1,
|
||||
payload: {
|
||||
baseTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
quoteTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
@ -464,6 +477,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'subscribe',
|
||||
channel: 'bar',
|
||||
requestId: 1,
|
||||
payload: {
|
||||
baseTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
quoteTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
@ -472,6 +486,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'subscribe',
|
||||
channel: 'orderbook',
|
||||
requestId: 1,
|
||||
payload: {
|
||||
baseTokenAddress: checksummedAddress,
|
||||
quoteTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
@ -480,6 +495,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'subscribe',
|
||||
channel: 'orderbook',
|
||||
requestId: 1,
|
||||
payload: {
|
||||
baseTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
quoteTokenAddress: checksummedAddress,
|
||||
@ -488,6 +504,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'subscribe',
|
||||
channel: 'orderbook',
|
||||
requestId: 1,
|
||||
payload: {
|
||||
quoteTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
},
|
||||
@ -495,6 +512,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'subscribe',
|
||||
channel: 'orderbook',
|
||||
requestId: 1,
|
||||
payload: {
|
||||
baseTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
},
|
||||
@ -502,6 +520,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'subscribe',
|
||||
channel: 'orderbook',
|
||||
requestId: 1,
|
||||
payload: {
|
||||
baseTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
quoteTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
@ -512,6 +531,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'subscribe',
|
||||
channel: 'orderbook',
|
||||
requestId: 1,
|
||||
payload: {
|
||||
baseTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
quoteTokenAddress: '0x323b5d4c32345ced77393b3530b1eed0f346429d',
|
||||
@ -530,7 +550,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'snapshot',
|
||||
channel: 'orderbook',
|
||||
channelId: 2,
|
||||
requestId: 2,
|
||||
payload: {
|
||||
bids: [],
|
||||
asks: [],
|
||||
@ -539,7 +559,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'snapshot',
|
||||
channel: 'orderbook',
|
||||
channelId: 2,
|
||||
requestId: 2,
|
||||
payload: {
|
||||
bids: [
|
||||
signedOrder,
|
||||
@ -557,7 +577,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'foo',
|
||||
channel: 'orderbook',
|
||||
channelId: 2,
|
||||
requestId: 2,
|
||||
payload: {
|
||||
bids: [
|
||||
signedOrder,
|
||||
@ -570,7 +590,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'snapshot',
|
||||
channel: 'bar',
|
||||
channelId: 2,
|
||||
requestId: 2,
|
||||
payload: {
|
||||
bids: [
|
||||
signedOrder,
|
||||
@ -595,7 +615,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'snapshot',
|
||||
channel: 'orderbook',
|
||||
channelId: '2',
|
||||
requestId: '2',
|
||||
payload: {
|
||||
bids: [
|
||||
signedOrder,
|
||||
@ -608,7 +628,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'snapshot',
|
||||
channel: 'orderbook',
|
||||
channelId: 2,
|
||||
requestId: 2,
|
||||
payload: {
|
||||
bids: [
|
||||
signedOrder,
|
||||
@ -618,7 +638,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'snapshot',
|
||||
channel: 'orderbook',
|
||||
channelId: 2,
|
||||
requestId: 2,
|
||||
payload: {
|
||||
asks: [
|
||||
signedOrder,
|
||||
@ -628,7 +648,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'snapshot',
|
||||
channel: 'orderbook',
|
||||
channelId: 2,
|
||||
requestId: 2,
|
||||
payload: {
|
||||
bids: [
|
||||
signedOrder,
|
||||
@ -641,7 +661,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'snapshot',
|
||||
channel: 'orderbook',
|
||||
channelId: 2,
|
||||
requestId: 2,
|
||||
payload: {
|
||||
bids: [
|
||||
{},
|
||||
@ -662,7 +682,7 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'update',
|
||||
channel: 'orderbook',
|
||||
channelId: 2,
|
||||
requestId: 2,
|
||||
payload: signedOrder,
|
||||
},
|
||||
];
|
||||
@ -673,16 +693,19 @@ describe('Schema', () => {
|
||||
{
|
||||
type: 'foo',
|
||||
channel: 'orderbook',
|
||||
requestId: 2,
|
||||
payload: signedOrder,
|
||||
},
|
||||
{
|
||||
type: 'update',
|
||||
channel: 'bar',
|
||||
requestId: 2,
|
||||
payload: signedOrder,
|
||||
},
|
||||
{
|
||||
type: 'update',
|
||||
channel: 'orderbook',
|
||||
requestId: 2,
|
||||
payload: {},
|
||||
},
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user