2016-12-28 23:49:51 +01:00
|
|
|
import * as http from 'http';
|
|
|
|
import * as websocket from 'websocket';
|
|
|
|
import * as redis from 'redis';
|
2017-01-17 01:17:52 +01:00
|
|
|
import config from '../conf';
|
2017-09-16 07:30:44 +02:00
|
|
|
import { default as User, IUser } from './models/user';
|
2017-01-06 04:09:57 +01:00
|
|
|
import AccessToken from './models/access-token';
|
2017-01-06 03:07:42 +01:00
|
|
|
import isNativeToken from './common/is-native-token';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
import homeStream from './stream/home';
|
2017-11-16 15:46:36 +01:00
|
|
|
import driveStream from './stream/drive';
|
2016-12-28 23:49:51 +01:00
|
|
|
import messagingStream from './stream/messaging';
|
2017-11-13 16:54:16 +01:00
|
|
|
import messagingIndexStream from './stream/messaging-index';
|
2018-03-07 03:40:40 +01:00
|
|
|
import othelloGameStream from './stream/othello-game';
|
2018-03-07 09:48:32 +01:00
|
|
|
import othelloStream from './stream/othello';
|
2017-06-08 18:03:54 +02:00
|
|
|
import serverStream from './stream/server';
|
2017-11-13 11:58:29 +01:00
|
|
|
import requestsStream from './stream/requests';
|
2017-10-31 19:17:14 +01:00
|
|
|
import channelStream from './stream/channel';
|
2016-12-28 23:49:51 +01: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 18:03:54 +02:00
|
|
|
if (request.resourceURL.pathname === '/server') {
|
|
|
|
serverStream(request, connection);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-13 11:58:29 +01:00
|
|
|
if (request.resourceURL.pathname === '/requests') {
|
|
|
|
requestsStream(request, connection);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
// Connect to Redis
|
|
|
|
const subscriber = redis.createClient(
|
|
|
|
config.redis.port, config.redis.host);
|
|
|
|
|
|
|
|
connection.on('close', () => {
|
|
|
|
subscriber.unsubscribe();
|
|
|
|
subscriber.quit();
|
|
|
|
});
|
|
|
|
|
2017-10-31 19:17:14 +01:00
|
|
|
if (request.resourceURL.pathname === '/channel') {
|
|
|
|
channelStream(request, connection, subscriber);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const user = await authenticate(request.resourceURL.query.i);
|
|
|
|
|
|
|
|
if (user == null) {
|
|
|
|
connection.send('authentication-failed');
|
|
|
|
connection.close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-28 23:49:51 +01:00
|
|
|
const channel =
|
|
|
|
request.resourceURL.pathname === '/' ? homeStream :
|
2017-11-16 15:46:36 +01:00
|
|
|
request.resourceURL.pathname === '/drive' ? driveStream :
|
2016-12-28 23:49:51 +01:00
|
|
|
request.resourceURL.pathname === '/messaging' ? messagingStream :
|
2017-11-13 16:54:16 +01:00
|
|
|
request.resourceURL.pathname === '/messaging-index' ? messagingIndexStream :
|
2018-03-07 03:40:40 +01:00
|
|
|
request.resourceURL.pathname === '/othello-game' ? othelloGameStream :
|
2018-03-07 09:48:32 +01:00
|
|
|
request.resourceURL.pathname === '/othello' ? othelloStream :
|
2016-12-28 23:49:51 +01:00
|
|
|
null;
|
|
|
|
|
|
|
|
if (channel !== null) {
|
|
|
|
channel(request, connection, subscriber, user);
|
|
|
|
} else {
|
|
|
|
connection.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-09-16 07:30:44 +02:00
|
|
|
/**
|
|
|
|
* 接続してきたユーザーを取得します
|
|
|
|
* @param token 送信されてきたトークン
|
|
|
|
*/
|
|
|
|
function authenticate(token: string): Promise<IUser> {
|
2017-01-20 23:45:49 +01:00
|
|
|
if (token == null) {
|
|
|
|
return Promise.resolve(null);
|
|
|
|
}
|
|
|
|
|
2017-01-05 17:45:02 +01:00
|
|
|
return new Promise(async (resolve, reject) => {
|
2017-01-06 03:07:42 +01:00
|
|
|
if (isNativeToken(token)) {
|
2016-12-28 23:49:51 +01:00
|
|
|
// Fetch user
|
2017-09-16 07:30:44 +02:00
|
|
|
const user: IUser = await User
|
2016-12-28 23:49:51 +01:00
|
|
|
.findOne({
|
2017-01-05 17:45:02 +01:00
|
|
|
token: token
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
2017-01-05 17:45:02 +01:00
|
|
|
resolve(user);
|
|
|
|
} else {
|
2017-01-06 04:09:57 +01:00
|
|
|
const accessToken = await AccessToken.findOne({
|
2017-01-06 03:50:46 +01:00
|
|
|
hash: token
|
2017-01-05 17:45:02 +01:00
|
|
|
});
|
|
|
|
|
2017-01-06 04:09:57 +01:00
|
|
|
if (accessToken == null) {
|
2017-01-06 04:30:35 +01:00
|
|
|
return reject('invalid signature');
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2017-01-05 17:45:02 +01:00
|
|
|
// Fetch user
|
2017-09-16 07:30:44 +02:00
|
|
|
const user: IUser = await User
|
|
|
|
.findOne({ _id: accessToken.user_id });
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
resolve(user);
|
2017-01-05 17:45:02 +01:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
}
|