@@ -275,7 +275,7 @@ const show = async (req, res) => {
275
275
const showDetailed = async ( req , res ) => {
276
276
const collections = Connection . collections
277
277
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 ) } ) ;
279
279
if ( ! chall ) {
280
280
res . code ( 400 ) ;
281
281
res . send ( {
@@ -356,13 +356,21 @@ const hint = async (req, res) => {
356
356
357
357
358
358
if ( ! purchased ) {
359
- await collections . challs . updateOne ( {
359
+ console . log ( "not purchased" )
360
+ const result = await collections . challs . updateOne ( {
360
361
_id : MongoDB . ObjectId ( req . body . chall )
361
362
} , {
362
363
$push : {
363
364
[ `hints.${ req . body . id } .purchased` ] : req . locals . username
364
365
}
365
366
} ) ;
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
+ }
366
374
let latestSolveSubmissionID = NodeCacheObj . get ( "latestSolveSubmissionID" )
367
375
latestSolveSubmissionID += 1
368
376
NodeCacheObj . set ( "latestSolveSubmissionID" , latestSolveSubmissionID )
@@ -787,6 +795,8 @@ const edit = async (req, res) => {
787
795
if ( ! ( req . body . flags [ i ] . length <= 1000 && req . body . flags [ i ] . length >= 1 ) ) throw new Error ( 'InvalidFlagLength' ) ;
788
796
}
789
797
798
+ const challenge = await collections . challs . findOne ( { _id : MongoDB . ObjectId ( req . body . id ) } )
799
+
790
800
let updateObj = { } ;
791
801
let unsetObj = { } ;
792
802
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) => {
836
846
837
847
broadCastNewSolve ( transactionDocumentsUpdated )
838
848
if ( updateObj . hints ) {
839
- console . log ( updateObj . hints )
840
- updateObj . hints . forEach ( hint => {
849
+ updateObj . hints . forEach ( ( hint , index ) => {
841
850
if ( hint . cost == undefined ) throw new Error ( 'MissingHintCost' ) ;
842
851
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 = [ ]
844
856
} ) ;
845
857
}
846
858
if ( ( await collections . challs . updateOne (
@@ -856,6 +868,7 @@ const edit = async (req, res) => {
856
868
res . send ( { success : true } ) ;
857
869
}
858
870
catch ( err ) {
871
+ console . log ( err )
859
872
if ( err . message == 'MissingHintCost' ) {
860
873
res . code ( 400 ) ;
861
874
res . send ( {
0 commit comments