sharkey/src/server/api/streaming.ts

61 lines
1.7 KiB
TypeScript
Raw Normal View History

2016-12-29 07:49:51 +09:00
import * as http from 'http';
import * as websocket from 'websocket';
2018-07-30 07:20:27 +09:00
import Xev from 'xev';
2016-12-29 07:49:51 +09:00
import MainStreamConnection from './stream';
2018-03-29 20:32:18 +09:00
import { ParsedUrlQuery } from 'querystring';
import authenticate from './authenticate';
2018-10-07 17:19:52 +09:00
import channels from './stream/channels';
2016-12-29 07:49:51 +09:00
module.exports = (server: http.Server) => {
// Init websocket server
2016-12-29 07:49:51 +09:00
const ws = new websocket.server({
httpServer: server
});
ws.on('request', async (request) => {
const connection = request.accept();
const ev = new Xev();
2018-06-09 04:14:26 +09:00
const q = request.resourceURL.query as ParsedUrlQuery;
const [user, app] = await authenticate(q.i as string);
2017-06-09 01:03:54 +09:00
const main = new MainStreamConnection(connection, ev, user, app);
2016-12-29 07:49:51 +09:00
2018-10-07 17:19:52 +09:00
// 後方互換性のため
if (request.resourceURL.pathname !== '/streaming') {
2018-10-08 00:58:10 +09:00
main.sendMessageToWsOverride = (type: string, payload: any) => {
2018-10-07 17:19:52 +09:00
if (type == 'channel') {
type = payload.type;
payload = payload.body;
}
2018-10-08 08:58:12 +09:00
if (type.startsWith('api:')) {
2018-10-08 09:02:11 +09:00
type = type.replace('api:', 'api-res:');
2018-10-08 08:58:12 +09:00
}
2018-10-07 17:19:52 +09:00
connection.send(JSON.stringify({
type: type,
body: payload
}));
};
2018-10-08 00:58:10 +09:00
main.connectChannel(Math.random().toString(), null,
request.resourceURL.pathname === '/' ? channels.homeTimeline :
request.resourceURL.pathname === '/local-timeline' ? channels.localTimeline :
request.resourceURL.pathname === '/hybrid-timeline' ? channels.hybridTimeline :
request.resourceURL.pathname === '/global-timeline' ? channels.globalTimeline : null);
2018-10-07 17:19:52 +09:00
}
2018-07-30 07:20:27 +09:00
connection.once('close', () => {
ev.removeAllListeners();
main.dispose();
2016-12-29 07:49:51 +09:00
});
2018-09-17 09:07:46 +09:00
connection.on('message', async (data) => {
if (data.utf8Data == 'ping') {
connection.send('pong');
}
});
2016-12-29 07:49:51 +09:00
});
};