2017-11-20 12:40:09 -06:00
|
|
|
const push = require('web-push');
|
|
|
|
import * as mongo from 'mongodb';
|
2018-04-01 22:58:53 -05:00
|
|
|
import Subscription from './models/sw-subscription';
|
2018-04-01 23:15:53 -05:00
|
|
|
import config from './config';
|
2017-11-20 12:40:09 -06:00
|
|
|
|
2017-11-20 16:19:02 -06:00
|
|
|
if (config.sw) {
|
2017-11-22 14:43:00 -06:00
|
|
|
// アプリケーションの連絡先と、サーバーサイドの鍵ペアの情報を登録
|
|
|
|
push.setVapidDetails(
|
|
|
|
config.maintainer.url,
|
|
|
|
config.sw.public_key,
|
|
|
|
config.sw.private_key);
|
2017-11-20 16:19:02 -06:00
|
|
|
}
|
2017-11-20 12:40:09 -06:00
|
|
|
|
|
|
|
export default async function(userId: mongo.ObjectID | string, type, body?) {
|
2017-11-20 16:19:02 -06:00
|
|
|
if (!config.sw) return;
|
|
|
|
|
2017-11-20 12:40:09 -06:00
|
|
|
if (typeof userId === 'string') {
|
|
|
|
userId = new mongo.ObjectID(userId);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fetch
|
|
|
|
const subscriptions = await Subscription.find({
|
2018-03-29 00:48:47 -05:00
|
|
|
userId: userId
|
2017-11-20 12:40:09 -06:00
|
|
|
});
|
|
|
|
|
|
|
|
subscriptions.forEach(subscription => {
|
|
|
|
const pushSubscription = {
|
|
|
|
endpoint: subscription.endpoint,
|
|
|
|
keys: {
|
|
|
|
auth: subscription.auth,
|
|
|
|
p256dh: subscription.publickey
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
push.sendNotification(pushSubscription, JSON.stringify({
|
|
|
|
type, body
|
|
|
|
})).catch(err => {
|
|
|
|
//console.log(err.statusCode);
|
|
|
|
//console.log(err.headers);
|
|
|
|
//console.log(err.body);
|
|
|
|
|
|
|
|
if (err.statusCode == 410) {
|
|
|
|
Subscription.remove({
|
2018-03-29 00:48:47 -05:00
|
|
|
userId: userId,
|
2017-11-20 12:40:09 -06:00
|
|
|
endpoint: subscription.endpoint,
|
|
|
|
auth: subscription.auth,
|
|
|
|
publickey: subscription.publickey
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|