2024-03-29 20:08:34 -04:00
|
|
|
const MAX_USERS_PER_ROOM = 60;
|
|
|
|
|
const MAX_TOTAL_CONNECTIONS = 2000;
|
|
|
|
|
|
|
|
|
|
const setupWebsocket = (io) => {
|
|
|
|
|
let totalConnections = 0;
|
|
|
|
|
|
|
|
|
|
io.on("connection", (socket) => {
|
|
|
|
|
if (totalConnections >= MAX_TOTAL_CONNECTIONS) {
|
|
|
|
|
console.log("Connection limit reached. Disconnecting client.");
|
|
|
|
|
socket.emit(
|
|
|
|
|
"join-failure",
|
|
|
|
|
"Le nombre maximum de connexion a été atteint"
|
|
|
|
|
);
|
|
|
|
|
socket.disconnect(true);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
totalConnections++;
|
|
|
|
|
console.log(
|
|
|
|
|
"A user connected:",
|
|
|
|
|
socket.id,
|
|
|
|
|
"| Total connections:",
|
|
|
|
|
totalConnections
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
socket.on("create-room", (sentRoomName) => {
|
|
|
|
|
if (sentRoomName) {
|
|
|
|
|
const roomName = sentRoomName.toUpperCase();
|
|
|
|
|
if (!io.sockets.adapter.rooms.get(roomName)) {
|
|
|
|
|
socket.join(roomName);
|
|
|
|
|
socket.emit("create-success", roomName);
|
|
|
|
|
} else {
|
|
|
|
|
socket.emit("create-failure");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
const roomName = generateRoomName();
|
|
|
|
|
if (!io.sockets.adapter.rooms.get(roomName)) {
|
|
|
|
|
socket.join(roomName);
|
|
|
|
|
socket.emit("create-success", roomName);
|
|
|
|
|
} else {
|
|
|
|
|
socket.emit("create-failure");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
socket.on("join-room", ({ enteredRoomName, username }) => {
|
|
|
|
|
if (io.sockets.adapter.rooms.has(enteredRoomName)) {
|
|
|
|
|
const clientsInRoom =
|
|
|
|
|
io.sockets.adapter.rooms.get(enteredRoomName).size;
|
|
|
|
|
|
|
|
|
|
if (clientsInRoom <= MAX_USERS_PER_ROOM) {
|
2024-09-25 14:53:17 -04:00
|
|
|
const newStudent = {
|
|
|
|
|
id: socket.id,
|
|
|
|
|
name: username,
|
|
|
|
|
answers: [],
|
|
|
|
|
};
|
2024-03-29 20:08:34 -04:00
|
|
|
socket.join(enteredRoomName);
|
|
|
|
|
socket
|
|
|
|
|
.to(enteredRoomName)
|
2024-09-25 14:53:17 -04:00
|
|
|
.emit("user-joined", newStudent);
|
2024-03-29 20:08:34 -04:00
|
|
|
socket.emit("join-success");
|
|
|
|
|
} else {
|
|
|
|
|
socket.emit("join-failure", "La salle est remplie");
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
socket.emit("join-failure", "Le nom de la salle n'existe pas");
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
socket.on("next-question", ({ roomName, question }) => {
|
|
|
|
|
console.log("next-question", roomName, question);
|
|
|
|
|
socket.to(roomName).emit("next-question", question);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
socket.on("launch-student-mode", ({ roomName, questions }) => {
|
|
|
|
|
socket.to(roomName).emit("launch-student-mode", questions);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
socket.on("end-quiz", ({ roomName }) => {
|
|
|
|
|
socket.to(roomName).emit("end-quiz");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
socket.on("message", (data) => {
|
|
|
|
|
console.log("Received message from", socket.id, ":", data);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
socket.on("disconnect", () => {
|
|
|
|
|
totalConnections--;
|
|
|
|
|
console.log(
|
|
|
|
|
"A user disconnected:",
|
|
|
|
|
socket.id,
|
|
|
|
|
"| Total connections:",
|
|
|
|
|
totalConnections
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
for (const [room] of io.sockets.adapter.rooms) {
|
|
|
|
|
if (room !== socket.id) {
|
|
|
|
|
io.to(room).emit("user-disconnected", socket.id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
socket.on("submit-answer", ({ roomName, username, answer, idQuestion }) => {
|
|
|
|
|
socket.to(roomName).emit("submit-answer", {
|
|
|
|
|
idUser: socket.id,
|
|
|
|
|
username,
|
|
|
|
|
answer,
|
|
|
|
|
idQuestion,
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const generateRoomName = (length = 6) => {
|
|
|
|
|
const characters = "0123456789";
|
|
|
|
|
let result = "";
|
|
|
|
|
for (let i = 0; i < length; i++) {
|
|
|
|
|
result += characters.charAt(
|
|
|
|
|
Math.floor(Math.random() * characters.length)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = { setupWebsocket };
|