-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
61 lines (49 loc) · 1.49 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
const express = require('express');
const app = express();
const bodyParser = require('body-parser');
const {Datastore} = require('@google-cloud/datastore');
require('@google-cloud/debug-agent').start({ allowExpressions: true });
const { v4: uuidv4 } = require('uuid');
app.use(bodyParser.json());
const port = process.env.PORT || 8080;
const datastore = new Datastore();
app.listen(port, () => {
console.log('Listening on port', port);
});
app.get('/out-of-stock', async (req, res) => {
console.log(`Out Of Stock Service: health check`);
res.status(200).send('OK');
})
app.post('/out-of-stock', async (req, res) =>
{
const notification = req.body;
console.log(`Request ${notification}`)
try
{
console.log(`Out of stock report ${notification.product.id}`);
saveNotification(notification.product);
console.log(`Out of stock notification saved ${notification.product.id}`);
res.status(200).send();
}
catch (ex) {
console.log(`Out of stock notification error ${notification.product.id} failure: ${ex}`);
res.status(500).send();
}
})
function saveNotification(product)
{
console.log('Saving notification');
var id = uuidv4();
const kind = 'notification';
// The Cloud Datastore key for the new entity
const notificationKey = datastore.key([kind, id]);
const notification = {
key: notificationKey,
data:
{
product: product
},
};
// [END datastore_entity_with_parent]
return datastore.save(notification);
}