X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=server%2Fmodels%2FChallenge.js;h=01de6b54c014c959f860212780b664ab011465eb;hp=ba805aa1701fc8480608ec7bacf2cb2d38ee858b;hb=83494c7fbd83fafa28c5a434a1c83f56c17e3d04;hpb=d431028c73d41a22636130bd6aff562762eaf2bb diff --git a/server/models/Challenge.js b/server/models/Challenge.js index ba805aa1..01de6b54 100644 --- a/server/models/Challenge.js +++ b/server/models/Challenge.js @@ -92,24 +92,28 @@ const ChallengeModel = }); }); }, -} -// TODO: adapt -// Remove challenges older than 1 month, and 1to1 older than 36h -//exports.removeOld = function() -//{ -// var tsNow = new Date().getTime(); -// // 86400000 = 24 hours in milliseconds -// var day = 86400000; -// db.challenges.find({}, (err,challengeArray) => { -// challengeArray.forEach( c => { -// if (c._id.getTimestamp() + 30*day < tsNow //automatch -// || (!!c.to && c._id.getTimestamp() + 1.5*day < tsNow)) //1 to 1 -// { -// db.challenges.remove({"_id": c._id}); -// } -// }); -// }); -//} + // Remove challenges older than 1 month, and 1to1 older than 2 days + removeOld: function() + { + const tsNow = Date.now(); + // 86400000 = 24 hours in milliseconds + const day = 86400000; + db.serialize(function() { + const query = + "SELECT id, target " + + "FROM Challenges"; + db.all(query, (err, challenges) => { + challenges.forEach(c => { + if ((!c.target && tsNow - c.added > 30*day) || + (!!c.target && tsNow - c.added > 2*day)) + { + db.run("DELETE FROM CHallenges WHERE id = " + c.id); + } + }); + }); + }); + }, +} module.exports = ChallengeModel;