017d195d2045c5f84a8878283cac2529fa355407
[vchess.git] / server / models / Game.js
1 var db = require("../utils/database");
2 const UserModel = require("./User");
3
4 /*
5 * Structure table Games:
6 * id: game id (int)
7 * vid: integer (variant id)
8 * fenStart: varchar (initial position)
9 * fen: varchar (current position)
10 * timeControl: string
11 * score: varchar (result)
12 * scoreMsg: varchar ("Time", "Mutual agreement"...)
13 * created: datetime
14 * drawOffer: char ('w','b' or '' for none)
15 *
16 * Structure table Players:
17 * gid: ref game id
18 * uid: ref user id
19 * color: character
20 *
21 * Structure table Moves:
22 * gid: ref game id
23 * squares: varchar (description)
24 * played: datetime
25 * idx: integer
26 *
27 * Structure table Chats:
28 * gid: game id (int)
29 * msg: varchar
30 * name: varchar
31 * added: datetime
32 */
33
34 const GameModel =
35 {
36 checkGameInfo: function(g) {
37 if (!g.vid.toString().match(/^[0-9]+$/))
38 return "Wrong variant ID";
39 if (!g.vname.match(/^[a-zA-Z0-9]+$/))
40 return "Wrong variant name";
41 if (!g.timeControl.match(/^[0-9dhms +]+$/))
42 return "Wrong characters in time control";
43 if (!g.fen.match(/^[a-zA-Z0-9, /-]*$/))
44 return "Bad FEN string";
45 if (g.players.length != 2)
46 return "Need exactly 2 players";
47 if (g.players.some(p => !p.id.toString().match(/^[0-9]+$/)))
48 return "Wrong characters in player ID";
49 return "";
50 },
51
52 create: function(vid, fen, timeControl, players, cb)
53 {
54 db.serialize(function() {
55 let query =
56 "INSERT INTO Games"
57 + " (vid, fenStart, fen, score, timeControl, created, drawOffer)"
58 + " VALUES (" + vid + ",'" + fen + "','" + fen + "','*','"
59 + timeControl + "'," + Date.now() + ",'')";
60 db.run(query, function(err) {
61 if (!!err)
62 return cb(err);
63 players.forEach((p,idx) => {
64 const color = (idx==0 ? "w" : "b");
65 query =
66 "INSERT INTO Players VALUES " +
67 "(" + this.lastID + "," + p.id + ",'" + color + "')";
68 db.run(query);
69 });
70 cb(null, {gid: this.lastID});
71 });
72 });
73 },
74
75 // TODO: queries here could be async, and wait for all to complete
76 getOne: function(id, cb)
77 {
78 db.serialize(function() {
79 // TODO: optimize queries?
80 let query =
81 // NOTE: g.scoreMsg can be NULL
82 // (in this case score = "*" and no reason to look at it)
83 "SELECT g.id, g.vid, g.fen, g.fenStart, g.timeControl, g.score, " +
84 "g.scoreMsg, v.name AS vname " +
85 "FROM Games g " +
86 "JOIN Variants v " +
87 " ON g.vid = v.id " +
88 "WHERE g.id = " + id;
89 db.get(query, (err,gameInfo) => {
90 if (!!err)
91 return cb(err);
92 query =
93 "SELECT p.uid, p.color, u.name " +
94 "FROM Players p " +
95 "JOIN Users u " +
96 " ON p.uid = u.id " +
97 "WHERE p.gid = " + id;
98 db.all(query, (err2,players) => {
99 if (!!err2)
100 return cb(err2);
101 query =
102 "SELECT squares, played, idx " +
103 "FROM Moves " +
104 "WHERE gid = " + id;
105 db.all(query, (err3,moves) => {
106 if (!!err3)
107 return cb(err3);
108 query =
109 "SELECT msg, name, added " +
110 "FROM Chats " +
111 "WHERE gid = " + id;
112 db.all(query, (err4,chats) => {
113 if (!!err4)
114 return cb(err4);
115 const game = Object.assign({},
116 gameInfo,
117 {
118 players: players,
119 moves: moves,
120 chats: chats,
121 }
122 );
123 return cb(null, game);
124 });
125 });
126 });
127 });
128 });
129 },
130
131 getByUser: function(uid, excluded, cb)
132 {
133 db.serialize(function() {
134 const query =
135 "SELECT DISTINCT gid " +
136 "FROM Players " +
137 "WHERE uid " + (excluded ? "<>" : "=") + " " + uid;
138 db.all(query, (err,gameIds) => {
139 if (!!err)
140 return cb(err);
141 gameIds = gameIds || []; //might be empty
142 let gameArray = [];
143 for (let i=0; i<gameIds.length; i++)
144 {
145 GameModel.getOne(gameIds[i]["gid"], (err2,game) => {
146 if (!!err2)
147 return cb(err2);
148 gameArray.push(game);
149 // Call callback function only when gameArray is complete:
150 if (i == gameIds.length - 1)
151 return cb(null, gameArray);
152 });
153 }
154 });
155 });
156 },
157
158 getPlayers: function(id, cb)
159 {
160 db.serialize(function() {
161 const query =
162 "SELECT id " +
163 "FROM Players " +
164 "WHERE gid = " + id;
165 db.all(query, (err,players) => {
166 return cb(err, players);
167 });
168 });
169 },
170
171 checkGameUpdate: function(obj)
172 {
173 // Check all that is possible (required) in obj:
174 if (!!obj.move)
175 {
176 if (!obj.move.played.toString().match(/^[0-9]+$/))
177 return "Wrong move played time";
178 if (!obj.move.idx.toString().match(/^[0-9]+$/))
179 return "Wrong move index";
180 }
181 if (!!obj.fen && !obj.fen.match(/^[a-zA-Z0-9, /-]*$/))
182 return "Wrong FEN string";
183 if (!!obj.score && !obj.score.match(/^[012?*\/-]+$/))
184 return "Wrong characters in score";
185 if (!!obj.scoreMsg && !obj.scoreMsg.match(/^[a-zA-Z ]+$/))
186 return "Wrong characters in score message";
187 if (!!obj.chat)
188 return UserModel.checkNameEmail({name: obj.chat.name});
189 return "";
190 },
191
192 // obj can have fields move, chat, fen, drawOffer and/or score
193 update: function(id, obj)
194 {
195 db.parallelize(function() {
196 let query =
197 "UPDATE Games " +
198 "SET ";
199 let modifs = "";
200 if (!!obj.message)
201 modifs += "message = message || ' ' || '" + obj.message + "',";
202 // NOTE: if drawOffer is true, we should check that it's player's turn
203 // A bit overcomplicated. Let's trust the client on that for now...
204 if (!!obj.drawOffer)
205 modifs += "drawOffer = " + obj.drawOffer + ",";
206 if (!!obj.fen)
207 modifs += "fen = '" + obj.fen + "',";
208 if (!!obj.score)
209 modifs += "score = '" + obj.score + "',";
210 if (!!obj.scoreMsg)
211 modifs += "scoreMsg = '" + obj.scoreMsg + "',";
212 modifs = modifs.slice(0,-1); //remove last comma
213 if (modifs.length > 0)
214 {
215 query += modifs + " WHERE id = " + id;
216 db.run(query);
217 }
218 if (!!obj.move)
219 {
220 const m = obj.move;
221 query =
222 "INSERT INTO Moves (gid, squares, played, idx) VALUES " +
223 "(" + id + ",?," + m.played + "," + m.idx + ")";
224 db.run(query, JSON.stringify(m.squares));
225 }
226 if (!!obj.chat)
227 {
228 query =
229 "INSERT INTO Chats (gid, msg, name, added) VALUES ("
230 + id + ",?,'" + obj.chat.name + "'," + Date.now() + ")";
231 db.run(query, obj.chat.msg);
232 }
233 });
234 },
235
236 remove: function(id)
237 {
238 db.parallelize(function() {
239 let query =
240 "DELETE FROM Games " +
241 "WHERE id = " + id;
242 db.run(query);
243 query =
244 "DELETE FROM Players " +
245 "WHERE gid = " + id;
246 db.run(query);
247 query =
248 "DELETE FROM Moves " +
249 "WHERE gid = " + id;
250 db.run(query);
251 query =
252 "DELETE FROM Chats " +
253 "WHERE gid = " + id;
254 db.run(query);
255 });
256 },
257
258 cleanGamesDb: function()
259 {
260 const tsNow = Date.now();
261 // 86400000 = 24 hours in milliseconds
262 const day = 86400000;
263 db.serialize(function() {
264 let query =
265 "SELECT id,score " +
266 "FROM Games ";
267 db.all(query, (err,games) => {
268 games.forEach(g => {
269 query =
270 "SELECT max(played) AS lastMaj " +
271 "FROM Moves " +
272 "WHERE gid = " + g.id;
273 db.get(query, (err2,updated) => {
274 if (!updated && tsNow - g.created > 7*day)
275 return GameModel.remove(g.id);
276 const lastMaj = updated.lastMaj;
277 if (g.score != "*" && tsNow - lastMaj > 7*day ||
278 g.score == "*" && tsNow - lastMaj > 91*day)
279 {
280 GameModel.remove(g.id);
281 }
282 });
283 });
284 });
285 });
286 },
287 }
288
289 module.exports = GameModel;