mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
341 lines
9.8 KiB
JavaScript
341 lines
9.8 KiB
JavaScript
const emailer = require('../config/email.js');
|
|
|
|
const AppError = require('../middleware/AppError.js');
|
|
const { MISSING_REQUIRED_PARAMETER, NOT_IMPLEMENTED, QUIZ_NOT_FOUND, FOLDER_NOT_FOUND, QUIZ_ALREADY_EXISTS, GETTING_QUIZ_ERROR, DELETE_QUIZ_ERROR, UPDATE_QUIZ_ERROR, MOVING_QUIZ_ERROR } = require('../constants/errorCodes');
|
|
|
|
class QuizController {
|
|
|
|
constructor(quizModel, foldersModel) {
|
|
this.quizzes = quizModel;
|
|
this.folders = foldersModel;
|
|
}
|
|
|
|
create = async (req, res, next) => {
|
|
try {
|
|
const { title, content, folderId } = req.body;
|
|
|
|
if (!title || !content || !folderId) {
|
|
throw new AppError(MISSING_REQUIRED_PARAMETER);
|
|
}
|
|
|
|
const owner = await this.folders.getOwner(folderId);
|
|
if (owner != req.user.userId) {
|
|
throw new AppError(FOLDER_NOT_FOUND);
|
|
}
|
|
|
|
const roomId = this.generateRoomId();
|
|
|
|
const result = await this.quizzes.create(title, content, folderId, req.user.userId, roomId);
|
|
if (!result) {
|
|
throw new AppError(QUIZ_ALREADY_EXISTS);
|
|
}
|
|
|
|
return res.status(200).json({
|
|
message: 'Quiz créé avec succès.',
|
|
roomId: roomId,
|
|
});
|
|
|
|
} catch (error) {
|
|
return next(error);
|
|
}
|
|
};
|
|
|
|
getRoomID = async (req, res, next) => {
|
|
try {
|
|
const { quizId } = req.params;
|
|
|
|
if (!quizId) {
|
|
throw new AppError(MISSING_REQUIRED_PARAMETER);
|
|
}
|
|
|
|
const roomId = await this.quizzes.getRoomID(quizId);
|
|
|
|
if (!roomId) {
|
|
throw new AppError(QUIZ_NOT_FOUND);
|
|
}
|
|
|
|
return res.status(200).json({
|
|
roomId: roomId
|
|
});
|
|
} catch (error) {
|
|
return next(error);
|
|
}
|
|
};
|
|
get = async (req, res, next) => {
|
|
try {
|
|
const { quizId } = req.params;
|
|
|
|
if (!quizId) {
|
|
throw new AppError(MISSING_REQUIRED_PARAMETER);
|
|
}
|
|
|
|
const content = await this.quizzes.getContent(quizId);
|
|
|
|
if (!content) {
|
|
throw new AppError(GETTING_QUIZ_ERROR);
|
|
}
|
|
|
|
if (content.userId != req.user.userId) {
|
|
throw new AppError(QUIZ_NOT_FOUND);
|
|
}
|
|
|
|
return res.status(200).json({
|
|
data: content
|
|
});
|
|
|
|
} catch (error) {
|
|
return next(error);
|
|
}
|
|
};
|
|
|
|
delete = async (req, res, next) => {
|
|
try {
|
|
const { quizId } = req.params;
|
|
|
|
if (!quizId) {
|
|
throw new AppError(MISSING_REQUIRED_PARAMETER);
|
|
}
|
|
|
|
const owner = await this.quizzes.getOwner(quizId);
|
|
|
|
if (owner != req.user.userId) {
|
|
throw new AppError(QUIZ_NOT_FOUND);
|
|
}
|
|
|
|
const result = await this.quizzes.delete(quizId);
|
|
|
|
if (!result) {
|
|
throw new AppError(DELETE_QUIZ_ERROR);
|
|
}
|
|
|
|
return res.status(200).json({
|
|
message: 'Quiz supprimé avec succès.'
|
|
});
|
|
|
|
} catch (error) {
|
|
return next(error);
|
|
}
|
|
};
|
|
|
|
update = async (req, res, next) => {
|
|
try {
|
|
const { quizId, newTitle, newContent } = req.body;
|
|
|
|
if (!newTitle || !newContent || !quizId) {
|
|
throw new AppError(MISSING_REQUIRED_PARAMETER);
|
|
}
|
|
|
|
const owner = await this.quizzes.getOwner(quizId);
|
|
|
|
if (owner != req.user.userId) {
|
|
throw new AppError(QUIZ_NOT_FOUND);
|
|
}
|
|
|
|
const result = await this.quizzes.update(quizId, newTitle, newContent);
|
|
|
|
if (!result) {
|
|
throw new AppError(UPDATE_QUIZ_ERROR);
|
|
}
|
|
|
|
return res.status(200).json({
|
|
message: 'Quiz mis à jours avec succès.'
|
|
});
|
|
|
|
} catch (error) {
|
|
return next(error);
|
|
}
|
|
};
|
|
|
|
move = async (req, res, next) => {
|
|
try {
|
|
const { quizId, newFolderId } = req.body;
|
|
|
|
if (!quizId || !newFolderId) {
|
|
throw new AppError(MISSING_REQUIRED_PARAMETER);
|
|
}
|
|
|
|
const quizOwner = await this.quizzes.getOwner(quizId);
|
|
|
|
if (quizOwner != req.user.userId) {
|
|
throw new AppError(QUIZ_NOT_FOUND);
|
|
}
|
|
|
|
const folderOwner = await this.folders.getOwner(newFolderId);
|
|
|
|
if (folderOwner != req.user.userId) {
|
|
throw new AppError(FOLDER_NOT_FOUND);
|
|
}
|
|
|
|
const result = await this.quizzes.move(quizId, newFolderId);
|
|
|
|
if (!result) {
|
|
throw new AppError(MOVING_QUIZ_ERROR);
|
|
}
|
|
|
|
return res.status(200).json({
|
|
message: 'Utilisateur déplacé avec succès.'
|
|
});
|
|
|
|
} catch (error) {
|
|
return next(error);
|
|
}
|
|
};
|
|
|
|
copy = async (req, _res, _next) => {
|
|
const { quizId, newTitle, folderId } = req.body;
|
|
|
|
if (!quizId || !newTitle || !folderId) {
|
|
throw new AppError(MISSING_REQUIRED_PARAMETER);
|
|
}
|
|
|
|
throw new AppError(NOT_IMPLEMENTED);
|
|
// const { quizId } = req.params;
|
|
// const { newUserId } = req.body;
|
|
|
|
// try {
|
|
// //Trouver le quiz a dupliquer
|
|
// const conn = db.getConnection();
|
|
// const quiztoduplicate = await conn.collection('quiz').findOne({ _id: ObjectId.createFromHexString(quizId) });
|
|
// if (!quiztoduplicate) {
|
|
// throw new Error("Quiz non trouvé");
|
|
// }
|
|
// console.log(quiztoduplicate);
|
|
// //Suppression du id du quiz pour ne pas le répliquer
|
|
// delete quiztoduplicate._id;
|
|
// //Ajout du duplicata
|
|
// await conn.collection('quiz').insertOne({ ...quiztoduplicate, userId: ObjectId.createFromHexString(newUserId) });
|
|
// res.json(Response.ok("Dossier dupliqué avec succès pour un autre utilisateur"));
|
|
|
|
// } catch (error) {
|
|
// if (error.message.startsWith("Quiz non trouvé")) {
|
|
// return res.status(404).json(Response.badRequest(error.message));
|
|
// }
|
|
// res.status(500).json(Response.serverError(error.message));
|
|
// }
|
|
};
|
|
|
|
deleteQuizzesByFolderId = async (req, res, next) => {
|
|
try {
|
|
const { folderId } = req.body;
|
|
|
|
if (!folderId) {
|
|
throw new AppError(MISSING_REQUIRED_PARAMETER);
|
|
}
|
|
|
|
// Call the method from the Quiz model to delete quizzes by folder ID
|
|
await this.quizzes.deleteQuizzesByFolderId(folderId);
|
|
|
|
return res.status(200).json({
|
|
message: 'Quizzes deleted successfully.'
|
|
});
|
|
} catch (error) {
|
|
return next(error);
|
|
}
|
|
};
|
|
|
|
duplicate = async (req, res, next) => {
|
|
const { quizId } = req.body;
|
|
|
|
try {
|
|
const newQuizId = await this.quizzes.duplicate(quizId, req.user.userId);
|
|
res.status(200).json({ success: true, newQuizId });
|
|
} catch (error) {
|
|
return next(error);
|
|
}
|
|
};
|
|
|
|
quizExists = async (title, userId) => {
|
|
try {
|
|
const existingFile = await this.quizzes.quizExists(title, userId);
|
|
return existingFile !== null;
|
|
} catch (_error) {
|
|
throw new AppError(GETTING_QUIZ_ERROR);
|
|
}
|
|
};
|
|
|
|
share = async (req, res, next) => {
|
|
try {
|
|
const { quizId, email } = req.body;
|
|
|
|
if (!quizId || !email) {
|
|
throw new AppError(MISSING_REQUIRED_PARAMETER);
|
|
}
|
|
|
|
const link = `${process.env.FRONTEND_URL}/teacher/Share/${quizId}`;
|
|
|
|
emailer.quizShare(email, link);
|
|
|
|
return res.status(200).json({
|
|
message: 'Quiz partagé avec succès.'
|
|
});
|
|
|
|
} catch (error) {
|
|
return next(error);
|
|
}
|
|
};
|
|
|
|
getShare = async (req, res, next) => {
|
|
try {
|
|
const { quizId } = req.params;
|
|
|
|
if (!quizId) {
|
|
throw new AppError(MISSING_REQUIRED_PARAMETER);
|
|
}
|
|
|
|
const content = await this.quizzes.getContent(quizId);
|
|
|
|
if (!content) {
|
|
throw new AppError(GETTING_QUIZ_ERROR);
|
|
}
|
|
|
|
return res.status(200).json({
|
|
data: content.title
|
|
});
|
|
|
|
} catch (error) {
|
|
return next(error);
|
|
}
|
|
};
|
|
|
|
receiveShare = async (req, res, next) => {
|
|
try {
|
|
const { quizId, folderId } = req.body;
|
|
|
|
if (!quizId || !folderId) {
|
|
throw new AppError(MISSING_REQUIRED_PARAMETER);
|
|
}
|
|
|
|
const folderOwner = await this.folders.getOwner(folderId);
|
|
if (folderOwner != req.user.userId) {
|
|
throw new AppError(FOLDER_NOT_FOUND);
|
|
}
|
|
|
|
const content = await this.quizzes.getContent(quizId);
|
|
if (!content) {
|
|
throw new AppError(GETTING_QUIZ_ERROR);
|
|
}
|
|
|
|
const result = await this.quizzes.create(content.title, content.content, folderId, req.user.userId);
|
|
if (!result) {
|
|
throw new AppError(QUIZ_ALREADY_EXISTS);
|
|
}
|
|
|
|
return res.status(200).json({
|
|
message: 'Quiz partagé reçu.'
|
|
});
|
|
} catch (error) {
|
|
return next(error);
|
|
}
|
|
};
|
|
|
|
generateRoomId(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 = QuizController;
|