Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

User stats #35

Merged
merged 2 commits into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions users/authservice/auth-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ app.post('/login', async (req, res) => {
const token = jwt.sign({ userId: user._id }, 'your-secret-key', { expiresIn: '1h' });
//Almacenamos el token del usuario para su autentificación
sessionStorage.setItem('token', token);

sessionStorage.setItem('username', username);

// Respond with the token and user information
res.json({ token: token, username: username, createdAt: user.createdAt });
} else {
Expand Down
4 changes: 4 additions & 0 deletions users/userservice/game-model.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ const gameSchema = new mongoose.Schema({
type: Number,
default: 0
},
avgTime: {
type: Number,
default: 0
}
});

const Game = mongoose.model('Game', gameSchema);
Expand Down
66 changes: 59 additions & 7 deletions webapp/src/pages/Clasico/Clasico.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ const JuegoPreguntas = () => {
const [preguntaActual, setPreguntaActual] = useState("");
const navigate = useNavigate();

var preguntasCorrectas=0;
var preguntasFalladas=0;
//Used for user stats
var [preguntasCorrectas, setPreguntasCorrectas] = useState(0);
var [preguntasFalladas, setPreguntasFalladas] = useState(0);
var [tiempoTotal, setTiempoTotal] = useState(0);
var [tiempoMedio, setTiempoMedio] = useState(0);

useEffect(() => {
fetch("http://localhost:8003/questions?tematica=all&n=10")
Expand Down Expand Up @@ -81,20 +84,69 @@ const JuegoPreguntas = () => {
};

const handleSiguientePregunta = () => {
if (respuestaSeleccionada === preguntaActual.correcta) {
if (respuestaSeleccionada === preguntaActual.respuestaCorrecta) {
setPuntuacion(puntuacion + 1);
preguntasCorrectas++;
}else{
preguntasFalladas++;
setPreguntasCorrectas(preguntasCorrectas + 1);
} else {
setPreguntasFalladas(preguntasFalladas + 1);
}

setTiempoTotal(tiempoTotal+10-tiempoRestante);


setRespuestaSeleccionada(null);
setTiempoRestante(10);
if (indicePregunta + 1 < preguntas.length) {
setIndicePregunta(indicePregunta + 1);
setPreguntaActual(preguntas[indicePregunta]);
} else {
//TODO: Introducir puntos, preguntas correctas, tiempo y preguntas falladas en la BD
if (preguntasCorrectas + preguntasFalladas > 0) {
setTiempoMedio(tiempoTotal/(preguntasCorrectas+preguntasFalladas));
}

//Now we store the game in the user's DB
const username = sessionStorage.getItem('username');

const newGame = new Game({
correctAnswers: preguntasCorrectas,
incorrectAnswers: preguntasFalladas,
points: puntuacion,
avgTime: tiempoMedio,
});

//SAVING THE GAME ON THE USERS DATABASE

// Encontrar el usuario en la base de datos
User.findOne({ username }, (err, user) => {
if (err) {
console.error('Error al encontrar el usuario:', err);
// TODO : hacer la UI para el manejo de errores
} else {

newGame.save((err, game) => {

if (err) {

console.error('Error al guardar el juego:', err);
// TODO : hacer la UI para el manejo de errores
}
else {

user.games.push(game._id);

user.save((err) => {
if (err) {
console.error('Error al guardar el usuario actualizado:', err);
// TODO : hacer la UI para el manejo de errores
}
});
}
});

}
});

//TODO: Introducir puntos, preguntas correctas y preguntas falladas en la BD
setJuegoTerminado(true);
}
};
Expand Down
Loading