Interim commit, email code in a good spot if untested; back to alert row highlighting now that server not running in production mode (and thus not showimg template changes due to caching).
This commit is contained in:
parent
9d7345bee2
commit
11d8d76cc0
@ -12,14 +12,14 @@ exports.getLocDateFromUTC = function(utcDtTm) {
|
||||
return localDt;
|
||||
};
|
||||
|
||||
exports.getCoreNameFromCoreId = function(db, coreId) {
|
||||
db.all('SELECT coreName FROM Cores WHERE coreId = ? LIMIT 1;', coreId, function(err, rows){
|
||||
if (err !== null) {
|
||||
console.log(err);
|
||||
} else {
|
||||
return rows.coreName;
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
};
|
||||
// This returned undefined, it probably won't work w/out some fancy dependency injection stuff.
|
||||
//exports.getCoreNameFromCoreId = function(db, coreId) {
|
||||
//db.all('SELECT coreName FROM Cores WHERE coreId = ? LIMIT 1;', coreId, function(err, rows){
|
||||
//if (err !== null) {
|
||||
//console.log(err);
|
||||
//} else {
|
||||
//return rows.coreName;
|
||||
//}
|
||||
//}
|
||||
//);
|
||||
//};
|
||||
|
18
server.js
18
server.js
@ -20,7 +20,7 @@ var mailOptions = {
|
||||
from: 'Alert Monitor <alertmonitorfl@gmail.com>',
|
||||
to: 'jody@kaplon.us,don@gettner.com',
|
||||
subject: 'Alert received',
|
||||
text: 'test alert' // Get custom text in here with device info.
|
||||
text: 'test alert' // Get custom text later on email generation.
|
||||
};
|
||||
|
||||
|
||||
@ -178,6 +178,9 @@ app.get('/core/:id', function(req, res){
|
||||
rows.forEach(function(row){
|
||||
row.pubDate = alertmonUtils.getLocDateFromUTC(row.published_at);
|
||||
row.pubTime = alertmonUtils.getLocTimeFromUTC(row.published_at);
|
||||
if(row.status.toLowerCase().indexOf('alert') > -1){
|
||||
row.isAlert = 1;
|
||||
}
|
||||
});
|
||||
|
||||
res.render('core', {alerts: rows}, function(err, html) {
|
||||
@ -197,7 +200,7 @@ app.post('/', function(req, res){
|
||||
var coreid = JSON.stringify(req.body.coreid, null, 4).slice(1,-1);
|
||||
var pubAt = JSON.stringify(req.body.published_at, null, 4).slice(1,-1);
|
||||
var stmt = db.prepare("INSERT INTO Alerts (OrigJSON, coreid, published_at, status) VALUES (?, ?, ?, ?)");
|
||||
stmt.run( // Use .slice to get rid of leading and trailing double quotes.
|
||||
stmt.run(
|
||||
JSON.stringify(req.body, null, 4),
|
||||
coreid,
|
||||
pubAt,
|
||||
@ -210,7 +213,14 @@ app.post('/', function(req, res){
|
||||
mailOptions.text = 'An alert message was received: \n\n';
|
||||
mailOptions.text = mailOptions.text + 'Status message, ' + status + '\n';
|
||||
mailOptions.text = mailOptions.text + 'Published at, ' + alertmonUtils.getLocDateFromUTC(pubAt) + ' ' + alertmonUtils.getLocTimeFromUTC(pubAt) + '\n';
|
||||
mailOptions.text = mailOptions.text + 'From device, ' + alertmonUtils.getCoreNameFromCoreId(db, coreid) + '\n';
|
||||
//mailOptions.text = mailOptions.text + 'From device, ' + alertmonUtils.getCoreNameFromCoreId(db, coreid) + '\n';
|
||||
var nameQry = 'SELECT coreName FROM Cores WHERE coreId = ?;'
|
||||
db.get(nameQry, coreid, function(err, row){
|
||||
if ((err) || (typeof row == undefined)) {
|
||||
// Don't care about this error or empty result set, still need to send email.
|
||||
row.coreName = '# No Name #';
|
||||
}
|
||||
mailOptions.text = mailOptions.text + 'From device, ' + row.coreName + '\n';
|
||||
|
||||
transporter.sendMail(mailOptions, function(error, info){
|
||||
if(error){
|
||||
@ -219,8 +229,8 @@ app.post('/', function(req, res){
|
||||
console.log('Message sent: ' + info.response);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
//res.send(JSON.stringify(req.body, null, 4));
|
||||
});
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each alerts}}
|
||||
<tr>
|
||||
<tr class=\"{{this.isAlert}}\">
|
||||
<td>{{this.pubDate}}</td>
|
||||
<td>{{this.pubTime}}</td>
|
||||
<td>{{this.status}}</td>
|
||||
|
Loading…
Reference in New Issue
Block a user