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';
|
2018-04-25 21:02:15 -05:00
|
|
|
import userListStream from './stream/user-list';
|
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-07-09 07:15:49 -05:00
|
|
|
import reversiGameStream from './stream/games/reversi-game';
|
|
|
|
import reversiStream from './stream/games/reversi';
|
2018-06-08 14:14:26 -05:00
|
|
|
import serverStatsStream from './stream/server-stats';
|
|
|
|
import notesStatsStream from './stream/notes-stats';
|
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();
|
|
|
|
|
2018-06-08 14:14:26 -05:00
|
|
|
if (request.resourceURL.pathname === '/server-stats') {
|
|
|
|
serverStatsStream(request, connection);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (request.resourceURL.pathname === '/notes-stats') {
|
|
|
|
notesStatsStream(request, connection);
|
2017-06-08 11:03:54 -05:00
|
|
|
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();
|
|
|
|
});
|
|
|
|
|
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-07-09 07:15:49 -05:00
|
|
|
if (request.resourceURL.pathname === '/games/reversi-game') {
|
2018-06-16 18:10:54 -05:00
|
|
|
reversiGameStream(request, connection, subscriber, user);
|
2018-03-13 14:37:20 -05:00
|
|
|
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 :
|
2018-04-25 21:02:15 -05:00
|
|
|
request.resourceURL.pathname === '/user-list' ? userListStream :
|
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-07-09 07:15:49 -05:00
|
|
|
request.resourceURL.pathname === '/games/reversi' ? reversiStream :
|
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();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|