2017-07-10 19:47:03 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const _ = require("lodash");
|
|
|
|
const fs = require("fs");
|
|
|
|
const path = require("path");
|
|
|
|
const WebPushAPI = require("web-push");
|
|
|
|
const Helper = require("../helper");
|
|
|
|
|
|
|
|
class WebPush {
|
|
|
|
constructor() {
|
2017-12-07 03:54:54 +00:00
|
|
|
const vapidPath = path.join(Helper.getHomePath(), "vapid.json");
|
2017-07-10 19:47:03 +00:00
|
|
|
|
|
|
|
if (fs.existsSync(vapidPath)) {
|
|
|
|
const data = fs.readFileSync(vapidPath, "utf-8");
|
|
|
|
const parsedData = JSON.parse(data);
|
|
|
|
|
|
|
|
if (typeof parsedData.publicKey === "string" && typeof parsedData.privateKey === "string") {
|
|
|
|
this.vapidKeys = {
|
|
|
|
publicKey: parsedData.publicKey,
|
|
|
|
privateKey: parsedData.privateKey,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.vapidKeys) {
|
|
|
|
this.vapidKeys = WebPushAPI.generateVAPIDKeys();
|
|
|
|
|
|
|
|
fs.writeFileSync(vapidPath, JSON.stringify(this.vapidKeys, null, "\t"));
|
|
|
|
|
|
|
|
log.info("New VAPID key pair has been generated for use with push subscription.");
|
|
|
|
}
|
|
|
|
|
|
|
|
WebPushAPI.setVapidDetails(
|
|
|
|
"https://github.com/thelounge/lounge",
|
|
|
|
this.vapidKeys.publicKey,
|
|
|
|
this.vapidKeys.privateKey
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
push(client, payload, onlyToOffline) {
|
|
|
|
_.forOwn(client.config.sessions, (session, token) => {
|
|
|
|
if (session.pushSubscription) {
|
|
|
|
if (onlyToOffline && _.find(client.attachedClients, {token: token}) !== undefined) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.pushSingle(client, session.pushSubscription, payload);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
pushSingle(client, subscription, payload) {
|
|
|
|
WebPushAPI
|
|
|
|
.sendNotification(subscription, JSON.stringify(payload))
|
|
|
|
.catch((error) => {
|
|
|
|
if (error.statusCode >= 400 && error.statusCode < 500) {
|
|
|
|
log.warn(`WebPush subscription for ${client.name} returned an error (${error.statusCode}), removing subscription`);
|
|
|
|
|
|
|
|
_.forOwn(client.config.sessions, (session, token) => {
|
|
|
|
if (session.pushSubscription && session.pushSubscription.endpoint === subscription.endpoint) {
|
|
|
|
client.unregisterPushSubscription(token);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-26 15:47:35 +00:00
|
|
|
log.error(`WebPush Error (${error})`);
|
2017-07-10 19:47:03 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = WebPush;
|