X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=server%2Fmodels%2FChallenge.js;h=a528ca67f03bf64cd3bafb1d7d04ab177399894f;hb=9f9e9a0588d4b28a1825a56ae53553d89bf0c65f;hp=f82f9e817938c4bf51f80a2150a6564d53a8e499;hpb=8c564f462f5406fcd311d4733f851daf6ada665d;p=vchess.git diff --git a/server/models/Challenge.js b/server/models/Challenge.js index f82f9e81..a528ca67 100644 --- a/server/models/Challenge.js +++ b/server/models/Challenge.js @@ -1,4 +1,5 @@ -var db = require("../utils/database"); +const db = require("../utils/database"); +const UserModel = require("./User"); /* * Structure: @@ -7,68 +8,54 @@ var db = require("../utils/database"); * uid: user id (int) * target: recipient id (optional) * vid: variant id (int) + * randomness: integer in 0..2 * fen: varchar (optional) - * timeControl: string (3m+2s, 7d+1d ...) + * cadence: string (3m+2s, 7d ...) */ -const ChallengeModel = -{ - checkChallenge: function(c) - { - if (!c.vid.toString().match(/^[0-9]+$/)) - return "Wrong variant ID"; - if (!c.timeControl.match(/^[0-9dhms +]+$/)) - return "Wrong characters in time control"; - if (!c.fen.match(/^[a-zA-Z0-9, /-]*$/)) - return "Bad FEN string"; - return ""; +const ChallengeModel = { + + checkChallenge: function(c) { + return ( + c.vid.toString().match(/^[0-9]+$/) && + c.cadence.match(/^[0-9dhms +]+$/) && + c.randomness.toString().match(/^[0-2]$/) && + c.fen.match(/^[a-zA-Z0-9, /-]*$/) && + (!c.to || UserModel.checkNameEmail({ name: c.to })) + ); }, - // fen cannot be undefined - create: function(c, cb) - { + create: function(c, cb) { db.serialize(function() { const query = "INSERT INTO Challenges " + - "(added, uid, " + (!!c.to ? "target, " : "") + - "vid, fen, timeControl) VALUES " + - "(" + Date.now() + "," + c.uid + "," + (!!c.to ? c.to + "," : "") + - c.vid + ",'" + c.fen + "','" + c.timeControl + "')"; + "(added, uid, " + (c.to ? "target, " : "") + + "vid, randomness, fen, cadence) " + + "VALUES " + + "(" + Date.now() + "," + c.uid + "," + (c.to ? c.to + "," : "") + + c.vid + "," + c.randomness + ",'" + c.fen + "','" + c.cadence + "')"; db.run(query, function(err) { - return cb(err, {cid: this.lastID}); - }); - }); - }, - - getOne: function(id, cb) - { - db.serialize(function() { - const query = - "SELECT * " + - "FROM Challenges " + - "WHERE id = " + id; - db.get(query, (err,challenge) => { - return cb(err, challenge); + cb(err, { id: this.lastID }); }); }); }, - // all challenges except where target is defined and not me - getByUser: function(uid, cb) - { + // All challenges related to user with ID uid + getByUser: function(uid, cb) { db.serialize(function() { const query = "SELECT * " + "FROM Challenges " + - "WHERE target IS NULL OR target = " + uid; - db.all(query, (err,challenges) => { - return cb(err, challenges); + "WHERE target IS NULL" + + " OR uid = " + uid + + " OR target = " + uid; + db.all(query, (err, challenges) => { + cb(err, challenges); }); }); }, - remove: function(id) - { + remove: function(id) { db.serialize(function() { const query = "DELETE FROM Challenges " + @@ -77,21 +64,21 @@ const ChallengeModel = }); }, - safeRemove: function(id, uid, cb) - { + safeRemove: function(id, uid) { db.serialize(function() { const query = "SELECT 1 " + "FROM Challenges " + - "WHERE id = " + id + " AND uid = " + uid; + "WHERE id = " + id + " " + + // Condition: I'm the sender or the target + "AND (uid = " + uid + " OR target = " + uid + ")"; db.get(query, (err,chall) => { - if (!chall) - return cb({errmsg: "Not your challenge"}); - ChallengeModel.remove(id); - cb(null); + if (!err && chall) + ChallengeModel.remove(id); }); }); - }, -} + } + +}; module.exports = ChallengeModel;