2016-12-28 16:49:51 -06:00
|
|
|
import * as http from 'http';
|
|
|
|
import * as websocket from 'websocket';
|
|
|
|
import * as redis from 'redis';
|
2018-04-01 23:15:53 -05:00
|
|
|
import config from '../../config';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
import homeStream from './stream/home';
|
2018-04-17 00:52:28 -05:00
|
|
|
import localTimelineStream from './stream/local-timeline';
|
|
|
|
import globalTimelineStream from './stream/global-timeline';
|
2017-11-16 08:46:36 -06:00
|
|
|
import driveStream from './stream/drive';
|
2016-12-28 16:49:51 -06:00
|
|
|
import messagingStream from './stream/messaging';
|
2017-11-13 09:54:16 -06:00
|
|
|
import messagingIndexStream from './stream/messaging-index';
|
2018-03-06 20:40:40 -06:00
|
|
|
import othelloGameStream from './stream/othello-game';
|
2018-03-07 02:48:32 -06:00
|
|
|
import othelloStream from './stream/othello';
|
2017-06-08 11:03:54 -05:00
|
|
|
import serverStream from './stream/server';
|
2017-11-13 04:58:29 -06:00
|
|
|
import requestsStream from './stream/requests';
|
2017-10-31 13:17:14 -05:00
|
|
|
import channelStream from './stream/channel';
|
2018-03-29 06:32:18 -05:00
|
|
|
import { ParsedUrlQuery } from 'querystring';
|
2018-04-11 03:40:01 -05:00
|
|
|
import authenticate from './authenticate';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
module.exports = (server: http.Server) => {
|
|
|
|
/**
|
|
|
|
* Init websocket server
|
|
|
|
*/
|
|
|
|
const ws = new websocket.server({
|
|
|
|
httpServer: server
|
|
|
|
});
|
|
|
|
|
|
|
|
ws.on('request', async (request) => {
|
|
|
|
const connection = request.accept();
|
|
|
|
|
2017-06-08 11:03:54 -05:00
|
|
|
if (request.resourceURL.pathname === '/server') {
|
|
|
|
serverStream(request, connection);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-13 04:58:29 -06:00
|
|
|
if (request.resourceURL.pathname === '/requests') {
|
|
|
|
requestsStream(request, connection);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-28 16:49:51 -06:00
|
|
|
// Connect to Redis
|
|
|
|
const subscriber = redis.createClient(
|
|
|
|
config.redis.port, config.redis.host);
|
|
|
|
|
|
|
|
connection.on('close', () => {
|
|
|
|
subscriber.unsubscribe();
|
|
|
|
subscriber.quit();
|
|
|
|
});
|
|
|
|
|
2017-10-31 13:17:14 -05:00
|
|
|
if (request.resourceURL.pathname === '/channel') {
|
|
|
|
channelStream(request, connection, subscriber);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-29 06:32:18 -05:00
|
|
|
const q = request.resourceURL.query as ParsedUrlQuery;
|
2018-04-11 03:40:01 -05:00
|
|
|
const [user, app] = await authenticate(q.i as string);
|
2017-10-31 13:17:14 -05:00
|
|
|
|
2018-03-13 14:37:20 -05:00
|
|
|
if (request.resourceURL.pathname === '/othello-game') {
|
|
|
|
othelloGameStream(request, connection, subscriber, user);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-10-31 13:17:14 -05:00
|
|
|
if (user == null) {
|
|
|
|
connection.send('authentication-failed');
|
|
|
|
connection.close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-17 00:52:28 -05:00
|
|
|
const channel: any =
|
2016-12-28 16:49:51 -06:00
|
|
|
request.resourceURL.pathname === '/' ? homeStream :
|
2018-04-17 00:52:28 -05:00
|
|
|
request.resourceURL.pathname === '/local-timeline' ? localTimelineStream :
|
|
|
|
request.resourceURL.pathname === '/global-timeline' ? globalTimelineStream :
|
2017-11-16 08:46:36 -06:00
|
|
|
request.resourceURL.pathname === '/drive' ? driveStream :
|
2016-12-28 16:49:51 -06:00
|
|
|
request.resourceURL.pathname === '/messaging' ? messagingStream :
|
2017-11-13 09:54:16 -06:00
|
|
|
request.resourceURL.pathname === '/messaging-index' ? messagingIndexStream :
|
2018-03-07 02:48:32 -06:00
|
|
|
request.resourceURL.pathname === '/othello' ? othelloStream :
|
2016-12-28 16:49:51 -06:00
|
|
|
null;
|
|
|
|
|
|
|
|
if (channel !== null) {
|
2018-04-11 03:40:01 -05:00
|
|
|
channel(request, connection, subscriber, user, app);
|
2016-12-28 16:49:51 -06:00
|
|
|
} else {
|
|
|
|
connection.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|