summaryrefslogtreecommitdiff
path: root/src/server/api/streaming.ts
diff options
context:
space:
mode:
authortamaina <tamaina@hotmail.co.jp>2018-04-11 20:27:09 +0900
committerGitHub <noreply@github.com>2018-04-11 20:27:09 +0900
commitd43fe853c3605696e2e57e240845d0fc9c284f61 (patch)
tree838914e262c0fca5737588a7bba64e2b9f3d8e5f /src/server/api/streaming.ts
parentUpdate README.md (diff)
parentwip #1443 (diff)
downloadmisskey-d43fe853c3605696e2e57e240845d0fc9c284f61.tar.gz
misskey-d43fe853c3605696e2e57e240845d0fc9c284f61.tar.bz2
misskey-d43fe853c3605696e2e57e240845d0fc9c284f61.zip
Merge pull request #1 from syuilo/master
追従
Diffstat (limited to 'src/server/api/streaming.ts')
-rw-r--r--src/server/api/streaming.ts81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/server/api/streaming.ts b/src/server/api/streaming.ts
new file mode 100644
index 0000000000..d586d7c08f
--- /dev/null
+++ b/src/server/api/streaming.ts
@@ -0,0 +1,81 @@
+import * as http from 'http';
+import * as websocket from 'websocket';
+import * as redis from 'redis';
+import config from '../../config';
+
+import homeStream from './stream/home';
+import driveStream from './stream/drive';
+import messagingStream from './stream/messaging';
+import messagingIndexStream from './stream/messaging-index';
+import othelloGameStream from './stream/othello-game';
+import othelloStream from './stream/othello';
+import serverStream from './stream/server';
+import requestsStream from './stream/requests';
+import channelStream from './stream/channel';
+import { ParsedUrlQuery } from 'querystring';
+import authenticate from './authenticate';
+
+module.exports = (server: http.Server) => {
+ /**
+ * Init websocket server
+ */
+ const ws = new websocket.server({
+ httpServer: server
+ });
+
+ ws.on('request', async (request) => {
+ const connection = request.accept();
+
+ if (request.resourceURL.pathname === '/server') {
+ serverStream(request, connection);
+ return;
+ }
+
+ if (request.resourceURL.pathname === '/requests') {
+ requestsStream(request, connection);
+ return;
+ }
+
+ // Connect to Redis
+ const subscriber = redis.createClient(
+ config.redis.port, config.redis.host);
+
+ connection.on('close', () => {
+ subscriber.unsubscribe();
+ subscriber.quit();
+ });
+
+ if (request.resourceURL.pathname === '/channel') {
+ channelStream(request, connection, subscriber);
+ return;
+ }
+
+ const q = request.resourceURL.query as ParsedUrlQuery;
+ const [user, app] = await authenticate(q.i as string);
+
+ if (request.resourceURL.pathname === '/othello-game') {
+ othelloGameStream(request, connection, subscriber, user);
+ return;
+ }
+
+ if (user == null) {
+ connection.send('authentication-failed');
+ connection.close();
+ return;
+ }
+
+ const channel =
+ request.resourceURL.pathname === '/' ? homeStream :
+ request.resourceURL.pathname === '/drive' ? driveStream :
+ request.resourceURL.pathname === '/messaging' ? messagingStream :
+ request.resourceURL.pathname === '/messaging-index' ? messagingIndexStream :
+ request.resourceURL.pathname === '/othello' ? othelloStream :
+ null;
+
+ if (channel !== null) {
+ channel(request, connection, subscriber, user, app);
+ } else {
+ connection.close();
+ }
+ });
+};