All DB functions transferred to Postgres; tested ok, but haven't checked new device data going into alerts table, or core-edit when device not yet in cores table.

This commit is contained in:
jkaplon 2015-10-11 16:11:32 -04:00
parent 45a9a42f2e
commit 336bc8a844
2 changed files with 74 additions and 74 deletions

110
server.js
View File

@ -123,40 +123,29 @@ app.post('/core/edit/:id', function(req, res){
if (!req.body) {
return res.sendStatus(400);
} else {
// check existence of row in Cores table, if there update, otherwise insert.
var existQry = "SELECT coreId FROM Cores WHERE coreId = ?;"
db.get(existQry, coreId, function(err, row){
if(err) throw err;
console.log(typeof row);
console.log(row);
if(typeof row == "undefined") {
var insStmt = db.prepare("INSERT INTO Cores (coreId, coreName, locationDesc) VALUES (?, ?, ?);");
insStmt.run(
coreId,
req.body.deviceName,
req.body.locationDesc
pg.connect(conString, function(err, client, done) {
if(err) { return console.error('error fetching client from pool', err); }
// check existence of row in Cores table, if not there insert, otherwise update.
client.query("SELECT coreid FROM cores WHERE coreid = ($1);", [coreId], function(err, result) {
done();
if(err) { return console.error('error running query', err); }
if(typeof result == 'undefined') {
client.query(
"INSERT INTO cores (coreid, corename, locationdesc) VALUES ($1, $2, $3);",
[coreId, req.body.deviceName, req.body.locationDesc]
);
insStmt.finalize();
} else {
if (req.body.deviceName !== "") {
var stmt = db.prepare("UPDATE Cores SET coreName = ? WHERE coreId = ?");
stmt.run(
req.body.deviceName,
coreId
);
stmt.finalize();
client.query("UPDATE cores SET corename =($1) WHERE coreid =($2)", [req.body.deviceName, coreId]);
}
if (req.body.locationDesc !== "") {
var stmt = db.prepare("UPDATE Cores SET locationDesc = ? WHERE coreId = ?");
stmt.run(
req.body.locationDesc,
coreId
);
stmt.finalize();
client.query("UPDATE cores SET locationdesc =($1) WHERE coreid =($2)", [req.body.locationDesc, coreId]);
}
}
});
});
res.redirect('https://particle.kaplon.us/');
}
@ -166,30 +155,39 @@ app.get('/core/:id', function(req, res){
var d = new Date();
var coreId = req.params.id;
console.log("GET /core/" + coreId + ", " + JSON.stringify(d, 4));
var coreMsgQry = "SELECT al.coreId, al.published_at, al.status, co.coreName " +
"FROM Alerts al left join Cores co on al.coreId = co.coreId " +
"WHERE al.coreId = ? ORDER BY al.published_at DESC LIMIT 30;"
db.all(coreMsgQry, coreId, function(err, rows){
pg.connect(conString, function(err, client, done) {
if(err) { return console.error('error fetching client from pool', err); }
var coreMsgQry = "SELECT al.coreid, al.published_at, al.status, co.corename " +
"FROM alerts al left join cores co on al.coreid = co.coreid " +
"WHERE al.coreid = ($1) ORDER BY al.published_at DESC LIMIT 30;"
client.query(coreMsgQry, [coreId], function(err, result) {
//call `done()` to release the client back to the pool
done();
if(err) {
return console.error('error running query', err);
}
// Loop over elements in rows array, convert ugly UTC times to pretty local times.
result.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.rowclass = 'alert-row';
} else { row.rowclass = 'non-alert-row'; }
});
res.render('core', {alerts: result.rows}, function(err, html) {
if(err !== null) {
console.log(err);
} else {
//console.log("SELECT coreId, published_at FROM Alerts WHERE coreId = '" + coreId + "' ORDER BY published_at DESC LIMIT 30;");
//console.log(rows);
// Loop over elements in rows array, convert ugly UTC times to pretty local times.
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.rowClass = 'alert-row';
} else { row.rowClass = 'non-alert-row'; }
});
res.render('core', {alerts: rows}, function(err, html) {
res.send(html);
});
}
});
});
});
});
app.post('/', function(req, res){
@ -201,14 +199,14 @@ app.post('/', function(req, res){
var status = JSON.stringify(innerDataJSON.status, null, 4).slice(1,-1);
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(
JSON.stringify(req.body, null, 4),
coreid,
pubAt,
status
pg.connect(conString, function(err, client, done) {
if(err) { return console.error('error fetching client from pool', err); }
client.query(
"INSERT INTO alerts (origjson, coreid, published_at, status) VALUES ($1, $2, $3, $4);",
[JSON.stringify(req.body, null, 4), coreid, pubAt, status]
);
stmt.finalize();
});
// Send emails on alerts only
if(status.toLowerCase().indexOf('alert') > -1){
@ -216,13 +214,14 @@ app.post('/', function(req, res){
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';
var nameQry = 'SELECT coreName FROM Cores WHERE coreId = ?;'
db.get(nameQry, coreid, function(err, row){
if ((err) || (typeof row == undefined)) {
pg.connect(conString, function(err, client, done) {
if(err) { return console.error('error fetching client from pool', err); }
client.query('SELECT corename FROM cores WHERE coreid = $1;', [coreid], function(err, result) {
if ((err) || (typeof result == undefined)) {
// Don't care about this error or empty result set, still need to send email.
row.coreName = '# No Name #';
result.rows[0].corename = '# No Name #';
}
mailOptions.text = mailOptions.text + 'From device, ' + row.coreName + '\n';
mailOptions.text = mailOptions.text + 'From device, ' + result.rows[0].corename + '\n';
transporter.sendMail(mailOptions, function(error, info){
if(error){
@ -232,6 +231,7 @@ app.post('/', function(req, res){
}
});
});
});
}
//res.send(JSON.stringify(req.body, null, 4));
});

View File

@ -3,14 +3,14 @@
<p>
<b>
{{! Grab 1st coreName value (it will be same value for entire set).}}
{{#if alerts.0.coreName}}
Alerts from Particle Core: {{alerts.0.coreName}}
{{#if alerts.0.corename}}
Alerts from Particle Core: {{alerts.0.corename}}
{{else}}
Alerts from Particle Core: # No Name #
{{/if}}
</b>
<a href="https://particle.kaplon.us/core/edit/{{alerts.0.coreId}}" class="btn btn-primary">Edit Details</a>
<a href="https://particle.kaplon.us/core/edit/{{alerts.0.coreid}}" class="btn btn-primary">Edit Details</a>
<a href="https://particle.kaplon.us" class="btn btn-primary">Back to Device Listing</a>
</p>
@ -24,9 +24,9 @@
</thead>
<tbody>
{{#each alerts}}
<tr class="{{this.rowClass}}">
<td>{{this.pubDate}}</td>
<td>{{this.pubTime}}</td>
<tr class="{{this.rowclass}}">
<td>{{this.pubdate}}</td>
<td>{{this.pubtime}}</td>
<td>{{this.status}}</td>
</tr>
{{/each}}