02e3194b130ae3e84cf9ec4e8e29ddcdc7401b83
1 var db
= require("../utils/database");
2 const UserModel
= require("./User");
5 * Structure table Games:
7 * vid: integer (variant id)
8 * fenStart: varchar (initial position)
9 * fen: varchar (current position)
11 * score: varchar (result)
12 * scoreMsg: varchar ("Time", "Mutual agreement"...)
16 * Structure table Players:
21 * Structure table Moves:
23 * squares: varchar (description)
27 * Structure table Chats:
36 checkGameInfo: function(g
) {
37 if (!g
.id
.toString().match(/^[0-9]+$/))
38 return "Wrong game ID";
39 if (!g
.vid
.toString().match(/^[0-9]+$/))
40 return "Wrong variant ID";
41 if (!g
.vname
.match(/^[a-zA-Z0-9]+$/))
42 return "Wrong variant name";
43 if (!g
.timeControl
.match(/^[0-9dhms
+]+$/))
44 return "Wrong characters in time control";
45 if (!g
.fen
.match(/^[a-zA-Z0-9, /-]*$/))
46 return "Bad FEN string";
47 if (g
.players
.length
!= 2)
48 return "Need exactly 2 players";
49 if (g
.players
.some(p
=> !p
.id
.toString().match(/^[0-9]+$/)))
50 return "Wrong characters in player ID";
54 create: function(vid
, fen
, timeControl
, players
, cb
)
56 db
.serialize(function() {
59 + " (vid, fenStart, fen, score, timeControl, created, drawOffer)"
60 + " VALUES (" + vid
+ ",'" + fen
+ "','" + fen
+ "','*','"
61 + timeControl
+ "'," + Date
.now() + "," + false + ")";
62 db
.run(query
, function(err
) {
65 players
.forEach((p
,idx
) => {
66 const color
= (idx
==0 ? "w" : "b");
68 "INSERT INTO Players VALUES " +
69 "(" + this.lastID
+ "," + p
.id
+ ",'" + color
+ "')";
72 cb(null, {gid: this.lastID
});
77 // TODO: queries here could be async, and wait for all to complete
78 getOne: function(id
, cb
)
80 db
.serialize(function() {
81 // TODO: optimize queries?
83 // NOTE: g.scoreMsg can be NULL
84 // (in this case score = "*" and no reason to look at it)
85 "SELECT g.id, g.vid, g.fen, g.fenStart, g.timeControl, g.score, " +
86 "g.scoreMsg, v.name AS vname " +
91 db
.get(query
, (err
,gameInfo
) => {
95 "SELECT p.uid, p.color, u.name " +
99 "WHERE p.gid = " + id
;
100 db
.all(query
, (err2
,players
) => {
104 "SELECT squares, played, idx " +
107 db
.all(query
, (err3
,moves
) => {
111 "SELECT msg, name, added " +
114 db
.all(query
, (err4
,chats
) => {
117 const game
= Object
.assign({},
125 return cb(null, game
);
133 getByUser: function(uid
, excluded
, cb
)
135 db
.serialize(function() {
136 // Next query is fine because a player appear at most once in a game
140 "WHERE uid " + (excluded
? "<>" : "=") + " " + uid
;
141 db
.all(query
, (err
,gameIds
) => {
144 gameIds
= gameIds
|| []; //might be empty
146 for (let i
=0; i
<gameIds
.length
; i
++)
148 GameModel
.getOne(gameIds
[i
]["gid"], (err2
,game
) => {
151 gameArray
.push(game
);
152 // Call callback function only when gameArray is complete:
153 if (i
== gameIds
.length
- 1)
154 return cb(null, gameArray
);
161 getPlayers: function(id
, cb
)
163 db
.serialize(function() {
168 db
.all(query
, (err
,players
) => {
169 return cb(err
, players
);
174 checkGameUpdate: function(obj
)
176 // Check all that is possible (required) in obj:
179 if (!obj
.move.played
.toString().match(/^[0-9]+$/))
180 return "Wrong move played time";
181 if (!obj
.move.idx
.toString().match(/^[0-9]+$/))
182 return "Wrong move index";
184 if (!!obj
.fen
&& !obj
.fen
.match(/^[a-zA-Z0-9, /-]*$/))
185 return "Wrong FEN string";
186 if (!!obj
.score
&& !obj
.score
.match(/^[012?*\/-]+$/))
187 return "Wrong characters in score";
188 if (!!obj
.scoreMsg
&& !obj
.scoreMsg
.match(/^[a
-zA
-Z
]+$/))
189 return "Wrong characters in score message";
191 return UserModel
.checkNameEmail({name: obj
.chat
.name
});
195 // obj can have fields move, chat, fen, drawOffer and/or score
196 update: function(id
, obj
)
198 db
.parallelize(function() {
204 modifs
+= "message = message || ' ' || '" + obj
.message
+ "',";
205 if ([true,false].includes(obj
.drawOffer
))
206 modifs
+= "drawOffer = " + obj
.drawOffer
+ ",";
208 modifs
+= "fen = '" + obj
.fen
+ "',";
210 modifs
+= "score = '" + obj
.score
+ "',";
212 modifs
+= "scoreMsg = '" + obj
.scoreMsg
+ "',";
213 modifs
= modifs
.slice(0,-1); //remove last comma
214 if (modifs
.length
> 0)
216 query
+= modifs
+ " WHERE id = " + id
;
223 "INSERT INTO Moves (gid, squares, played, idx) VALUES " +
224 "(" + id
+ ",?," + m
.played
+ "," + m
.idx
+ ")";
225 db
.run(query
, JSON
.stringify(m
.squares
));
230 "INSERT INTO Chats (gid, msg, name, added) VALUES ("
231 + id
+ ",?,'" + obj
.chat
.name
+ "'," + "," + Date
.now() + ")";
232 db
.run(query
, obj
.chat
.msg
);
239 db
.parallelize(function() {
241 "DELETE FROM Games " +
245 "DELETE FROM Players " +
249 "DELETE FROM Moves " +
253 "DELETE FROM Chats " +
259 cleanGamesDb: function()
261 const tsNow
= Date
.now();
262 // 86400000 = 24 hours in milliseconds
263 const day
= 86400000;
264 db
.serialize(function() {
268 db
.all(query
, (err
,games
) => {
271 "SELECT max(played) AS lastMaj " +
273 "WHERE gid = " + g
.id
;
274 db
.get(query
, (err2
,updated
) => {
275 if (!updated
&& tsNow
- g
.created
> 7*day
)
276 return GameModel
.remove(g
.id
);
277 const lastMaj
= updated
.lastMaj
;
278 if (g
.score
!= "*" && tsNow
- lastMaj
> 7*day
||
279 g
.score
== "*" && tsNow
- lastMaj
> 91*day
)
281 GameModel
.remove(g
.id
);
290 module
.exports
= GameModel
;