Skip to content

Commit 4db3001

Browse files
committed
fix
1 parent 1e2fb92 commit 4db3001

File tree

1 file changed

+18
-5
lines changed

1 file changed

+18
-5
lines changed

api/controllers/Challenges.js

+18-5
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ const show = async (req, res) => {
275275
const showDetailed = async (req, res) => {
276276
const collections = Connection.collections
277277
if (req.locals.perms < 2) throw new Error('Permissions');
278-
const chall = await collections.challs.findOne({ _id: MongoDB.ObjectId(req.params.chall) }, null);
278+
const chall = await collections.challs.findOne({ _id: MongoDB.ObjectId(req.params.chall) });
279279
if (!chall) {
280280
res.code(400);
281281
res.send({
@@ -356,13 +356,21 @@ const hint = async (req, res) => {
356356

357357

358358
if (!purchased) {
359-
await collections.challs.updateOne({
359+
console.log("not purchased")
360+
const result = await collections.challs.updateOne({
360361
_id: MongoDB.ObjectId(req.body.chall)
361362
}, {
362363
$push: {
363364
[`hints.${req.body.id}.purchased`]: req.locals.username
364365
}
365366
});
367+
if (result.matchedCount === 0 ) {
368+
console.log("Hint failed to update for: " + req.body.chall)
369+
return res.send({
370+
success: false,
371+
error: "hint-not-updated"
372+
})
373+
}
366374
let latestSolveSubmissionID = NodeCacheObj.get("latestSolveSubmissionID")
367375
latestSolveSubmissionID += 1
368376
NodeCacheObj.set("latestSolveSubmissionID", latestSolveSubmissionID)
@@ -787,6 +795,8 @@ const edit = async (req, res) => {
787795
if (!(req.body.flags[i].length <= 1000 && req.body.flags[i].length >= 1)) throw new Error('InvalidFlagLength');
788796
}
789797

798+
const challenge = await collections.challs.findOne({_id: MongoDB.ObjectId(req.body.id)})
799+
790800
let updateObj = {};
791801
let unsetObj = {};
792802
const editables = ['name', 'category', 'description', 'points', 'flags', 'tags', 'hints', 'max_attempts', 'visibility', 'writeup', 'writeupComplete', 'requires', 'dynamic', 'initial', 'minSolves', 'minimum'];
@@ -836,11 +846,13 @@ const edit = async (req, res) => {
836846

837847
broadCastNewSolve(transactionDocumentsUpdated)
838848
if (updateObj.hints) {
839-
console.log(updateObj.hints)
840-
updateObj.hints.forEach(hint => {
849+
updateObj.hints.forEach((hint, index) => {
841850
if (hint.cost == undefined) throw new Error('MissingHintCost');
842851
hint.cost = parseInt(hint.cost);
843-
hint.purchased = hint.purchased != undefined ? hint.purchased : [];
852+
if (challenge.hints[index]) {
853+
hint.purchased = challenge.hints[index].purchased
854+
}
855+
else hint.purchased = []
844856
});
845857
}
846858
if ((await collections.challs.updateOne(
@@ -856,6 +868,7 @@ const edit = async (req, res) => {
856868
res.send({ success: true });
857869
}
858870
catch (err) {
871+
console.log(err)
859872
if (err.message == 'MissingHintCost') {
860873
res.code(400);
861874
res.send({

0 commit comments

Comments
 (0)