2017-02-03 18:34:31 -05:00
|
|
|
import WebSocketClient from 'websocket.js';
|
|
|
|
|
2018-05-17 20:32:35 -04:00
|
|
|
const randomIntUpTo = max => Math.floor(Math.random() * Math.floor(max));
|
|
|
|
|
2019-03-07 16:17:52 -05:00
|
|
|
export function connectStream(path, pollingRefresh = null, callbacks = () => ({ onConnect() {}, onDisconnect() {}, onReceive() {} })) {
|
2017-11-15 10:04:15 -05:00
|
|
|
return (dispatch, getState) => {
|
|
|
|
const streamingAPIBaseURL = getState().getIn(['meta', 'streaming_api_base_url']);
|
|
|
|
const accessToken = getState().getIn(['meta', 'access_token']);
|
2019-03-07 16:17:52 -05:00
|
|
|
const { onConnect, onDisconnect, onReceive } = callbacks(dispatch, getState);
|
2018-05-17 20:32:35 -04:00
|
|
|
|
2017-11-15 10:04:15 -05:00
|
|
|
let polling = null;
|
|
|
|
|
|
|
|
const setupPolling = () => {
|
2018-05-17 20:32:35 -04:00
|
|
|
pollingRefresh(dispatch, () => {
|
|
|
|
polling = setTimeout(() => setupPolling(), 20000 + randomIntUpTo(20000));
|
|
|
|
});
|
2017-11-15 10:04:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
const clearPolling = () => {
|
|
|
|
if (polling) {
|
2018-05-17 20:32:35 -04:00
|
|
|
clearTimeout(polling);
|
2017-11-15 10:04:15 -05:00
|
|
|
polling = null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const subscription = getStream(streamingAPIBaseURL, accessToken, path, {
|
|
|
|
connected () {
|
|
|
|
if (pollingRefresh) {
|
|
|
|
clearPolling();
|
|
|
|
}
|
2019-03-07 16:17:52 -05:00
|
|
|
|
|
|
|
onConnect();
|
2017-11-15 10:04:15 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
disconnected () {
|
|
|
|
if (pollingRefresh) {
|
2018-05-17 20:32:35 -04:00
|
|
|
polling = setTimeout(() => setupPolling(), randomIntUpTo(40000));
|
2017-11-15 10:04:15 -05:00
|
|
|
}
|
2018-05-17 20:32:35 -04:00
|
|
|
|
2017-11-15 10:04:15 -05:00
|
|
|
onDisconnect();
|
|
|
|
},
|
|
|
|
|
|
|
|
received (data) {
|
|
|
|
onReceive(data);
|
|
|
|
},
|
|
|
|
|
|
|
|
reconnected () {
|
|
|
|
if (pollingRefresh) {
|
|
|
|
clearPolling();
|
|
|
|
pollingRefresh(dispatch);
|
|
|
|
}
|
2019-03-07 16:17:52 -05:00
|
|
|
|
|
|
|
onConnect();
|
2017-11-15 10:04:15 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
const disconnect = () => {
|
|
|
|
if (subscription) {
|
|
|
|
subscription.close();
|
|
|
|
}
|
2018-05-17 20:32:35 -04:00
|
|
|
|
2017-11-15 10:04:15 -05:00
|
|
|
clearPolling();
|
|
|
|
};
|
|
|
|
|
|
|
|
return disconnect;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-14 20:32:42 -04:00
|
|
|
export default function getStream(streamingAPIBaseURL, accessToken, stream, { connected, received, disconnected, reconnected }) {
|
2017-12-12 20:12:41 -05:00
|
|
|
const params = [ `stream=${stream}` ];
|
|
|
|
|
2019-05-24 09:21:42 -04:00
|
|
|
const ws = new WebSocketClient(`${streamingAPIBaseURL}/api/v1/streaming/?${params.join('&')}`, accessToken);
|
2017-02-03 18:34:31 -05:00
|
|
|
|
2017-02-07 08:37:12 -05:00
|
|
|
ws.onopen = connected;
|
|
|
|
ws.onmessage = e => received(JSON.parse(e.data));
|
|
|
|
ws.onclose = disconnected;
|
|
|
|
ws.onreconnect = reconnected;
|
2017-02-03 18:34:31 -05:00
|
|
|
|
|
|
|
return ws;
|
|
|
|
};
|