X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=server%2Fmodels%2FProblem.js;h=5c9af0b1803d6ff675d4970804bbfd5f74a4d48a;hb=0234201fb338fc239d6f613c677fa932c7c3697c;hp=75c2e146965853222abc86f86daff08c8dac680e;hpb=89021f181ac0689bbc785ce0ebd9a910e66352b0;p=vchess.git diff --git a/server/models/Problem.js b/server/models/Problem.js index 75c2e146..5c9af0b1 100644 --- a/server/models/Problem.js +++ b/server/models/Problem.js @@ -1,4 +1,4 @@ -var db = require("../utils/database"); +const db = require("../utils/database"); /* * Structure: @@ -11,94 +11,71 @@ var db = require("../utils/database"); * solution: text */ -const ProblemModel = -{ - checkProblem: function(p) - { - if (!p.vid.toString().match(/^[0-9]+$/)) - return "Wrong variant ID"; - if (!p.fen.match(/^[a-zA-Z0-9, /-]*$/)) - return "Bad FEN string"; - return ""; +const ProblemModel = { + checkProblem: function(p) { + return ( + p.id.toString().match(/^[0-9]+$/) && + p.vid.toString().match(/^[0-9]+$/) && + p.fen.match(/^[a-zA-Z0-9, /-]*$/) + ); }, - create: function(p, cb) - { + create: function(p, cb) { db.serialize(function() { const query = "INSERT INTO Problems " + "(added, uid, vid, fen, instruction, solution) " + "VALUES " + - "(" + Date.now() + "," + p.uid + ",'" + p.fen + "',?,?)"; - db.run(query, p.instruction, p.solution, function(err) { - return cb(err, {pid: this.lastID}); + "(" + Date.now() + "," + p.uid + "," + p.vid + ",'" + p.fen + "',?,?)"; + db.run(query, [p.instruction,p.solution], function(err) { + cb(err, { id: this.lastID }); }); }); }, - getAll: function(cb) - { + getAll: function(cb) { db.serialize(function() { const query = "SELECT * " + "FROM Problems"; db.all(query, (err,problems) => { - return cb(err, problems); + cb(err, problems); }); }); }, - getOne: function(id, cb) - { + getOne: function(id, cb) { db.serialize(function() { const query = "SELECT * " + "FROM Problems " + "WHERE id = " + id; db.get(query, (err,problem) => { - return cb(err, problem); + cb(err, problem); }); }); }, - update: function(id, prob) - { + safeUpdate: function(prob, uid) { db.serialize(function() { - let query = + const query = "UPDATE Problems " + "SET " + "vid = " + prob.vid + "," + - "fen = " + prob.fen + "," + - "instruction = " + prob.instruction + "," + - "solution = " + prob.solution + " " + - "WHERE id = " + id; - db.run(query); + "fen = '" + prob.fen + "'," + + "instruction = ?," + + "solution = ? " + + "WHERE id = " + prob.id + " AND uid = " + uid; + db.run(query, [prob.instruction,prob.solution]); }); }, - remove: function(id) - { + safeRemove: function(id, uid) { db.serialize(function() { const query = "DELETE FROM Problems " + - "WHERE id = " + id; - db.run(query); - }); - }, - - safeRemove: function(id, uid, cb) - { - db.serialize(function() { - const query = - "SELECT 1 " + - "FROM Problems " + "WHERE id = " + id + " AND uid = " + uid; - db.get(query, (err,prob) => { - if (!prob) - return cb({errmsg: "Not your problem"}); - ProvlemModel.remove(id); - cb(null); - }); + db.run(query); }); }, }