2016-12-28 16:49:51 -06:00
|
|
|
import * as http from 'http';
|
|
|
|
import * as websocket from 'websocket';
|
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
import MainStreamConnection from './stream';
|
2018-03-29 06:32:18 -05:00
|
|
|
import { ParsedUrlQuery } from 'querystring';
|
2018-04-11 03:40:01 -05:00
|
|
|
import authenticate from './authenticate';
|
2018-10-11 04:09:41 -05:00
|
|
|
import { EventEmitter } from 'events';
|
2021-03-23 00:54:09 -05:00
|
|
|
import { subsdcriber as redisClient } from '../../db/redis';
|
2021-04-17 01:30:26 -05:00
|
|
|
import { Users } from '@/models';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
module.exports = (server: http.Server) => {
|
2018-10-06 21:06:17 -05:00
|
|
|
// Init websocket server
|
2016-12-28 16:49:51 -06:00
|
|
|
const ws = new websocket.server({
|
|
|
|
httpServer: server
|
|
|
|
});
|
|
|
|
|
|
|
|
ws.on('request', async (request) => {
|
2018-10-06 21:06:17 -05:00
|
|
|
const q = request.resourceURL.query as ParsedUrlQuery;
|
2020-04-25 21:19:57 -05:00
|
|
|
|
|
|
|
// TODO: トークンが間違ってるなどしてauthenticateに失敗したら
|
|
|
|
// コネクション切断するなりエラーメッセージ返すなりする
|
|
|
|
// (現状はエラーがキャッチされておらずサーバーのログに流れて邪魔なので)
|
2018-10-06 21:06:17 -05:00
|
|
|
const [user, app] = await authenticate(q.i as string);
|
2017-06-08 11:03:54 -05:00
|
|
|
|
2018-11-11 09:31:09 -06:00
|
|
|
const connection = request.accept();
|
|
|
|
|
2021-03-22 21:53:25 -05:00
|
|
|
const ev = new EventEmitter();
|
2018-10-11 04:09:41 -05:00
|
|
|
|
2021-03-22 21:53:25 -05:00
|
|
|
async function onRedisMessage(_: string, data: string) {
|
|
|
|
const parsed = JSON.parse(data);
|
|
|
|
ev.emit(parsed.channel, parsed.message);
|
|
|
|
}
|
2018-10-11 04:09:41 -05:00
|
|
|
|
2021-03-22 21:53:25 -05:00
|
|
|
redisClient.on('message', onRedisMessage);
|
2018-10-11 04:09:41 -05:00
|
|
|
|
2018-10-06 21:06:17 -05:00
|
|
|
const main = new MainStreamConnection(connection, ev, user, app);
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2021-04-18 08:35:47 -05:00
|
|
|
const intervalId = user ? setInterval(() => {
|
|
|
|
Users.update(user.id, {
|
|
|
|
lastActiveDate: new Date(),
|
|
|
|
});
|
|
|
|
}, 1000 * 60 * 5) : null;
|
|
|
|
if (user) {
|
|
|
|
Users.update(user.id, {
|
|
|
|
lastActiveDate: new Date(),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-07-29 17:20:27 -05:00
|
|
|
connection.once('close', () => {
|
|
|
|
ev.removeAllListeners();
|
2018-10-06 21:06:17 -05:00
|
|
|
main.dispose();
|
2021-03-22 21:53:25 -05:00
|
|
|
redisClient.off('message', onRedisMessage);
|
2021-04-18 08:35:47 -05:00
|
|
|
if (intervalId) clearInterval(intervalId);
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
|
|
|
|
2018-09-16 19:07:46 -05:00
|
|
|
connection.on('message', async (data) => {
|
2020-04-03 18:46:54 -05:00
|
|
|
if (data.utf8Data === 'ping') {
|
2018-09-16 19:07:46 -05:00
|
|
|
connection.send('pong');
|
|
|
|
}
|
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
|
|
|
};
|