mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-27 05:35:07 +01:00
ff5c854192
- Use new notification request/opt-in flow for push - Implement unsubscribing - Implement muting - Implement emojis in title - Add iOS specific PWA warning - Don’t use websockets when web push is enabled - Fix duplicate notifications - Implement default web push setting - Implement changing subscription type - Implement web push subscription refresh - Implement web push notification click
124 lines
4.4 KiB
JavaScript
124 lines
4.4 KiB
JavaScript
import Connection from "./Connection";
|
|
import { NotificationType } from "./SubscriptionManager";
|
|
import { hashCode } from "./utils";
|
|
|
|
const makeConnectionId = (subscription, user) =>
|
|
user ? hashCode(`${subscription.id}|${user.username}|${user.password ?? ""}|${user.token ?? ""}`) : hashCode(`${subscription.id}`);
|
|
|
|
/**
|
|
* The connection manager keeps track of active connections (WebSocket connections, see Connection).
|
|
*
|
|
* Its refresh() method reconciles state changes with the target state by closing/opening connections
|
|
* as required. This is done pretty much exactly the same way as in the Android app.
|
|
*/
|
|
class ConnectionManager {
|
|
constructor() {
|
|
this.connections = new Map(); // ConnectionId -> Connection (hash, see below)
|
|
this.stateListener = null; // Fired when connection state changes
|
|
this.messageListener = null; // Fired when new notifications arrive
|
|
}
|
|
|
|
registerStateListener(listener) {
|
|
this.stateListener = listener;
|
|
}
|
|
|
|
resetStateListener() {
|
|
this.stateListener = null;
|
|
}
|
|
|
|
registerMessageListener(listener) {
|
|
this.messageListener = listener;
|
|
}
|
|
|
|
resetMessageListener() {
|
|
this.messageListener = null;
|
|
}
|
|
|
|
/**
|
|
* This function figures out which websocket connections should be running by comparing the
|
|
* current state of the world (connections) with the target state (targetIds).
|
|
*
|
|
* It uses a "connectionId", which is sha256($subscriptionId|$username|$password) to identify
|
|
* connections. If any of them change, the connection is closed/replaced.
|
|
*/
|
|
async refresh(subscriptions, users) {
|
|
if (!subscriptions || !users) {
|
|
return;
|
|
}
|
|
console.log(`[ConnectionManager] Refreshing connections`);
|
|
const subscriptionsWithUsersAndConnectionId = subscriptions
|
|
.map((s) => {
|
|
const [user] = users.filter((u) => u.baseUrl === s.baseUrl);
|
|
const connectionId = makeConnectionId(s, user);
|
|
return { ...s, user, connectionId };
|
|
})
|
|
// we want to create a ws for both sound-only and active browser notifications,
|
|
// only background notifications don't need this as they come over web push.
|
|
// however, if background notifications are muted, we again need the ws while
|
|
// the page is active
|
|
.filter((s) => s.notificationType !== NotificationType.BACKGROUND && s.mutedUntil !== 1);
|
|
|
|
console.log();
|
|
const targetIds = subscriptionsWithUsersAndConnectionId.map((s) => s.connectionId);
|
|
const deletedIds = Array.from(this.connections.keys()).filter((id) => !targetIds.includes(id));
|
|
|
|
// Create and add new connections
|
|
subscriptionsWithUsersAndConnectionId.forEach((subscription) => {
|
|
const subscriptionId = subscription.id;
|
|
const { connectionId } = subscription;
|
|
const added = !this.connections.get(connectionId);
|
|
if (added) {
|
|
const { baseUrl, topic, user } = subscription;
|
|
const since = subscription.last;
|
|
const connection = new Connection(
|
|
connectionId,
|
|
subscriptionId,
|
|
baseUrl,
|
|
topic,
|
|
user,
|
|
since,
|
|
(subId, notification) => this.notificationReceived(subId, notification),
|
|
(subId, state) => this.stateChanged(subId, state)
|
|
);
|
|
this.connections.set(connectionId, connection);
|
|
console.log(
|
|
`[ConnectionManager] Starting new connection ${connectionId} (subscription ${subscriptionId} with user ${
|
|
user ? user.username : "anonymous"
|
|
})`
|
|
);
|
|
connection.start();
|
|
}
|
|
});
|
|
|
|
// Delete old connections
|
|
deletedIds.forEach((id) => {
|
|
console.log(`[ConnectionManager] Closing connection ${id}`);
|
|
const connection = this.connections.get(id);
|
|
this.connections.delete(id);
|
|
connection.close();
|
|
});
|
|
}
|
|
|
|
stateChanged(subscriptionId, state) {
|
|
if (this.stateListener) {
|
|
try {
|
|
this.stateListener(subscriptionId, state);
|
|
} catch (e) {
|
|
console.error(`[ConnectionManager] Error updating state of ${subscriptionId} to ${state}`, e);
|
|
}
|
|
}
|
|
}
|
|
|
|
notificationReceived(subscriptionId, notification) {
|
|
if (this.messageListener) {
|
|
try {
|
|
this.messageListener(subscriptionId, notification);
|
|
} catch (e) {
|
|
console.error(`[ConnectionManager] Error handling notification for ${subscriptionId}`, e);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
const connectionManager = new ConnectionManager();
|
|
export default connectionManager;
|