da59b4a6dbe6433e84beeceaa501b13fc12f0f0d
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
.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";
52 create: function(vid
, fen
, timeControl
, players
, cb
)
54 db
.serialize(function() {
57 + " (vid, fenStart, fen, score, timeControl, created, drawOffer)"
58 + " VALUES (" + vid
+ ",'" + fen
+ "','" + fen
+ "','*','"
59 + timeControl
+ "'," + Date
.now() + "," + false + ")";
60 db
.run(query
, function(err
) {
63 players
.forEach((p
,idx
) => {
64 const color
= (idx
==0 ? "w" : "b");
66 "INSERT INTO Players VALUES " +
67 "(" + this.lastID
+ "," + p
.id
+ ",'" + color
+ "')";
70 cb(null, {gid: this.lastID
});
75 // TODO: queries here could be async, and wait for all to complete
76 getOne: function(id
, cb
)
78 db
.serialize(function() {
79 // TODO: optimize queries?
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 " +
89 db
.get(query
, (err
,gameInfo
) => {
93 "SELECT p.uid, p.color, u.name " +
97 "WHERE p.gid = " + id
;
98 db
.all(query
, (err2
,players
) => {
102 "SELECT squares, played, idx " +
105 db
.all(query
, (err3
,moves
) => {
109 "SELECT msg, name, added " +
112 db
.all(query
, (err4
,chats
) => {
115 const game
= Object
.assign({},
123 return cb(null, game
);
131 getByUser: function(uid
, excluded
, cb
)
133 db
.serialize(function() {
134 // Next query is fine because a player appear at most once in a game
138 "WHERE uid " + (excluded
? "<>" : "=") + " " + uid
;
139 db
.all(query
, (err
,gameIds
) => {
142 gameIds
= gameIds
|| []; //might be empty
144 for (let i
=0; i
<gameIds
.length
; i
++)
146 GameModel
.getOne(gameIds
[i
]["gid"], (err2
,game
) => {
149 gameArray
.push(game
);
150 // Call callback function only when gameArray is complete:
151 if (i
== gameIds
.length
- 1)
152 return cb(null, gameArray
);
159 getPlayers: function(id
, cb
)
161 db
.serialize(function() {
166 db
.all(query
, (err
,players
) => {
167 return cb(err
, players
);
172 checkGameUpdate: function(obj
)
174 // Check all that is possible (required) in obj:
177 if (!obj
.move.played
.toString().match(/^[0-9]+$/))
178 return "Wrong move played time";
179 if (!obj
.move.idx
.toString().match(/^[0-9]+$/))
180 return "Wrong move index";
182 if (!!obj
.fen
&& !obj
.fen
.match(/^[a-zA-Z0-9, /-]*$/))
183 return "Wrong FEN string";
184 if (!!obj
.score
&& !obj
.score
.match(/^[012?*\/-]+$/))
185 return "Wrong characters in score";
186 if (!!obj
.scoreMsg
&& !obj
.scoreMsg
.match(/^[a
-zA
-Z
]+$/))
187 return "Wrong characters in score message";
189 return UserModel
.checkNameEmail({name: obj
.chat
.name
});
193 // obj can have fields move, chat, fen, drawOffer and/or score
194 update: function(id
, obj
)
196 db
.parallelize(function() {
202 modifs
+= "message = message || ' ' || '" + obj
.message
+ "',";
203 if ([true,false].includes(obj
.drawOffer
))
204 modifs
+= "drawOffer = " + obj
.drawOffer
+ ",";
206 modifs
+= "fen = '" + obj
.fen
+ "',";
208 modifs
+= "score = '" + obj
.score
+ "',";
210 modifs
+= "scoreMsg = '" + obj
.scoreMsg
+ "',";
211 modifs
= modifs
.slice(0,-1); //remove last comma
212 if (modifs
.length
> 0)
214 query
+= modifs
+ " WHERE id = " + id
;
221 "INSERT INTO Moves (gid, squares, played, idx) VALUES " +
222 "(" + id
+ ",?," + m
.played
+ "," + m
.idx
+ ")";
223 db
.run(query
, JSON
.stringify(m
.squares
));
228 "INSERT INTO Chats (gid, msg, name, added) VALUES ("
229 + id
+ ",?,'" + obj
.chat
.name
+ "'," + Date
.now() + ")";
230 db
.run(query
, obj
.chat
.msg
);
237 db
.parallelize(function() {
239 "DELETE FROM Games " +
243 "DELETE FROM Players " +
247 "DELETE FROM Moves " +
251 "DELETE FROM Chats " +
257 cleanGamesDb: function()
259 const tsNow
= Date
.now();
260 // 86400000 = 24 hours in milliseconds
261 const day
= 86400000;
262 db
.serialize(function() {
266 db
.all(query
, (err
,games
) => {
269 "SELECT max(played) AS lastMaj " +
271 "WHERE gid = " + g
.id
;
272 db
.get(query
, (err2
,updated
) => {
273 if (!updated
&& tsNow
- g
.created
> 7*day
)
274 return GameModel
.remove(g
.id
);
275 const lastMaj
= updated
.lastMaj
;
276 if (g
.score
!= "*" && tsNow
- lastMaj
> 7*day
||
277 g
.score
== "*" && tsNow
- lastMaj
> 91*day
)
279 GameModel
.remove(g
.id
);
288 module
.exports
= GameModel
;