-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
249 lines (218 loc) · 6.96 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/**** START web-push-require ****/
const webpush = require('web-push');
const later = require('later');
/**** END web-push-require ****/
const path = require('path');
const express = require('express');
const bodyParser = require('body-parser');
const Datastore = require('nedb');
/**** START web-push-gcm ****/
const gcmServerKey = 'AIzaSyC5itnz9jHmpvQRhq8sJUCFUy2SYUPanGs';
webpush.setGCMAPIKey(gcmServerKey);
/**** END web-push-gcm ****/
/**** START web-push-vapid ****/
/**** START vapid-keys ****/
const vapidKeys = {
publicKey: 'BEl62iUYgUivxIkv69yViEuiBIa-Ib9-SkvMeAtA3LFgDzkrxZJjSgSnfckjBJuBkr3qBUYIHBQFLXYp5Nksh8U',
privateKey: 'UUxI4O8-FbRouAevSmBQ6o18hgE4nSG3qwvJTfKc-ls'
};
/**** END vapid-keys ****/
webpush.setVapidDetails(
'mailto:[email protected]',
vapidKeys.publicKey,
vapidKeys.privateKey
);
/**** END web-push-vapid ****/
const db = new Datastore({
filename: path.join(__dirname, 'subscription-store.db'),
autoload: true
});
/**** START save-sub-function ****/
function saveSubscriptionToDatabase(subscription, ip) {
return new Promise(function(resolve, reject) {
var doc = {
"endpoint": subscription.endpoint,
"keys": subscription.keys,
"ip": ip
}
db.insert(doc, function(err, newDoc) {
if (err) {
reject(err);
return;
}
resolve(newDoc._id);
});
});
};
/**** END save-sub-function ****/
function getSubscriptionsFromDatabase() {
return new Promise(function(resolve, reject) {
db.find({}, function(err, docs) {
if (err) {
reject(err);
return;
}
resolve(docs);
})
});
}
function deleteSubscriptionFromDatabase(subscriptionId) {
return new Promise(function(resolve, reject) {
db.remove({_id: subscriptionId }, {}, function(err) {
if (err) {
reject(err);
return;
}
resolve();
});
});
}
/**** START save-sub-api-validate ****/
const isValidSaveRequest = (req, res) => {
// Check the request body has at least an endpoint.
if (!req.body || !req.body.endpoint) {
// Not a valid subscription.
res.status(400);
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({
error: {
id: 'no-endpoint',
message: 'Subscription must have an endpoint.'
}
}));
return false;
}
return true;
};
/**** END save-sub-api-validate ****/
const app = express();
app.use(express.static(path.join(__dirname, 'frontend')));
app.use(bodyParser.json());
app.use(bodyParser.text());
// This is the API that receives a push subscription and saves it.
/**** START save-sub-example ****/
/**** START save-sub-api-post ****/
app.post('/api/save-subscription/', function (req, res) {
/**** END save-sub-api-post ****/
if (!isValidSaveRequest(req, res)) {
return;
}
var ip = req.headers['x-forwarded-for'] ||
req.connection.remoteAddress ||
req.socket.remoteAddress ||
req.connection.socket.remoteAddress;
/**** START save-sub-api-save-subscription ****/
return saveSubscriptionToDatabase(req.body, ip)
.then(function(subscriptionId) {
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({ data: { success: true } }));
})
.catch(function(err) {
res.status(500);
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({
error: {
id: 'unable-to-save-subscription',
message: 'The subscription was received but we were unable to save it to our database.'
}
}));
});
/**** END save-sub-api-save-subscription ****/
});
/**** END save-sub-example ****/
app.post('/api/get-subscriptions/', function (req, res) {
// TODO: This should be secured / not available publicly.
// this is for demo purposes only.
return getSubscriptionsFromDatabase()
.then(function(subscriptions) {
const reducedSubscriptions = subscriptions.map((subscription) => {
return {
id: subscription._id,
endpoint: subscription.endpoint
}
});
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({ data: { subscriptions: reducedSubscriptions } }));
})
.catch(function(err) {
res.status(500);
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({
error: {
id: 'unable-to-get-subscriptions',
message: 'We were unable to get the subscriptions from our database.'
}
}));
});
});
/**** START trig-push-send-notification ****/
function triggerPushMsg(subscription, dataToSend) {
return webpush.sendNotification(subscription, dataToSend)
.catch((err) => {
if (err.statusCode === 410) {
return deleteSubscriptionFromDatabase(subscription._id);
} else {
console.log('Subscription is no longer valid: ', err);
}
});
};
/**** END trig-push-send-notification ****/
/**** START trig-push-api-post ****/
app.post('/api/trigger-push-msg/', function (req, res) {
/**** END trig-push-api-post ****/
// NOTE: This API endpoint should be secure (i.e. protected with a login
// check OR not publicly available.)
var ip = req.headers['x-forwarded-for'] ||
req.connection.remoteAddress ||
req.socket.remoteAddress ||
req.connection.socket.remoteAddress;
const payload = req.body
const userTime = parseInt(payload['time'])
const userTimeType = payload['timeType']
delete payload['time']
delete payload['timeType']
var dataToSend = payload['msg']
if (dataToSend == null){
dataToSend = JSON.stringify(payload);
}
/**** START trig-push-send-push ****/
return getSubscriptionsFromDatabase()
.then(function(subscriptions) {
let promiseChain = Promise.resolve();
for (let i = 0; i < subscriptions.length; i++) {
const subscription = subscriptions[i];
promiseChain = promiseChain.then(() => {
//console.log('every ' + userTime + ' ' + userTimeType);
var textSched = later.parse.text('every ' + userTime + ' ' + userTimeType);//later.parse.recur().every(userTime).eval(userTimeType + '()');//later.parse.text('every ' + userTime + ' ' + userTimeType); //
if (ip === subscription.ip){
var timer = later.setInterval(function() { triggerPushMsg(subscription, dataToSend); }, textSched);
return timer
}
return
});
}
return promiseChain;
})
/**** END trig-push-send-push ****/
/**** START trig-push-return-response ****/
.then(() => {
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({ data: { success: true } }));
})
.catch(function(err) {
res.status(500);
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify({
error: {
id: 'unable-to-send-messages',
message: `We were unable to send messages to all subscriptions : ` +
`'${err.message}'`
}
}));
});
/**** END trig-push-return-response ****/
});
const port = process.env.PORT || 3000;
const server = app.listen(port, function () {
console.log('Running on http://localhost:' + port);
});