mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-03 21:27:35 +03:00
- 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
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
import prefs from "./Prefs";
|
|
import subscriptionManager from "./SubscriptionManager";
|
|
|
|
const delayMillis = 25000; // 25 seconds
|
|
const intervalMillis = 1800000; // 30 minutes
|
|
|
|
class Pruner {
|
|
constructor() {
|
|
this.timer = null;
|
|
}
|
|
|
|
startWorker() {
|
|
if (this.timer !== null) {
|
|
return;
|
|
}
|
|
console.log(`[Pruner] Starting worker`);
|
|
this.timer = setInterval(() => this.prune(), intervalMillis);
|
|
setTimeout(() => this.prune(), delayMillis);
|
|
}
|
|
|
|
stopWorker() {
|
|
clearTimeout(this.timer);
|
|
}
|
|
|
|
async prune() {
|
|
const deleteAfterSeconds = await prefs.deleteAfter();
|
|
const pruneThresholdTimestamp = Math.round(Date.now() / 1000) - deleteAfterSeconds;
|
|
if (deleteAfterSeconds === 0) {
|
|
console.log(`[Pruner] Pruning is disabled. Skipping.`);
|
|
return;
|
|
}
|
|
console.log(`[Pruner] Pruning notifications older than ${deleteAfterSeconds}s (timestamp ${pruneThresholdTimestamp})`);
|
|
try {
|
|
await subscriptionManager.pruneNotifications(pruneThresholdTimestamp);
|
|
} catch (e) {
|
|
console.log(`[Pruner] Error pruning old subscriptions`, e);
|
|
}
|
|
}
|
|
}
|
|
|
|
const pruner = new Pruner();
|
|
export default pruner;
|