aboutsummaryrefslogtreecommitdiff
path: root/mottovote/index.js
diff options
context:
space:
mode:
authorLarsVomMars2020-10-03 12:39:32 +0200
committerLarsVomMars2020-10-03 12:39:51 +0200
commitd1944deec3dcd2154f8bb80dc5099cdcc8963e0d (patch)
tree79ffb051c5ab5f8979cf2f4e8df133d8294f4ebd /mottovote/index.js
parent7285ce6a534baed7c94c28d6ccaadc959156e94d (diff)
Vote fix
Diffstat (limited to 'mottovote/index.js')
-rw-r--r--mottovote/index.js18
1 files changed, 10 insertions, 8 deletions
diff --git a/mottovote/index.js b/mottovote/index.js
index df1f6a4..d0af6e3 100644
--- a/mottovote/index.js
+++ b/mottovote/index.js
@@ -3,7 +3,6 @@ const db = require("../db");
const { checkUser } = require("../auth");
const app = express.Router();
-
app.use("/", checkUser, express.static(__dirname + "/public/"));
app.get("/api/list", checkUser, async (req, res) => {
@@ -12,7 +11,7 @@ app.get("/api/list", checkUser, async (req, res) => {
for (const vote of votes) {
const mid = mottos.findIndex((motto) => motto.id === vote.motto_id);
- if (mid) mottos[mid].votes = vote.votes;
+ if (mid !== undefined) mottos[mid].votes = vote.votes;
}
res.json(mottos);
});
@@ -22,10 +21,11 @@ app.put("/api/vote", checkUser, async (req, res) => {
try {
if (Object.keys(req.body).length > 3) return res.send("error");
for (const mid in req.body) {
- await db.query(
- "INSERT INTO motto_votes (user_id, motto_id, votes) VALUES (?, ?, ?)",
- [req.session.uid, mid, req.body[mid]]
- );
+ await db.query("INSERT INTO motto_votes (user_id, motto_id, votes) VALUES (?, ?, ?)", [
+ req.session.uid,
+ mid,
+ req.body[mid],
+ ]);
}
res.send("ok");
} catch (e) {
@@ -36,8 +36,10 @@ app.put("/api/vote", checkUser, async (req, res) => {
// Vote result - admin
app.get("/api/get", checkUser, async (req, res) => {
- const votes = await db.query("SELECT m.id, m.name, m.description, SUM(votes) votes FROM motto_votes mv RIGHT JOIN mottos m on mv.motto_id = m.id GROUP BY m.id, m.name, m.description ORDER BY SUM(votes) DESC");
+ const votes = await db.query(
+ "SELECT m.id, m.name, m.description, SUM(votes) votes FROM motto_votes mv RIGHT JOIN mottos m on mv.motto_id = m.id GROUP BY m.id, m.name, m.description ORDER BY SUM(votes) DESC",
+ );
res.json(votes);
});
-module.exports = app; \ No newline at end of file
+module.exports = app;