🏫😇 Checkpoint

./server.js:933874/10760
This commit is contained in:
Glitch (hello-express) 2019-11-05 10:15:45 +00:00
parent f35b91eb2e
commit 83b99ffea6
1 changed files with 7 additions and 4 deletions

View File

@ -108,10 +108,12 @@ request.post(
const accessToken = JSON.parse(body)["access_token"];
const loop = () => {
console.log("loop", lastClosed);
if (fuzIsOpen && lastSeen < new Date() - closingTimeout && lastClosed < lastSeen) {
if (
fuzIsOpen &&
lastSeen < new Date() - closingTimeout &&
lastClosed < lastSeen
) {
// the Fuz is newly closed, notify on matrix and write file to survive reboot
lastClosed = new Date();
//lastNofified = new Date();
//https.post ... send message to Fuz process.env.MATRIXROOM
request.put(
{
@ -138,13 +140,14 @@ request.post(
function(error, response, body2) {
if (!error) {
try {
lastClosed = new Date();
fs.writeFileSync(
db,
JSON.stringify({ fuzIsOpen, lastSeen, lastClosed })
);
} catch (err) {}
}
console.log(body2)
console.log(body2);
setTimeout(loop, 10 * 1000);
}
);