yumechi-no-kuni/src/server/api/streaming.ts

121 lines
3 KiB
TypeScript
Raw Normal View History

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';
2018-03-29 06:32:18 -05:00
import { default as User, IUser } from '../../models/user';
import AccessToken from '../../models/access-token';
2017-01-05 20:07:42 -06:00
import isNativeToken from './common/is-native-token';
2016-12-28 16:49:51 -06:00
import homeStream from './stream/home';
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';
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;
const user = 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;
}
2016-12-28 16:49:51 -06:00
const channel =
request.resourceURL.pathname === '/' ? homeStream :
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) {
channel(request, connection, subscriber, user);
} else {
connection.close();
}
});
};
2017-09-16 00:30:44 -05:00
/**
*
* @param token
*/
function authenticate(token: string): Promise<IUser> {
2017-01-20 16:45:49 -06:00
if (token == null) {
return Promise.resolve(null);
}
return new Promise(async (resolve, reject) => {
2017-01-05 20:07:42 -06:00
if (isNativeToken(token)) {
2016-12-28 16:49:51 -06:00
// Fetch user
2017-09-16 00:30:44 -05:00
const user: IUser = await User
2016-12-28 16:49:51 -06:00
.findOne({
2018-03-27 02:51:12 -05:00
host: null,
2018-04-07 13:58:11 -05:00
'token': token
2016-12-28 16:49:51 -06:00
});
resolve(user);
} else {
const accessToken = await AccessToken.findOne({
2017-01-05 20:50:46 -06:00
hash: token
});
if (accessToken == null) {
2017-01-05 21:30:35 -06:00
return reject('invalid signature');
2016-12-28 16:49:51 -06:00
}
// Fetch user
2017-09-16 00:30:44 -05:00
const user: IUser = await User
2018-03-29 00:48:47 -05:00
.findOne({ _id: accessToken.userId });
2016-12-28 16:49:51 -06:00
resolve(user);
}
2016-12-28 16:49:51 -06:00
});
}