iceshrimp/src/server/api/streaming.ts

63 lines
1.4 KiB
TypeScript
Raw Normal View History

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