-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.js
More file actions
112 lines (97 loc) · 3.43 KB
/
Copy pathserver.js
File metadata and controls
112 lines (97 loc) · 3.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
const express = require("express");
const app = express();
const server = require("http").Server(app);
const io = require("socket.io")(server);
const next = require("next");
const dev = process.env.NODE_ENV !== "production";
const nextApp = next({ dev });
const handle = nextApp.getRequestHandler();
require("dotenv").config({ path: "./config.env" });
const connectDb = require("./utilsServer/connectDb");
connectDb();
app.use(express.json());
const PORT = process.env.PORT || 3000;
const {
addUser,
removeUser,
findConnectedUser,
} = require("./utilsServer/roomActions");
const {
loadMessages,
sendMsg,
setMsgToUnread,
setMsgToRead,
deleteMsg,
} = require("./utilsServer/messageActions");
io.on("connection", (socket) => {
socket.on("join", async ({ userId }) => {
const users = await addUser(userId, socket.id);
setInterval(() => {
socket.emit("connectedUsers", {
users: users.filter((user) => user.userId !== userId),
});
}, 10000);
});
socket.on("loadMessages", async ({ userId, messagesWith }) => {
const { chat, error } = await loadMessages(userId, messagesWith);
!error
? socket.emit("messagesLoaded", { chat })
: socket.emit("noChatFound");
});
socket.on("sendNewMsg", async ({ userId, msgSendToUserId, msg }) => {
const { newMsg, error } = await sendMsg(userId, msgSendToUserId, msg);
const receiverSocket = findConnectedUser(msgSendToUserId);
if (receiverSocket) {
io.to(receiverSocket.socketId).emit("newMsgReceived", { newMsg });
} else {
await setMsgToUnread(msgSendToUserId);
await setMsgToRead(userId);
}
!error && socket.emit("msgSent", { newMsg });
});
socket.on("deleteMsg", async ({ userId, messagesWith, messageId }) => {
try {
const { success } = await deleteMsg(userId, messagesWith, messageId);
if (success) socket.emit("msgDeleted");
} catch (error) {
await deleteMsg(userId, messagesWith, messageId);
success = true;
if (success) socket.emit("msgDeleted");
}
});
socket.on(
"sendMsgFromNotification",
async ({ userId, msgSendToUserId, msg }) => {
const { newMsg, error } = await sendMsg(userId, msgSendToUserId, msg);
const receiverSocket = findConnectedUser(msgSendToUserId);
if (receiverSocket) {
io.to(receiverSocket.socketId).emit("newMsgReceived", { newMsg });
} else {
await setMsgToUnread(msgSendToUserId);
await setMsgToRead(userId);
}
!error && socket.emit("msgSentFromNotification");
}
);
socket.on("disconnect", () => removeUser(socket.id));
});
nextApp.prepare().then(() => {
app.use("/api/signup", require("./api/signup"));
app.use("/api/auth", require("./api/auth"));
app.use("/api/trendy", require("./api/trendy"));
app.use("/api/popular", require("./api/popular"));
app.use("/api/search", require("./api/search"));
app.use("/api/extsearch", require("./api/extsearch"));
app.use("/api/posts", require("./api/posts"));
app.use("/api/profile", require("./api/profile"));
app.use("/api/user", require("./api/user"));
app.use("/api/notifications", require("./api/notifications"));
app.use("/api/chats", require("./api/chats"));
app.use("/api/reset", require("./api/reset"));
app.all("*", (req, res) => handle(req, res));
server.listen(PORT, (err) => {
if (err) throw err;
console.log(`Express server running on port ${PORT}.`);
console.log("http://localhost:3000/");
});
});