-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcron.js
87 lines (80 loc) · 2.08 KB
/
cron.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
const express = require("express");
const router = express.Router();
const SessionsModel = require("./models/Sessions");
const AuthModel = require("./models/Auth");
const VerifyModel = require("./models/Verify");
const SocialAuthModel = require("./models/SocialAuth");
router.get('/', (req, res) => {
checkExpiredSession(numSessionsRemoved => {
checkExpiredAuthentication(numAuthRemoved => {
checkExpiredVerification(numUnverifiedRemoved => {
checkExpiredSocialAuth(numSocialAuthRemoved => {
res.json({
status: "success",
sessionsRemoved: numSessionsRemoved,
authRemoved: numAuthRemoved,
unverifiedRemoved: numUnverifiedRemoved,
socialAuthRemoved: numSocialAuthRemoved
});
});
});
});
});
});
function checkExpiredSession(cb) {
SessionsModel.find({}, (err, doc) => {
if (err) return cb(0);
if (doc == null) return cb(0);
let numSessionsRemoved = 0;
doc.forEach(session => {
if (Date.now() > session.expire) {
session.remove();
numSessionsRemoved++;
}
});
cb(numSessionsRemoved);
});
}
function checkExpiredAuthentication(cb) {
AuthModel.find({}, (err, doc) => {
if (err) return cb(0);
if (doc == null) return cb(0);
let numRemoved = 0;
doc.forEach(auth => {
if (Date.now() > auth.expire) {
auth.remove();
numRemoved++;
}
});
cb(numRemoved);
});
}
function checkExpiredVerification(cb) {
VerifyModel.find({}, (err, doc) => {
if (err) return cb(0);
if (doc == null) return cb(0);
let numRemoved = 0;
doc.forEach(verify => {
if (Date.now() > verify.expire) {
verify.remove();
numRemoved++;
}
});
cb(numRemoved);
});
}
function checkExpiredSocialAuth(cb) {
SocialAuthModel.find({}, (err, doc) => {
if (err) return cb(0);
if (doc == null) return cb(0);
let numRemoved = 0;
doc.forEach(auth => {
if (Date.now() > auth.expire) {
auth.remove();
numRemoved++;
}
});
cb(numRemoved);
});
}
module.exports = router;