-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeep_alive.js
42 lines (34 loc) · 1.22 KB
/
keep_alive.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
const db = require('./Workers/DB.js'); //Sqlite3 DB functions
var express = require("express");
var app = express();
// we've started you off with Express,
// but feel free to use whatever libs or frameworks you'd like through `package.json`.
// http://expressjs.com/en/starter/static-files.html
//app.use(express.static("Public"));
// http://expressjs.com/en/starter/basic-routing.html
// listen for requests :)
var listener = app.listen(process.env.PORT, function() {
console.log("Your app is listening on port " + listener.address().port);
});
const http = require("http");
app.get("/", (request, response) => {
console.log(Date.now() + " Ping Received");
//response.sendFile(__dirname + "/Public/index.html");
db.db.all("SELECT eventID, desc, timestamp FROM closures", function(err,row) {
response.send(JSON.stringify(row[0]));
});
//response.sendStatus(200);
});
//Drop a status in the console every 15 minutes
setInterval(consolestatus, 900000);
function consolestatus() {
console.log(timenow() + " - Pong");
}
//Get current local time
function timenow() {
var nd = new Date();
nd.setHours(nd.getHours() - 4);
nd = nd.toLocaleString();
return nd;
}
app.listen(process.env.PORT);