|
|
@ -1,17 +1,22 @@
|
|
|
|
import {Router} from "express";
|
|
|
|
import {Router} from "express";
|
|
|
|
import {GraphQLError} from "graphql";
|
|
|
|
import {GraphQLError} from "graphql";
|
|
|
|
import * as status from "http-status";
|
|
|
|
import * as status from "http-status";
|
|
|
|
import {Server} from "socket.io";
|
|
|
|
import {Namespace, Server} from "socket.io";
|
|
|
|
import dataaccess from "../lib/dataaccess";
|
|
|
|
import dataaccess from "../lib/dataaccess";
|
|
|
|
|
|
|
|
import {ChatMessage} from "../lib/dataaccess/ChatMessage";
|
|
|
|
import {Chatroom} from "../lib/dataaccess/Chatroom";
|
|
|
|
import {Chatroom} from "../lib/dataaccess/Chatroom";
|
|
|
|
import {Post} from "../lib/dataaccess/Post";
|
|
|
|
import {Post} from "../lib/dataaccess/Post";
|
|
|
|
import {Profile} from "../lib/dataaccess/Profile";
|
|
|
|
import {Profile} from "../lib/dataaccess/Profile";
|
|
|
|
|
|
|
|
import {Request} from "../lib/dataaccess/Request";
|
|
|
|
import {User} from "../lib/dataaccess/User";
|
|
|
|
import {User} from "../lib/dataaccess/User";
|
|
|
|
import {NotLoggedInGqlError} from "../lib/errors/graphqlErrors";
|
|
|
|
import {NotLoggedInGqlError} from "../lib/errors/graphqlErrors";
|
|
|
|
import globals from "../lib/globals";
|
|
|
|
import globals from "../lib/globals";
|
|
|
|
|
|
|
|
import {InternalEvents} from "../lib/InternalEvents";
|
|
|
|
import {is} from "../lib/regex";
|
|
|
|
import {is} from "../lib/regex";
|
|
|
|
import Route from "../lib/Route";
|
|
|
|
import Route from "../lib/Route";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const chatRooms: Namespace[] = [];
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Class for the home route.
|
|
|
|
* Class for the home route.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
@ -30,6 +35,33 @@ class HomeRoute extends Route {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
public async init(io: Server) {
|
|
|
|
public async init(io: Server) {
|
|
|
|
this.io = io;
|
|
|
|
this.io = io;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
io.on("connection", (socket) => {
|
|
|
|
|
|
|
|
socket.on("postCreate", async (content) => {
|
|
|
|
|
|
|
|
if (socket.handshake.session.userId) {
|
|
|
|
|
|
|
|
const post = await dataaccess.createPost(content, socket.handshake.session.userId);
|
|
|
|
|
|
|
|
io.emit("post", await post.resolvedData());
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
socket.emit("error", "Not logged in!");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
globals.internalEmitter.on(InternalEvents.REQUESTCREATE, (request: Request) => {
|
|
|
|
|
|
|
|
if (request.receiver.id === socket.handshake.session.userId) {
|
|
|
|
|
|
|
|
socket.emit("request", request.resolvedData());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
globals.internalEmitter.on(InternalEvents.GQLPOSTCREATE, async (post: Post) => {
|
|
|
|
|
|
|
|
socket.emit("post", await post.resolvedData());
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const chats = await dataaccess.getAllChats();
|
|
|
|
|
|
|
|
for (const chat of chats) {
|
|
|
|
|
|
|
|
chatRooms[chat.id] = this.getChatSocketNamespace(chat.id);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
globals.internalEmitter.on(InternalEvents.CHATCREATE, (chat: Chatroom) => {
|
|
|
|
|
|
|
|
chatRooms[chat.id] = this.getChatSocketNamespace(chat.id);
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
@ -145,7 +177,9 @@ class HomeRoute extends Route {
|
|
|
|
async createPost({content}: { content: string }) {
|
|
|
|
async createPost({content}: { content: string }) {
|
|
|
|
if (content) {
|
|
|
|
if (content) {
|
|
|
|
if (req.session.userId) {
|
|
|
|
if (req.session.userId) {
|
|
|
|
return await dataaccess.createPost(content, req.session.userId);
|
|
|
|
const post = await dataaccess.createPost(content, req.session.userId);
|
|
|
|
|
|
|
|
globals.internalEmitter.emit(InternalEvents.GQLPOSTCREATE, post);
|
|
|
|
|
|
|
|
return post;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
res.status(status.UNAUTHORIZED);
|
|
|
|
res.status(status.UNAUTHORIZED);
|
|
|
|
return new NotLoggedInGqlError();
|
|
|
|
return new NotLoggedInGqlError();
|
|
|
@ -175,7 +209,6 @@ class HomeRoute extends Route {
|
|
|
|
chatMembers.push(...members);
|
|
|
|
chatMembers.push(...members);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return await dataaccess.createChat(...chatMembers);
|
|
|
|
return await dataaccess.createChat(...chatMembers);
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
res.status(status.UNAUTHORIZED);
|
|
|
|
res.status(status.UNAUTHORIZED);
|
|
|
|
return new NotLoggedInGqlError();
|
|
|
|
return new NotLoggedInGqlError();
|
|
|
@ -188,7 +221,9 @@ class HomeRoute extends Route {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (chatId && content) {
|
|
|
|
if (chatId && content) {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
return await dataaccess.sendChatMessage(req.session.userId, chatId, content);
|
|
|
|
const message = await dataaccess.sendChatMessage(req.session.userId, chatId, content);
|
|
|
|
|
|
|
|
globals.internalEmitter.emit(InternalEvents.GQLCHATMESSAGE, message);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
} catch (err) {
|
|
|
|
} catch (err) {
|
|
|
|
res.status(status.BAD_REQUEST);
|
|
|
|
res.status(status.BAD_REQUEST);
|
|
|
|
return err.graphqlError;
|
|
|
|
return err.graphqlError;
|
|
|
@ -245,6 +280,35 @@ class HomeRoute extends Route {
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Returns the namespace socket for a chat socket.
|
|
|
|
|
|
|
|
* @param chatId
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private getChatSocketNamespace(chatId: number) {
|
|
|
|
|
|
|
|
if (chatRooms[chatId]) {
|
|
|
|
|
|
|
|
return chatRooms[chatId];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const chatNs = this.io.of(`/chat/${chatId}`);
|
|
|
|
|
|
|
|
chatNs.on("connection", (socket) => {
|
|
|
|
|
|
|
|
socket.on("chatMessage", async (content) => {
|
|
|
|
|
|
|
|
if (socket.handshake.session.userId) {
|
|
|
|
|
|
|
|
const userId = socket.handshake.session.userId;
|
|
|
|
|
|
|
|
const message = await dataaccess.sendChatMessage(userId, chatId, content);
|
|
|
|
|
|
|
|
socket.broadcast.emit("chatMessage", message.resolvedContent());
|
|
|
|
|
|
|
|
socket.emit("chatMessageSent", message.resolvedContent());
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
socket.emit("error", "Not logged in!");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
globals.internalEmitter.on(InternalEvents.GQLCHATMESSAGE, (message: ChatMessage) => {
|
|
|
|
|
|
|
|
if (message.chat.id === chatId) {
|
|
|
|
|
|
|
|
socket.emit("chatMessage", message.resolvedContent());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return chatNs;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default HomeRoute;
|
|
|
|
export default HomeRoute;
|
|
|
|