-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
95 lines (83 loc) · 3.1 KB
/
server.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
88
89
90
91
92
93
94
95
const path = require('path');
const express = require('express');
const session = require('express-session');
const exphbs = require('express-handlebars');
const routes = require('./controllers');
const helpers = require('./utils/helpers');
const { sendEmail } = require('./utils/nodemailer');
const { Op } = require('sequelize');
const sequelize = require('./config/connection');
const SequelizeStore = require('connect-session-sequelize')(session.Store);
const { Notification } = require('./models');
const app = express();
const PORT = process.env.PORT || 3001;
// Set up Handlebars.js engine with custom helpers
const hbs = exphbs.create({ helpers });
const sess = {
// Signs the session
secret: 'Super secret secret',
// This IS essentially the session
cookie: {
// when the cookie will expire (in ms)
maxAge: 3000000,
// prevents access through JS in the client
httpOnly: true,
// Server and Client will reject if not served from HTTPS
secure: false,
// Only sites on the same domain can use this cookie
sameSite: 'strict',
},
// forces the session to be saved even if nothing changed
resave: false,
// forces a session to be saved when it is new regardless of if anything has changed
saveUninitialized: true,
// where to store the session on the server
store: new SequelizeStore({
db: sequelize
})
};
app.use(session(sess));
// Inform Express.js on which template engine to use
app.engine('handlebars', hbs.engine);
app.set('view engine', 'handlebars');
app.use(express.json());
app.use(express.urlencoded({ extended: true }));
app.use(express.static(path.join(__dirname, 'public')));
app.use(routes);
function pollEmails() {
setInterval(async() => {
const currentTime = new Date().getTime();
const dayBefore = 24*60*60*1000;
let dueTime = new Date(currentTime+dayBefore);
const scheduledEmailsData = await Notification.findAll({
where: {
// due_date: {[Op.lte]: dueTime, [Op.gt]: currentTime}
due_date: {[Op.between]: [ currentTime, currentTime + dayBefore]}
}
});
const scheduledEmails = scheduledEmailsData.map(item => item.get({
plain: true
}))
console.log('scheduledEmails', scheduledEmails)
return scheduledEmails.forEach(async (email) => {
const emailDetails = JSON.parse(email.details);
if(emailDetails.to) {
console.log(emailDetails);
const sender = await sendEmail(emailDetails.to, emailDetails.subject, emailDetails.text);
console.log (sender);
if(sender.response.includes('OK')) {
await Notification.destroy({
where: {
id:email.id
}
});
console.log('deleted one email');
}
}
});
}, 10*1000);
}
sequelize.sync({ force: false }).then(() => {
pollEmails();
app.listen(PORT, () => console.log('Now listening'));
});