2023-05-23 21:13:01 +02:00
|
|
|
import { useNavigate, useParams } from "react-router-dom";
|
|
|
|
import { useEffect, useState } from "react";
|
2022-03-10 05:28:55 +01:00
|
|
|
import subscriptionManager from "../app/SubscriptionManager";
|
2023-05-23 21:13:01 +02:00
|
|
|
import { disallowedTopic, expandSecureUrl, topicUrl } from "../app/utils";
|
2022-03-10 05:28:55 +01:00
|
|
|
import notifier from "../app/Notifier";
|
|
|
|
import routes from "./routes";
|
|
|
|
import connectionManager from "../app/ConnectionManager";
|
|
|
|
import poller from "../app/Poller";
|
2022-03-27 15:20:25 +02:00
|
|
|
import pruner from "../app/Pruner";
|
2022-12-09 02:50:48 +01:00
|
|
|
import session from "../app/Session";
|
2023-02-02 21:19:37 +01:00
|
|
|
import accountApi from "../app/AccountApi";
|
2023-05-23 21:13:01 +02:00
|
|
|
import { UnauthorizedError } from "../app/errors";
|
2022-03-10 05:28:55 +01:00
|
|
|
|
2022-03-11 20:43:54 +01:00
|
|
|
/**
|
|
|
|
* Wire connectionManager and subscriptionManager so that subscriptions are updated when the connection
|
|
|
|
* state changes. Conversely, when the subscription changes, the connection is refreshed (which may lead
|
|
|
|
* to the connection being re-established).
|
|
|
|
*/
|
2023-01-24 21:31:39 +01:00
|
|
|
export const useConnectionListeners = (account, subscriptions, users) => {
|
2023-05-23 21:13:01 +02:00
|
|
|
const navigate = useNavigate();
|
2022-03-11 20:43:54 +01:00
|
|
|
|
2023-05-23 21:13:01 +02:00
|
|
|
// Register listeners for incoming messages, and connection state changes
|
|
|
|
useEffect(
|
|
|
|
() => {
|
|
|
|
const handleMessage = async (subscriptionId, message) => {
|
|
|
|
const subscription = await subscriptionManager.get(subscriptionId);
|
|
|
|
if (subscription.internal) {
|
|
|
|
await handleInternalMessage(message);
|
|
|
|
} else {
|
|
|
|
await handleNotification(subscriptionId, message);
|
|
|
|
}
|
|
|
|
};
|
2023-01-12 03:38:10 +01:00
|
|
|
|
2023-05-23 21:13:01 +02:00
|
|
|
const handleInternalMessage = async (message) => {
|
2023-05-24 01:29:47 +02:00
|
|
|
console.log(`[ConnectionListener] Received message on sync topic`, message.message);
|
2023-05-23 21:13:01 +02:00
|
|
|
try {
|
|
|
|
const data = JSON.parse(message.message);
|
|
|
|
if (data.event === "sync") {
|
|
|
|
console.log(`[ConnectionListener] Triggering account sync`);
|
|
|
|
await accountApi.sync();
|
|
|
|
} else {
|
2023-05-24 01:29:47 +02:00
|
|
|
console.log(`[ConnectionListener] Unknown message type. Doing nothing.`);
|
2023-05-23 21:13:01 +02:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2023-05-24 01:29:47 +02:00
|
|
|
console.log(`[ConnectionListener] Error parsing sync topic message`, e);
|
2023-05-23 21:13:01 +02:00
|
|
|
}
|
|
|
|
};
|
2022-03-11 20:43:54 +01:00
|
|
|
|
2023-05-23 21:13:01 +02:00
|
|
|
const handleNotification = async (subscriptionId, notification) => {
|
2023-05-24 01:29:47 +02:00
|
|
|
const added = await subscriptionManager.addNotification(subscriptionId, notification);
|
2023-05-23 21:13:01 +02:00
|
|
|
if (added) {
|
2023-05-24 01:29:47 +02:00
|
|
|
const defaultClickAction = (subscription) => navigate(routes.forSubscription(subscription));
|
|
|
|
await notifier.notify(subscriptionId, notification, defaultClickAction);
|
2023-01-24 21:31:39 +01:00
|
|
|
}
|
2023-05-23 21:13:01 +02:00
|
|
|
};
|
|
|
|
connectionManager.registerStateListener(subscriptionManager.updateState);
|
|
|
|
connectionManager.registerMessageListener(handleMessage);
|
|
|
|
return () => {
|
|
|
|
connectionManager.resetStateListener();
|
|
|
|
connectionManager.resetMessageListener();
|
|
|
|
};
|
|
|
|
},
|
|
|
|
// We have to disable dep checking for "navigate". This is fine, it never changes.
|
2023-05-24 09:03:28 +02:00
|
|
|
|
2023-05-23 21:13:01 +02:00
|
|
|
[]
|
|
|
|
);
|
|
|
|
|
|
|
|
// Sync topic listener: For accounts with sync_topic, subscribe to an internal topic
|
|
|
|
useEffect(() => {
|
|
|
|
if (!account || !account.sync_topic) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
subscriptionManager.add(config.base_url, account.sync_topic, true); // Dangle!
|
|
|
|
}, [account]);
|
2023-01-24 21:31:39 +01:00
|
|
|
|
2023-05-23 21:13:01 +02:00
|
|
|
// When subscriptions or users change, refresh the connections
|
|
|
|
useEffect(() => {
|
|
|
|
connectionManager.refresh(subscriptions, users); // Dangle
|
|
|
|
}, [subscriptions, users]);
|
2022-03-10 05:28:55 +01:00
|
|
|
};
|
|
|
|
|
2022-03-11 20:43:54 +01:00
|
|
|
/**
|
|
|
|
* Automatically adds a subscription if we navigate to a page that has not been subscribed to.
|
|
|
|
* This will only be run once after the initial page load.
|
|
|
|
*/
|
2022-03-10 05:28:55 +01:00
|
|
|
export const useAutoSubscribe = (subscriptions, selected) => {
|
2023-05-23 21:13:01 +02:00
|
|
|
const [hasRun, setHasRun] = useState(false);
|
|
|
|
const params = useParams();
|
2022-03-10 05:28:55 +01:00
|
|
|
|
2023-05-23 21:13:01 +02:00
|
|
|
useEffect(() => {
|
|
|
|
const loaded = subscriptions !== null && subscriptions !== undefined;
|
|
|
|
if (!loaded || hasRun) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setHasRun(true);
|
2023-05-24 01:29:47 +02:00
|
|
|
const eligible = params.topic && !selected && !disallowedTopic(params.topic);
|
2023-05-23 21:13:01 +02:00
|
|
|
if (eligible) {
|
2023-05-24 01:29:47 +02:00
|
|
|
const baseUrl = params.baseUrl ? expandSecureUrl(params.baseUrl) : config.base_url;
|
|
|
|
console.log(`[Hooks] Auto-subscribing to ${topicUrl(baseUrl, params.topic)}`);
|
2023-05-23 21:13:01 +02:00
|
|
|
(async () => {
|
2023-05-24 01:29:47 +02:00
|
|
|
const subscription = await subscriptionManager.add(baseUrl, params.topic);
|
2023-05-23 21:13:01 +02:00
|
|
|
if (session.exists()) {
|
|
|
|
try {
|
|
|
|
await accountApi.addSubscription(baseUrl, params.topic);
|
|
|
|
} catch (e) {
|
|
|
|
console.log(`[Hooks] Auto-subscribing failed`, e);
|
|
|
|
if (e instanceof UnauthorizedError) {
|
|
|
|
session.resetAndRedirect(routes.login);
|
|
|
|
}
|
|
|
|
}
|
2022-03-11 20:43:54 +01:00
|
|
|
}
|
2023-05-23 21:13:01 +02:00
|
|
|
poller.pollInBackground(subscription); // Dangle!
|
|
|
|
})();
|
|
|
|
}
|
|
|
|
}, [params, subscriptions, selected, hasRun]);
|
2022-03-10 05:28:55 +01:00
|
|
|
};
|
2022-03-11 20:43:54 +01:00
|
|
|
|
2022-03-11 21:17:12 +01:00
|
|
|
/**
|
2022-03-27 15:20:25 +02:00
|
|
|
* Start the poller and the pruner. This is done in a side effect as opposed to just in Pruner.js
|
|
|
|
* and Poller.js, because side effect imports are not a thing in JS, and "Optimize imports" cleans
|
|
|
|
* up "unused" imports. See https://github.com/binwiederhier/ntfy/issues/186.
|
2022-03-11 21:17:12 +01:00
|
|
|
*/
|
2022-03-27 15:20:25 +02:00
|
|
|
export const useBackgroundProcesses = () => {
|
2023-05-23 21:13:01 +02:00
|
|
|
useEffect(() => {
|
|
|
|
poller.startWorker();
|
|
|
|
pruner.startWorker();
|
|
|
|
accountApi.startWorker();
|
|
|
|
}, []);
|
|
|
|
};
|
2023-01-03 04:21:11 +01:00
|
|
|
|
|
|
|
export const useAccountListener = (setAccount) => {
|
2023-05-23 21:13:01 +02:00
|
|
|
useEffect(() => {
|
|
|
|
accountApi.registerListener(setAccount);
|
|
|
|
accountApi.sync(); // Dangle
|
|
|
|
return () => {
|
|
|
|
accountApi.resetListener();
|
|
|
|
};
|
|
|
|
}, []);
|
|
|
|
};
|