This commit is contained in:
Lukian LEIZOUR 2024-06-06 13:53:44 +02:00
parent cd74f8e71b
commit d4d7f51d03
6 changed files with 58 additions and 7 deletions

View file

@ -1,7 +1,7 @@
const express = require('express');
const jwt = require('jsonwebtoken');
const {removeHelper} = require("../../../libs/mysql.js")
const {removeHelper, getGame} = require("../../../libs/mysql.js")
const router = express.Router();
@ -12,8 +12,27 @@ router.post('/', async (req, res) => {
return res.status(400).send({error: "invalid token"});
}
if (!gameid) {
return res.status(400).send({error: "invalid gameid"});
}
try {
const user = jwt.verify(token, process.env.JWTSecret);
if (user.expiration < Date.now()) {
return res.status(400).send({error: "token expired"});
}
const game = await getGame(gameid);
if (!game[0]) {
return res.status(400).send({error: "this game doesn't exist"});
}
if (!JSON.parse(game[0].helpers).includes(user.user.username)) {
return res.status(400).send({error: "you are not an helper for this game"});
}
await removeHelper(user.user.username, gameid);
} catch {
return res.status(400).send({error: "invalid token"});