iceshrimp/src/server/api/streaming.ts

65 lines
1.8 KiB
TypeScript
Raw Normal View History

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