rudeshark.net/src/server/api/stream/notes-stats.ts

36 lines
761 B
TypeScript
Raw Normal View History

2017-06-08 18:03:54 +02:00
import * as websocket from 'websocket';
import Xev from 'xev';
const ev = new Xev();
2018-03-07 03:40:40 +01:00
export default function(request: websocket.request, connection: websocket.connection): void {
2017-06-08 18:03:54 +02: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':
2018-06-08 21:14:26 +02:00
ev.once('notesStatsLog:' + msg.id, statsLog => {
connection.send(JSON.stringify({
type: 'statsLog',
body: statsLog
}));
});
2018-06-08 21:14:26 +02:00
ev.emit('requestNotesStatsLog', msg.id);
break;
}
});
2018-06-08 21:14:26 +02:00
ev.addListener('notesStats', onStats);
2017-06-08 18:03:54 +02:00
connection.on('close', () => {
2018-06-08 21:14:26 +02:00
ev.removeListener('notesStats', onStats);
2017-06-08 18:03:54 +02:00
});
}