X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=server%2Fmodels%2FChallenge.js;h=7ccaa76fbf135bcf64a24c2c9906a9e535e1ca07;hb=cf7fac89918e50d8c93f9a09842c9eb53e8841d6;hp=f82f9e817938c4bf51f80a2150a6564d53a8e499;hpb=8c564f462f5406fcd311d4733f851daf6ada665d;p=vchess.git diff --git a/server/models/Challenge.js b/server/models/Challenge.js index f82f9e81..7ccaa76f 100644 --- a/server/models/Challenge.js +++ b/server/models/Challenge.js @@ -1,4 +1,5 @@ var db = require("../utils/database"); +const UserModel = require("./User"); /* * Structure: @@ -21,6 +22,8 @@ const ChallengeModel = return "Wrong characters in time control"; if (!c.fen.match(/^[a-zA-Z0-9, /-]*$/)) return "Bad FEN string"; + if (!!c.to) + return UserModel.checkNameEmail({name: c.to}); return ""; }, @@ -53,7 +56,7 @@ const ChallengeModel = }); }, - // all challenges except where target is defined and not me + // All challenges except where target is defined and not me getByUser: function(uid, cb) { db.serialize(function() { @@ -92,6 +95,28 @@ const ChallengeModel = }); }); }, + + // 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, added " + + "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;