Sharkey/src/server/api/stream/server-stats.ts

36 lines
765 B
TypeScript
Raw Normal View History

2017-06-08 19:03:54 +03:00
import * as websocket from 'websocket';
import Xev from 'xev';
const ev = new Xev();
2018-03-07 04:40:40 +02:00
export default function(request: websocket.request, connection: websocket.connection): void {
2017-06-08 19:03:54 +03:00
const onStats = stats => {
connection.send(JSON.stringify({
type: 'stats',
body: stats
}));
};
connection.on('message', async data => {
const msg = JSON.parse(data.utf8Data);
switch (msg.type) {
case 'requestLog':
ev.once('serverStatsLog:' + msg.id, statsLog => {
connection.send(JSON.stringify({
type: 'statsLog',
body: statsLog
}));
});
ev.emit('requestServerStatsLog', msg.id);
break;
}
});
ev.addListener('serverStats', onStats);
2017-06-08 19:03:54 +03:00
connection.on('close', () => {
ev.removeListener('serverStats', onStats);
2017-06-08 19:03:54 +03:00
});
}