mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-13 07:43:43 +08:00
109 lines
4.6 KiB
TypeScript
109 lines
4.6 KiB
TypeScript
import { useEffect, useRef } from 'react';
|
|
import { settingsStore } from '@/lib/store/settings-store';
|
|
import { fetchSourcesFromUrl, mergeSources } from '@/lib/utils/source-import-utils';
|
|
import type { SourceSubscription } from '@/lib/types';
|
|
|
|
// Minimum time between syncs for the same subscription (5 minutes)
|
|
const SYNC_COOLDOWN_MS = 5 * 60 * 1000;
|
|
// Delay before initial sync to ensure settings are fully loaded
|
|
const INITIAL_SYNC_DELAY_MS = 1000;
|
|
|
|
export function useSubscriptionSync() {
|
|
// Track if we've already synced during this component lifecycle
|
|
const hasSyncedRef = useRef(false);
|
|
// Track if sync is currently in progress to avoid concurrent syncs
|
|
const isSyncingRef = useRef(false);
|
|
|
|
// Effect to run sync only once on mount
|
|
useEffect(() => {
|
|
// Prevent multiple syncs if this effect runs multiple times (React StrictMode)
|
|
if (hasSyncedRef.current || isSyncingRef.current) return;
|
|
|
|
const sync = async () => {
|
|
// Double-check to prevent race conditions
|
|
if (hasSyncedRef.current || isSyncingRef.current) return;
|
|
|
|
isSyncingRef.current = true;
|
|
|
|
try {
|
|
// Read subscriptions directly from store (not via state to avoid re-renders)
|
|
const settings = settingsStore.getSettings();
|
|
const activeSubscriptions = settings.subscriptions.filter((s: SourceSubscription) => s.autoRefresh !== false);
|
|
|
|
if (activeSubscriptions.length === 0) {
|
|
hasSyncedRef.current = true;
|
|
return;
|
|
}
|
|
|
|
let anyChanged = false;
|
|
let currentSources = [...settings.sources];
|
|
let currentPremiumSources = [...settings.premiumSources];
|
|
let updatedSubscriptions = [...settings.subscriptions];
|
|
const now = Date.now();
|
|
|
|
// Filter out subscriptions that were synced recently (within cooldown period)
|
|
const subsToSync = activeSubscriptions.filter(
|
|
(sub: SourceSubscription) => !(sub.lastUpdated && now - sub.lastUpdated < SYNC_COOLDOWN_MS)
|
|
);
|
|
|
|
if (subsToSync.length === 0) {
|
|
hasSyncedRef.current = true;
|
|
return;
|
|
}
|
|
|
|
// Fetch all subscriptions in parallel for better performance
|
|
const results = await Promise.allSettled(
|
|
subsToSync.map((sub: SourceSubscription) => fetchSourcesFromUrl(sub.url))
|
|
);
|
|
|
|
// Process results
|
|
results.forEach((result, index) => {
|
|
const sub = subsToSync[index];
|
|
if (result.status === 'fulfilled') {
|
|
const fetchResult = result.value;
|
|
|
|
if (fetchResult.normalSources.length > 0) {
|
|
currentSources = mergeSources(currentSources, fetchResult.normalSources);
|
|
anyChanged = true;
|
|
}
|
|
|
|
if (fetchResult.premiumSources.length > 0) {
|
|
currentPremiumSources = mergeSources(currentPremiumSources, fetchResult.premiumSources);
|
|
anyChanged = true;
|
|
}
|
|
|
|
// Update timestamp for successful sync
|
|
const subIdx = updatedSubscriptions.findIndex(s => s.id === sub.id);
|
|
if (subIdx !== -1) {
|
|
updatedSubscriptions[subIdx] = {
|
|
...updatedSubscriptions[subIdx],
|
|
lastUpdated: now
|
|
};
|
|
anyChanged = true;
|
|
}
|
|
} else {
|
|
console.error(`Failed to sync subscription: ${sub.name}`, result.reason);
|
|
}
|
|
});
|
|
|
|
if (anyChanged) {
|
|
settingsStore.saveSettings({
|
|
...settings,
|
|
sources: currentSources,
|
|
premiumSources: currentPremiumSources,
|
|
subscriptions: updatedSubscriptions
|
|
});
|
|
}
|
|
|
|
hasSyncedRef.current = true;
|
|
} finally {
|
|
isSyncingRef.current = false;
|
|
}
|
|
};
|
|
|
|
// Small delay to ensure settings are fully loaded
|
|
const timeoutId = setTimeout(sync, INITIAL_SYNC_DELAY_MS);
|
|
return () => clearTimeout(timeoutId);
|
|
}, []); // Empty dependency array - only run once on mount
|
|
}
|