1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-02 08:05:58 +09:00
cherrypick/src/server/api/streaming.ts

58 lines
1.3 KiB
TypeScript
Raw Normal View History

2016-12-29 07:49:51 +09:00
import * as http from 'http';
import * as websocket from 'websocket';
import * as redis from 'redis';
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';
import { EventEmitter } from 'events';
import config from '../../config';
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 q = request.resourceURL.query as ParsedUrlQuery;
const [user, app] = await authenticate(q.i as string);
2017-06-09 01:03:54 +09:00
2018-11-12 00:31:09 +09:00
const connection = request.accept();
let ev: EventEmitter;
2019-04-13 19:19:32 +09:00
// Connect to Redis
const subscriber = redis.createClient(
config.redis.port, config.redis.host);
2019-04-13 19:19:32 +09:00
subscriber.subscribe('misskey');
2019-04-13 19:19:32 +09:00
ev = new EventEmitter();
2019-04-13 19:19:32 +09:00
subscriber.on('message', async (_, data) => {
const obj = JSON.parse(data);
2019-04-13 19:19:32 +09:00
ev.emit(obj.channel, obj.message);
});
2019-04-13 19:19:32 +09:00
connection.once('close', () => {
subscriber.unsubscribe();
subscriber.quit();
});
const main = new MainStreamConnection(connection, ev, user, app);
2016-12-29 07:49:51 +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
});
};