Created
September 5, 2018 12:58
-
-
Save RWaltersMA/163d90adc84419c4bf7b72bd058bece5 to your computer and use it in GitHub Desktop.
MongoDB Stitch webhook for IoT blog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports = function(payload,response) { | |
const mongodb = context.services.get("mongodb-atlas"); | |
const sensordata = mongodb.db("iotdb").collection("sensordata"); | |
var body = {}; | |
if (payload.body) { | |
try{ | |
const document = EJSON.parse(payload.body.text()); | |
//sample document:{ "device" : "TempSensor1", "sample_date" : "2018-09-03", "value" : "72.5", "time" : "1536011844" } | |
var sample={val:Number(document.value), time: Number(document.time) }; | |
var day=new Date(document.sample_date); | |
sensordata.updateOne({"device":document.device,nsamples:{$lt:200},day:day}, | |
{"$push":{samples:sample}, | |
"$min":{first:sample.time}, | |
"$max":{last:sample.time}, | |
"$inc":{nsamples:Number(1)}}, | |
{upsert:true} | |
).then(result => { | |
response.setStatusCode(201); | |
}); | |
} | |
catch(err) { | |
console.log(err); | |
response.setStatusCode(500); | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Although, I am new to this field but I believe in learning by doing. So far so good I think I am catching up. Thank you.