AniList defaults off (anime opt-in), so it showed 'Not configured' — implying a missing API key, when it's keyless and just toggled off in Settings > Community Data (No Key). Workers now report needs_key in get_stats (True for the key-gated fanart/opensubtitles/trakt + all matchers; False for the keyless toggles). The manager rail/pill + dashboard-header tooltip show 'Disabled' / 'Off — enable in Settings' for a disabled keyless worker, and keep 'Not configured' only for ones that genuinely need a key. (The AniList on/off toggle already exists in the collapsed 'Community Data (No Key)' settings frame — this just makes the status honest about what's needed.)
136 lines
5.7 KiB
JavaScript
136 lines
5.7 KiB
JavaScript
/*
|
|
* SoulSync — Video enrichment dashboard buttons (isolated).
|
|
*
|
|
* Polls /api/video/enrichment/<svc>/status and reflects it on the dashboard
|
|
* TMDB/TVDB buttons (spin while running, tooltip status). Click toggles
|
|
* pause/resume. The Manage Workers button fires 'soulsync:video-open-workers'
|
|
* for the (isolated) video enrichment modal. Music code is never touched.
|
|
*
|
|
* Status arrives over the SAME WebSocket music uses (server emits 'enrichment:tmdb'
|
|
* /'enrichment:tvdb'/'enrichment:omdb' every 2s) — so the browser does NOT poll.
|
|
* A single fetch on first load fills the buttons instantly; the socket drives the
|
|
* rest. Self-contained IIFE, no globals, no inline handlers. Music is never touched.
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
|
|
// All four push status over the shared socket every 2s (server emits
|
|
// 'enrichment:<svc>') — including the standalone YouTube date enricher — so the
|
|
// browser never polls /api/video/enrichment/<svc>/status.
|
|
var SERVICES = ['tmdb', 'tvdb', 'omdb', 'youtube',
|
|
'fanart', 'opensubtitles', 'ryd', 'sponsorblock', 'dearrow',
|
|
'trakt', 'tvmaze', 'anilist', 'wikidata'];
|
|
|
|
function onVideoSide() {
|
|
return document.body.getAttribute('data-side') === 'video';
|
|
}
|
|
|
|
function btn(svc) { return document.querySelector('[data-video-enrich="' + svc + '"]'); }
|
|
|
|
function setText(root, sel, text) {
|
|
var n = root.querySelector(sel);
|
|
if (n) n.textContent = text;
|
|
}
|
|
|
|
function reflect(svc, d) {
|
|
var b = btn(svc);
|
|
if (!b) return;
|
|
b.classList.remove('active', 'paused', 'complete', 'disabled');
|
|
if (!d.enabled) b.classList.add('disabled');
|
|
else if (d.idle) b.classList.add('complete');
|
|
else if (d.running && !d.paused) b.classList.add('active');
|
|
else if (d.paused) b.classList.add('paused');
|
|
|
|
var tip = document.querySelector('[data-video-enrich-tooltip="' + svc + '"]');
|
|
if (!tip) return;
|
|
var status = !d.enabled ? (d.needs_key === false ? 'Disabled' : 'Not configured')
|
|
: d.idle ? 'Complete'
|
|
: (d.running && !d.paused) ? 'Running'
|
|
: d.paused ? 'Paused' : 'Idle';
|
|
setText(tip, '[data-video-enrich-status]', status);
|
|
var cur = (d.current_item && d.current_item.name)
|
|
? ((d.current_item.type || 'item') + ': ' + d.current_item.name)
|
|
: (d.idle ? 'All matched' : 'No active matches');
|
|
setText(tip, '[data-video-enrich-current]', cur);
|
|
var matched = 0, total = 0, prog = d.progress || {};
|
|
for (var k in prog) {
|
|
if (Object.prototype.hasOwnProperty.call(prog, k)) {
|
|
matched += prog[k].matched || 0;
|
|
total += prog[k].total || 0;
|
|
}
|
|
}
|
|
setText(tip, '[data-video-enrich-progress]', 'Progress: ' + matched + ' / ' + total);
|
|
|
|
// Feed the idle worker-orbs animation real telemetry (isolated; no-op if
|
|
// the orbs script isn't present). Drives the inbound pulses to the hub.
|
|
if (window.videoWorkerOrbs && typeof window.videoWorkerOrbs.onStatus === 'function') {
|
|
window.videoWorkerOrbs.onStatus(svc, d);
|
|
}
|
|
}
|
|
|
|
function pollOne(svc) {
|
|
fetch('/api/video/enrichment/' + svc + '/status', { headers: { 'Accept': 'application/json' } })
|
|
.then(function (r) { return r.ok ? r.json() : null; })
|
|
.then(function (d) { if (d && !d.error) reflect(svc, d); })
|
|
.catch(function () { /* ignore */ });
|
|
}
|
|
|
|
// One-time fetch so the buttons aren't blank until the first socket push.
|
|
function primeOnce() {
|
|
if (onVideoSide() && !document.hidden) SERVICES.forEach(pollOne);
|
|
}
|
|
|
|
// Listen on the shared socket (set up by core.js) for the server-pushed
|
|
// status — mirrors how the music workers report. Retries until the socket
|
|
// global exists, then binds once.
|
|
var _bound = false;
|
|
function bindSocket() {
|
|
if (_bound) return;
|
|
if (typeof socket === 'undefined' || !socket || !socket.on) {
|
|
setTimeout(bindSocket, 600);
|
|
return;
|
|
}
|
|
_bound = true;
|
|
SERVICES.forEach(function (svc) {
|
|
socket.on('enrichment:' + svc, function (d) {
|
|
if (onVideoSide() && d && !d.error) reflect(svc, d);
|
|
});
|
|
});
|
|
}
|
|
|
|
function toggle(svc) {
|
|
var b = btn(svc);
|
|
if (!b || b.classList.contains('disabled')) return;
|
|
var action = b.classList.contains('paused') ? 'resume' : 'pause';
|
|
fetch('/api/video/enrichment/' + svc + '/' + action,
|
|
{ method: 'POST', headers: { 'Accept': 'application/json' } })
|
|
.then(function () { setTimeout(function () { pollOne(svc); }, 200); })
|
|
.catch(function () { /* ignore */ });
|
|
}
|
|
|
|
function init() {
|
|
SERVICES.forEach(function (svc) {
|
|
var b = btn(svc);
|
|
if (b) b.addEventListener('click', function () { toggle(svc); });
|
|
});
|
|
var manage = document.querySelector('[data-video-manage-workers]');
|
|
if (manage) {
|
|
manage.addEventListener('click', function () {
|
|
document.dispatchEvent(new CustomEvent('soulsync:video-open-workers'));
|
|
});
|
|
}
|
|
primeOnce(); // instant initial state
|
|
bindSocket(); // then the socket pushes updates for all four (incl. youtube)
|
|
// Re-prime when the user returns to the tab (socket kept pushing, but a
|
|
// quick fetch snaps the buttons current immediately).
|
|
document.addEventListener('visibilitychange', function () {
|
|
if (!document.hidden) primeOnce();
|
|
});
|
|
}
|
|
|
|
if (document.readyState === 'loading') {
|
|
document.addEventListener('DOMContentLoaded', init);
|
|
} else {
|
|
init();
|
|
}
|
|
})();
|