1 var db
= require("../utils/database");
2 const UserModel
= require("./User");
9 * target: recipient id (optional)
10 * vid: variant id (int)
11 * fen: varchar (optional)
12 * timeControl: string (3m+2s, 7d+1d ...)
15 const ChallengeModel
=
17 checkChallenge: function(c
)
19 if (!c
.vid
.toString().match(/^[0-9]+$/))
20 return "Wrong variant ID";
21 if (!c
.timeControl
.match(/^[0-9dhms
+]+$/))
22 return "Wrong characters in time control";
23 if (!c
.fen
.match(/^[a-zA-Z0-9, /-]*$/))
24 return "Bad FEN string";
26 return UserModel
.checkNameEmail({name: c
.to
});
30 // fen cannot be undefined
31 create: function(c
, cb
)
33 db
.serialize(function() {
35 "INSERT INTO Challenges " +
36 "(added, uid, " + (!!c
.to
? "target, " : "") +
37 "vid, fen, timeControl) VALUES " +
38 "(" + Date
.now() + "," + c
.uid
+ "," + (!!c
.to
? c
.to
+ "," : "") +
39 c
.vid
+ ",'" + c
.fen
+ "','" + c
.timeControl
+ "')";
40 db
.run(query
, function(err
) {
41 return cb(err
, {cid: this.lastID
});
46 getOne: function(id
, cb
)
48 db
.serialize(function() {
53 db
.get(query
, (err
,challenge
) => {
54 return cb(err
, challenge
);
59 // All challenges except where target is defined and not me
60 getByUser: function(uid
, cb
)
62 db
.serialize(function() {
66 "WHERE target IS NULL OR target = " + uid
;
67 db
.all(query
, (err
,challenges
) => {
68 return cb(err
, challenges
);
75 db
.serialize(function() {
77 "DELETE FROM Challenges " +
83 safeRemove: function(id
, uid
, cb
)
85 db
.serialize(function() {
89 "WHERE id = " + id
+ " AND uid = " + uid
;
90 db
.get(query
, (err
,chall
) => {
92 return cb({errmsg: "Not your challenge"});
93 ChallengeModel
.remove(id
);
99 // Remove challenges older than 1 month, and 1to1 older than 2 days
100 removeOld: function()
102 const tsNow
= Date
.now();
103 // 86400000 = 24 hours in milliseconds
104 const day
= 86400000;
105 db
.serialize(function() {
107 "SELECT id, target " +
109 db
.all(query
, (err
, challenges
) => {
110 challenges
.forEach(c
=> {
111 if ((!c
.target
&& tsNow
- c
.added
> 30*day
) ||
112 (!!c
.target
&& tsNow
- c
.added
> 2*day
))
114 db
.run("DELETE FROM CHallenges WHERE id = " + c
.id
);
122 module
.exports
= ChallengeModel
;