@xiboplayer/pwa 0.6.12 → 0.6.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/{chunk-config-BSfNUWQm.js → chunk-config-C9U90T6u.js} +2 -2
- package/dist/assets/{chunk-config-BSfNUWQm.js.map → chunk-config-C9U90T6u.js.map} +1 -1
- package/dist/assets/{index-Cyk88OM3.js → index-B2dyKYhW.js} +2 -2
- package/dist/assets/{index-Cyk88OM3.js.map → index-B2dyKYhW.js.map} +1 -1
- package/dist/assets/{index-O-mckgut.js → index-B57dvLVB.js} +2 -2
- package/dist/assets/{index-O-mckgut.js.map → index-B57dvLVB.js.map} +1 -1
- package/dist/assets/{index-mP_O2eX3.js → index-B_ADwXGQ.js} +2 -2
- package/dist/assets/{index-mP_O2eX3.js.map → index-B_ADwXGQ.js.map} +1 -1
- package/dist/assets/{index-CNV-DRzM.js → index-BpwloMHc.js} +2 -2
- package/dist/assets/{index-CNV-DRzM.js.map → index-BpwloMHc.js.map} +1 -1
- package/dist/assets/{index-BdPaMMuS.js → index-CLgKYdBJ.js} +2 -2
- package/dist/assets/{index-BdPaMMuS.js.map → index-CLgKYdBJ.js.map} +1 -1
- package/dist/assets/index-ClTQ0ldA.js +2 -0
- package/dist/assets/{index-Ce8SH4GK.js.map → index-ClTQ0ldA.js.map} +1 -1
- package/dist/assets/index-D39gYDMZ.js +2 -0
- package/dist/assets/{index-BgdMU9Wc.js.map → index-D39gYDMZ.js.map} +1 -1
- package/dist/assets/{index-DjPsw-Gr.js → index-D9_3Ns4E.js} +2 -2
- package/dist/assets/{index-DjPsw-Gr.js.map → index-D9_3Ns4E.js.map} +1 -1
- package/dist/assets/{index-DQPwwqPv.js → index-GPOkOOlx.js} +2 -2
- package/dist/assets/{index-DQPwwqPv.js.map → index-GPOkOOlx.js.map} +1 -1
- package/dist/assets/{index-CZapB-pf.js → index-dBd5BTjH.js} +2 -2
- package/dist/assets/{index-CZapB-pf.js.map → index-dBd5BTjH.js.map} +1 -1
- package/dist/assets/{main-DWaY10GP.js → main-GlNtH9kX.js} +4 -4
- package/dist/assets/{main-DWaY10GP.js.map → main-GlNtH9kX.js.map} +1 -1
- package/dist/assets/{protocol-detector-CFW2hHlm.js → protocol-detector-CpRVVofI.js} +2 -2
- package/dist/assets/{protocol-detector-CFW2hHlm.js.map → protocol-detector-CpRVVofI.js.map} +1 -1
- package/dist/assets/{setup-DgfA_gJC.js → setup-CInkLEZK.js} +2 -2
- package/dist/assets/{setup-DgfA_gJC.js.map → setup-CInkLEZK.js.map} +1 -1
- package/dist/assets/{sync-manager-Bg6-Bijq.js → sync-manager-C0UDCBzv.js} +2 -2
- package/dist/assets/{sync-manager-Bg6-Bijq.js.map → sync-manager-C0UDCBzv.js.map} +1 -1
- package/dist/assets/{widget-html-CVZPCszr.js → widget-html-BSjCib6e.js} +2 -2
- package/dist/assets/{widget-html-CVZPCszr.js.map → widget-html-BSjCib6e.js.map} +1 -1
- package/dist/index.html +3 -3
- package/dist/setup.html +3 -3
- package/dist/sw-pwa.js +1 -1
- package/package.json +13 -13
- package/dist/assets/index-BgdMU9Wc.js +0 -2
- package/dist/assets/index-Ce8SH4GK.js +0 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setup-DgfA_gJC.js","sources":["../../setup.html?html-proxy&index=1.js"],"sourcesContent":["\n import { config } from '@xiboplayer/utils';\n import { RestClient, XmdsClient } from '@xiboplayer/xmds';\n\n // Inject version from Vite build\n const appVersion = typeof __APP_VERSION__ !== 'undefined' ? __APP_VERSION__ : '?';\n document.getElementById('version-footer').textContent = `Xibo Player v${appVersion}`;\n\n // ── Elements ──\n const form = document.getElementById('setup-form');\n const errorEl = document.getElementById('error');\n const submitBtn = document.getElementById('submit-btn');\n const phaseUnlock = document.getElementById('phase-unlock');\n const phaseSetup = document.getElementById('phase-setup');\n const phaseWaiting = document.getElementById('phase-waiting');\n const countdownEl = document.getElementById('countdown');\n const waitingNameEl = document.getElementById('waiting-display-name');\n const btnBack = document.getElementById('btn-back');\n const successFlash = document.getElementById('success-flash');\n\n // Show hardware key\n const hwKey = config.hardwareKey;\n document.getElementById('hw-key-display').textContent = hwKey;\n document.getElementById('hw-key-waiting').textContent = hwKey;\n\n // ── State ──\n const previousCmsUrl = config.cmsUrl || '';\n let pollTimer = null;\n let countdownTimer = null;\n let pollSeconds = 15;\n\n // ── Transport: try REST first, fall back to SOAP ──\n let transport = null;\n async function getTransport() {\n if (transport) return transport;\n try {\n const rest = new RestClient(config);\n await rest.registerDisplay();\n console.log('[Setup] Using REST transport');\n transport = rest;\n } catch (e) {\n console.log('[Setup] REST unavailable, using XMDS/SOAP:', e.message);\n transport = new XmdsClient(config);\n }\n return transport;\n }\n\n // ── Helpers ──\n function showPhase(phase) {\n phaseUnlock.classList.remove('active');\n phaseSetup.classList.remove('active');\n phaseWaiting.classList.remove('active');\n phase.classList.add('active');\n }\n\n function showError(msg) {\n errorEl.textContent = msg;\n errorEl.style.display = 'block';\n }\n\n function hideError() {\n errorEl.style.display = 'none';\n }\n\n function startCountdown() {\n let remaining = pollSeconds;\n countdownEl.textContent = remaining;\n clearInterval(countdownTimer);\n countdownTimer = setInterval(() => {\n remaining--;\n countdownEl.textContent = Math.max(0, remaining);\n if (remaining <= 0) clearInterval(countdownTimer);\n }, 1000);\n }\n\n async function showSuccess() {\n // If CMS URL changed, wipe all cached content (media, layouts, widgets\n // from the old CMS are useless) and the SW's cached index.html (which\n // may have a stale config injection script).\n const newUrl = document.getElementById('cms-url').value.trim().replace(/\\/$/, '');\n if (newUrl !== previousCmsUrl) {\n console.log('[Setup] CMS URL changed — wiping cached content');\n const cacheNames = await caches.keys();\n await Promise.all(cacheNames.map(name => caches.delete(name)));\n }\n successFlash.classList.add('active');\n setTimeout(() => {\n window.location.href = '/player/index.html' + window.location.search;\n }, 800);\n }\n\n // ── Authorization Polling ──\n async function checkAuthorization() {\n try {\n const client = await getTransport();\n const result = await client.registerDisplay();\n console.log('[Setup] Poll result:', result.code, result.message);\n\n if (result.code === 'READY') {\n // Authorized!\n clearInterval(pollTimer);\n clearInterval(countdownTimer);\n showSuccess();\n return;\n }\n\n // Still waiting — restart countdown\n startCountdown();\n } catch (error) {\n console.warn('[Setup] Poll failed:', error.message);\n startCountdown();\n }\n }\n\n function startPolling(displayName) {\n waitingNameEl.textContent = displayName;\n showPhase(phaseWaiting);\n startCountdown();\n pollTimer = setInterval(checkAuthorization, pollSeconds * 1000);\n }\n\n function stopPolling() {\n clearInterval(pollTimer);\n clearInterval(countdownTimer);\n pollTimer = null;\n }\n\n // ── Auto-authorize via CMS API (through /api/* forward proxy) ──\n async function tryAutoAuthorize(cmsUrl, hardwareKey) {\n const clientId = document.getElementById('api-client-id').value.trim();\n const clientSecret = document.getElementById('api-client-secret').value.trim();\n if (!clientId || !clientSecret) return false;\n\n try {\n // Step 1: OAuth2 token via proxy\n const tokenResp = await fetch('/api/authorize/access_token', {\n method: 'POST',\n headers: { 'Content-Type': 'application/x-www-form-urlencoded' },\n body: new URLSearchParams({ grant_type: 'client_credentials', client_id: clientId, client_secret: clientSecret }),\n });\n if (!tokenResp.ok) throw new Error(`OAuth2 failed: ${tokenResp.status}`);\n const { access_token } = await tokenResp.json();\n\n // Step 2: Find display by hardwareKey via proxy\n const displayResp = await fetch(\n `/api/display?hardwareKey=${encodeURIComponent(hardwareKey)}`,\n { headers: { Authorization: `Bearer ${access_token}` } }\n );\n if (!displayResp.ok) throw new Error(`Find display failed: ${displayResp.status}`);\n const displays = await displayResp.json();\n if (!displays.length) { console.log('[Setup] Display not found via API (may not be registered yet)'); return false; }\n\n const display = displays[0];\n if (display.licensed === 1) { console.log('[Setup] Display already authorized'); return true; }\n\n // Step 3: Authorize display via proxy\n const authResp = await fetch(\n `/api/display/authorise/${display.displayId}`,\n { method: 'PUT', headers: { Authorization: `Bearer ${access_token}` } }\n );\n if (!authResp.ok) throw new Error(`Authorize failed: ${authResp.status}`);\n\n console.log('[Setup] Display auto-authorized via proxy!');\n config.apiClientId = clientId;\n config.apiClientSecret = clientSecret;\n return true;\n } catch (error) {\n console.warn('[Setup] Auto-authorize failed:', error.message);\n return false;\n }\n }\n\n // ── Unlock gate for reconfiguration ──\n const isReconfigure = config.isConfigured() && config.cmsKey;\n const alreadyUnlocked = new URLSearchParams(window.location.search).has('unlocked');\n const btnBackPlayer = document.getElementById('btn-back-player');\n if (isReconfigure && !alreadyUnlocked) {\n // Show unlock phase instead of setup form\n showPhase(phaseUnlock);\n }\n if (isReconfigure || alreadyUnlocked) {\n // Show \"Back to Player\" on the setup form\n btnBackPlayer.style.display = 'block';\n // Pre-fill form with existing config\n document.getElementById('cms-url').value = config.cmsUrl;\n document.getElementById('cms-key').value = config.cmsKey;\n document.getElementById('display-name').value = config.displayName;\n if (config.apiClientId) {\n document.getElementById('api-client-id').value = config.apiClientId;\n document.getElementById('api-client-secret').value = config.apiClientSecret || '';\n }\n }\n\n // ── Back to Player (cancel reconfiguration) ──\n function goBackToPlayer() {\n stopPolling();\n window.location.href = '/player/index.html' + window.location.search;\n }\n btnBackPlayer.addEventListener('click', goBackToPlayer);\n\n // Esc also goes back to player when reconfiguring\n if (isReconfigure || alreadyUnlocked) {\n document.addEventListener('keydown', (e) => {\n if (e.key === 'Escape') {\n e.preventDefault();\n goBackToPlayer();\n }\n });\n }\n\n // ── Unlock form handler ──\n document.getElementById('unlock-form').addEventListener('submit', (e) => {\n e.preventDefault();\n const unlockError = document.getElementById('unlock-error');\n const enteredKey = document.getElementById('unlock-key').value.trim();\n\n if (enteredKey === config.cmsKey) {\n unlockError.style.display = 'none';\n // Pre-fill form with existing config\n document.getElementById('cms-url').value = config.cmsUrl;\n document.getElementById('cms-key').value = config.cmsKey;\n document.getElementById('display-name').value = config.displayName;\n if (config.apiClientId) {\n document.getElementById('api-client-id').value = config.apiClientId;\n document.getElementById('api-client-secret').value = config.apiClientSecret || '';\n }\n showPhase(phaseSetup);\n } else {\n unlockError.textContent = 'Incorrect CMS key';\n unlockError.style.display = 'block';\n }\n });\n\n // ── Pre-fill if first-time setup (no unlock gate) ──\n if (!isReconfigure && config.isConfigured()) {\n document.getElementById('cms-url').value = config.cmsUrl;\n document.getElementById('cms-key').value = config.cmsKey;\n document.getElementById('display-name').value = config.displayName;\n if (config.apiClientId) {\n document.getElementById('api-client-id').value = config.apiClientId;\n document.getElementById('api-client-secret').value = config.apiClientSecret || '';\n }\n }\n\n // ── Form Submit ──\n form.addEventListener('submit', async (e) => {\n e.preventDefault();\n hideError();\n\n const cmsUrl = document.getElementById('cms-url').value.trim().replace(/\\/$/, '');\n const cmsKey = document.getElementById('cms-key').value.trim();\n const displayName = document.getElementById('display-name').value.trim();\n\n // Write config.json via proxy (master config file)\n // The boot path (proxy injection → Config.load()) handles the rest.\n try {\n submitBtn.textContent = 'Saving...';\n submitBtn.disabled = true;\n\n const saveResp = await fetch('/config', {\n method: 'POST',\n headers: { 'Content-Type': 'application/json' },\n body: JSON.stringify({ cmsUrl, cmsKey, displayName }),\n });\n if (!saveResp.ok) throw new Error('Failed to save config');\n\n // Also update in-memory config for the test connection below\n config.data.cmsUrl = cmsUrl;\n config.data.cmsKey = cmsKey;\n config.data.displayName = displayName;\n config.save();\n\n // Backup hardware key to IndexedDB for stability\n backupHardwareKey(config.hardwareKey);\n\n // Test connection\n submitBtn.textContent = 'Connecting...';\n\n // Try REST first, fall back to SOAP\n transport = null; // reset transport for fresh detection\n const client = await getTransport();\n const result = await client.registerDisplay();\n\n if (result.code === 'READY') {\n showSuccess();\n } else {\n // Try auto-authorize via CMS API if credentials provided\n submitBtn.textContent = 'Authorizing...';\n const autoAuthed = await tryAutoAuthorize(cmsUrl, hwKey);\n\n if (autoAuthed) {\n // Verify registration\n const recheck = await client.registerDisplay();\n if (recheck.code === 'READY') {\n showSuccess();\n return;\n }\n }\n\n // Not authorized yet — switch to polling phase\n startPolling(displayName);\n }\n } catch (error) {\n showError(`Connection failed: ${error.message}`);\n submitBtn.textContent = 'Connect';\n submitBtn.disabled = false;\n }\n });\n\n // ── Back button ──\n btnBack.addEventListener('click', () => {\n stopPolling();\n showPhase(phaseSetup);\n submitBtn.textContent = 'Connect';\n submitBtn.disabled = false;\n });\n\n // ── IndexedDB hardware key backup ──\n async function backupHardwareKey(key) {\n try {\n const req = indexedDB.open('xibo-hw-backup', 1);\n req.onupgradeneeded = () => {\n const db = req.result;\n if (!db.objectStoreNames.contains('keys')) {\n db.createObjectStore('keys');\n }\n };\n req.onsuccess = () => {\n const db = req.result;\n const tx = db.transaction('keys', 'readwrite');\n tx.objectStore('keys').put(key, 'hardwareKey');\n tx.oncomplete = () => db.close();\n };\n } catch (e) {\n console.warn('[Setup] IndexedDB backup failed:', e);\n }\n }\n\n // ── Enable submit ──\n submitBtn.disabled = false;\n submitBtn.textContent = 'Connect';\n\n // ── Auto-resume polling if already registered but not authorized ──\n // Skip auto-resume when reconfiguring (user explicitly opened setup)\n if (config.isConfigured() && !isReconfigure) {\n (async () => {\n try {\n const client = await getTransport();\n const result = await client.registerDisplay();\n if (result.code === 'READY') {\n window.location.href = '/player/index.html';\n } else {\n // Not authorized — go straight to polling\n startPolling(config.displayName);\n }\n } catch (e) {\n // Connection failed, show form\n console.log('[Setup] Auto-check failed, showing form');\n }\n })();\n }\n "],"names":["appVersion","form","errorEl","submitBtn","phaseUnlock","phaseSetup","phaseWaiting","countdownEl","waitingNameEl","btnBack","successFlash","hwKey","config","previousCmsUrl","pollTimer","countdownTimer","pollSeconds","transport","getTransport","rest","RestClient","e","XmdsClient","showPhase","phase","showError","msg","hideError","startCountdown","remaining","showSuccess","cacheNames","name","checkAuthorization","result","error","startPolling","displayName","stopPolling","tryAutoAuthorize","cmsUrl","hardwareKey","clientId","clientSecret","tokenResp","access_token","displayResp","displays","display","authResp","isReconfigure","alreadyUnlocked","btnBackPlayer","goBackToPlayer","unlockError","cmsKey","backupHardwareKey","client","key","req","db","tx"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"setup-CInkLEZK.js","sources":["../../setup.html?html-proxy&index=1.js"],"sourcesContent":["\n import { config } from '@xiboplayer/utils';\n import { RestClient, XmdsClient } from '@xiboplayer/xmds';\n\n // Inject version from Vite build\n const appVersion = typeof __APP_VERSION__ !== 'undefined' ? __APP_VERSION__ : '?';\n document.getElementById('version-footer').textContent = `Xibo Player v${appVersion}`;\n\n // ── Elements ──\n const form = document.getElementById('setup-form');\n const errorEl = document.getElementById('error');\n const submitBtn = document.getElementById('submit-btn');\n const phaseUnlock = document.getElementById('phase-unlock');\n const phaseSetup = document.getElementById('phase-setup');\n const phaseWaiting = document.getElementById('phase-waiting');\n const countdownEl = document.getElementById('countdown');\n const waitingNameEl = document.getElementById('waiting-display-name');\n const btnBack = document.getElementById('btn-back');\n const successFlash = document.getElementById('success-flash');\n\n // Show hardware key\n const hwKey = config.hardwareKey;\n document.getElementById('hw-key-display').textContent = hwKey;\n document.getElementById('hw-key-waiting').textContent = hwKey;\n\n // ── State ──\n const previousCmsUrl = config.cmsUrl || '';\n let pollTimer = null;\n let countdownTimer = null;\n let pollSeconds = 15;\n\n // ── Transport: try REST first, fall back to SOAP ──\n let transport = null;\n async function getTransport() {\n if (transport) return transport;\n try {\n const rest = new RestClient(config);\n await rest.registerDisplay();\n console.log('[Setup] Using REST transport');\n transport = rest;\n } catch (e) {\n console.log('[Setup] REST unavailable, using XMDS/SOAP:', e.message);\n transport = new XmdsClient(config);\n }\n return transport;\n }\n\n // ── Helpers ──\n function showPhase(phase) {\n phaseUnlock.classList.remove('active');\n phaseSetup.classList.remove('active');\n phaseWaiting.classList.remove('active');\n phase.classList.add('active');\n }\n\n function showError(msg) {\n errorEl.textContent = msg;\n errorEl.style.display = 'block';\n }\n\n function hideError() {\n errorEl.style.display = 'none';\n }\n\n function startCountdown() {\n let remaining = pollSeconds;\n countdownEl.textContent = remaining;\n clearInterval(countdownTimer);\n countdownTimer = setInterval(() => {\n remaining--;\n countdownEl.textContent = Math.max(0, remaining);\n if (remaining <= 0) clearInterval(countdownTimer);\n }, 1000);\n }\n\n async function showSuccess() {\n // If CMS URL changed, wipe all cached content (media, layouts, widgets\n // from the old CMS are useless) and the SW's cached index.html (which\n // may have a stale config injection script).\n const newUrl = document.getElementById('cms-url').value.trim().replace(/\\/$/, '');\n if (newUrl !== previousCmsUrl) {\n console.log('[Setup] CMS URL changed — wiping cached content');\n const cacheNames = await caches.keys();\n await Promise.all(cacheNames.map(name => caches.delete(name)));\n }\n successFlash.classList.add('active');\n setTimeout(() => {\n window.location.href = '/player/index.html' + window.location.search;\n }, 800);\n }\n\n // ── Authorization Polling ──\n async function checkAuthorization() {\n try {\n const client = await getTransport();\n const result = await client.registerDisplay();\n console.log('[Setup] Poll result:', result.code, result.message);\n\n if (result.code === 'READY') {\n // Authorized!\n clearInterval(pollTimer);\n clearInterval(countdownTimer);\n showSuccess();\n return;\n }\n\n // Still waiting — restart countdown\n startCountdown();\n } catch (error) {\n console.warn('[Setup] Poll failed:', error.message);\n startCountdown();\n }\n }\n\n function startPolling(displayName) {\n waitingNameEl.textContent = displayName;\n showPhase(phaseWaiting);\n startCountdown();\n pollTimer = setInterval(checkAuthorization, pollSeconds * 1000);\n }\n\n function stopPolling() {\n clearInterval(pollTimer);\n clearInterval(countdownTimer);\n pollTimer = null;\n }\n\n // ── Auto-authorize via CMS API (through /api/* forward proxy) ──\n async function tryAutoAuthorize(cmsUrl, hardwareKey) {\n const clientId = document.getElementById('api-client-id').value.trim();\n const clientSecret = document.getElementById('api-client-secret').value.trim();\n if (!clientId || !clientSecret) return false;\n\n try {\n // Step 1: OAuth2 token via proxy\n const tokenResp = await fetch('/api/authorize/access_token', {\n method: 'POST',\n headers: { 'Content-Type': 'application/x-www-form-urlencoded' },\n body: new URLSearchParams({ grant_type: 'client_credentials', client_id: clientId, client_secret: clientSecret }),\n });\n if (!tokenResp.ok) throw new Error(`OAuth2 failed: ${tokenResp.status}`);\n const { access_token } = await tokenResp.json();\n\n // Step 2: Find display by hardwareKey via proxy\n const displayResp = await fetch(\n `/api/display?hardwareKey=${encodeURIComponent(hardwareKey)}`,\n { headers: { Authorization: `Bearer ${access_token}` } }\n );\n if (!displayResp.ok) throw new Error(`Find display failed: ${displayResp.status}`);\n const displays = await displayResp.json();\n if (!displays.length) { console.log('[Setup] Display not found via API (may not be registered yet)'); return false; }\n\n const display = displays[0];\n if (display.licensed === 1) { console.log('[Setup] Display already authorized'); return true; }\n\n // Step 3: Authorize display via proxy\n const authResp = await fetch(\n `/api/display/authorise/${display.displayId}`,\n { method: 'PUT', headers: { Authorization: `Bearer ${access_token}` } }\n );\n if (!authResp.ok) throw new Error(`Authorize failed: ${authResp.status}`);\n\n console.log('[Setup] Display auto-authorized via proxy!');\n config.apiClientId = clientId;\n config.apiClientSecret = clientSecret;\n return true;\n } catch (error) {\n console.warn('[Setup] Auto-authorize failed:', error.message);\n return false;\n }\n }\n\n // ── Unlock gate for reconfiguration ──\n const isReconfigure = config.isConfigured() && config.cmsKey;\n const alreadyUnlocked = new URLSearchParams(window.location.search).has('unlocked');\n const btnBackPlayer = document.getElementById('btn-back-player');\n if (isReconfigure && !alreadyUnlocked) {\n // Show unlock phase instead of setup form\n showPhase(phaseUnlock);\n }\n if (isReconfigure || alreadyUnlocked) {\n // Show \"Back to Player\" on the setup form\n btnBackPlayer.style.display = 'block';\n // Pre-fill form with existing config\n document.getElementById('cms-url').value = config.cmsUrl;\n document.getElementById('cms-key').value = config.cmsKey;\n document.getElementById('display-name').value = config.displayName;\n if (config.apiClientId) {\n document.getElementById('api-client-id').value = config.apiClientId;\n document.getElementById('api-client-secret').value = config.apiClientSecret || '';\n }\n }\n\n // ── Back to Player (cancel reconfiguration) ──\n function goBackToPlayer() {\n stopPolling();\n window.location.href = '/player/index.html' + window.location.search;\n }\n btnBackPlayer.addEventListener('click', goBackToPlayer);\n\n // Esc also goes back to player when reconfiguring\n if (isReconfigure || alreadyUnlocked) {\n document.addEventListener('keydown', (e) => {\n if (e.key === 'Escape') {\n e.preventDefault();\n goBackToPlayer();\n }\n });\n }\n\n // ── Unlock form handler ──\n document.getElementById('unlock-form').addEventListener('submit', (e) => {\n e.preventDefault();\n const unlockError = document.getElementById('unlock-error');\n const enteredKey = document.getElementById('unlock-key').value.trim();\n\n if (enteredKey === config.cmsKey) {\n unlockError.style.display = 'none';\n // Pre-fill form with existing config\n document.getElementById('cms-url').value = config.cmsUrl;\n document.getElementById('cms-key').value = config.cmsKey;\n document.getElementById('display-name').value = config.displayName;\n if (config.apiClientId) {\n document.getElementById('api-client-id').value = config.apiClientId;\n document.getElementById('api-client-secret').value = config.apiClientSecret || '';\n }\n showPhase(phaseSetup);\n } else {\n unlockError.textContent = 'Incorrect CMS key';\n unlockError.style.display = 'block';\n }\n });\n\n // ── Pre-fill if first-time setup (no unlock gate) ──\n if (!isReconfigure && config.isConfigured()) {\n document.getElementById('cms-url').value = config.cmsUrl;\n document.getElementById('cms-key').value = config.cmsKey;\n document.getElementById('display-name').value = config.displayName;\n if (config.apiClientId) {\n document.getElementById('api-client-id').value = config.apiClientId;\n document.getElementById('api-client-secret').value = config.apiClientSecret || '';\n }\n }\n\n // ── Form Submit ──\n form.addEventListener('submit', async (e) => {\n e.preventDefault();\n hideError();\n\n const cmsUrl = document.getElementById('cms-url').value.trim().replace(/\\/$/, '');\n const cmsKey = document.getElementById('cms-key').value.trim();\n const displayName = document.getElementById('display-name').value.trim();\n\n // Write config.json via proxy (master config file)\n // The boot path (proxy injection → Config.load()) handles the rest.\n try {\n submitBtn.textContent = 'Saving...';\n submitBtn.disabled = true;\n\n const saveResp = await fetch('/config', {\n method: 'POST',\n headers: { 'Content-Type': 'application/json' },\n body: JSON.stringify({ cmsUrl, cmsKey, displayName }),\n });\n if (!saveResp.ok) throw new Error('Failed to save config');\n\n // Also update in-memory config for the test connection below\n config.data.cmsUrl = cmsUrl;\n config.data.cmsKey = cmsKey;\n config.data.displayName = displayName;\n config.save();\n\n // Backup hardware key to IndexedDB for stability\n backupHardwareKey(config.hardwareKey);\n\n // Test connection\n submitBtn.textContent = 'Connecting...';\n\n // Try REST first, fall back to SOAP\n transport = null; // reset transport for fresh detection\n const client = await getTransport();\n const result = await client.registerDisplay();\n\n if (result.code === 'READY') {\n showSuccess();\n } else {\n // Try auto-authorize via CMS API if credentials provided\n submitBtn.textContent = 'Authorizing...';\n const autoAuthed = await tryAutoAuthorize(cmsUrl, hwKey);\n\n if (autoAuthed) {\n // Verify registration\n const recheck = await client.registerDisplay();\n if (recheck.code === 'READY') {\n showSuccess();\n return;\n }\n }\n\n // Not authorized yet — switch to polling phase\n startPolling(displayName);\n }\n } catch (error) {\n showError(`Connection failed: ${error.message}`);\n submitBtn.textContent = 'Connect';\n submitBtn.disabled = false;\n }\n });\n\n // ── Back button ──\n btnBack.addEventListener('click', () => {\n stopPolling();\n showPhase(phaseSetup);\n submitBtn.textContent = 'Connect';\n submitBtn.disabled = false;\n });\n\n // ── IndexedDB hardware key backup ──\n async function backupHardwareKey(key) {\n try {\n const req = indexedDB.open('xibo-hw-backup', 1);\n req.onupgradeneeded = () => {\n const db = req.result;\n if (!db.objectStoreNames.contains('keys')) {\n db.createObjectStore('keys');\n }\n };\n req.onsuccess = () => {\n const db = req.result;\n const tx = db.transaction('keys', 'readwrite');\n tx.objectStore('keys').put(key, 'hardwareKey');\n tx.oncomplete = () => db.close();\n };\n } catch (e) {\n console.warn('[Setup] IndexedDB backup failed:', e);\n }\n }\n\n // ── Enable submit ──\n submitBtn.disabled = false;\n submitBtn.textContent = 'Connect';\n\n // ── Auto-resume polling if already registered but not authorized ──\n // Skip auto-resume when reconfiguring (user explicitly opened setup)\n if (config.isConfigured() && !isReconfigure) {\n (async () => {\n try {\n const client = await getTransport();\n const result = await client.registerDisplay();\n if (result.code === 'READY') {\n window.location.href = '/player/index.html';\n } else {\n // Not authorized — go straight to polling\n startPolling(config.displayName);\n }\n } catch (e) {\n // Connection failed, show form\n console.log('[Setup] Auto-check failed, showing form');\n }\n })();\n }\n "],"names":["appVersion","form","errorEl","submitBtn","phaseUnlock","phaseSetup","phaseWaiting","countdownEl","waitingNameEl","btnBack","successFlash","hwKey","config","previousCmsUrl","pollTimer","countdownTimer","pollSeconds","transport","getTransport","rest","RestClient","e","XmdsClient","showPhase","phase","showError","msg","hideError","startCountdown","remaining","showSuccess","cacheNames","name","checkAuthorization","result","error","startPolling","displayName","stopPolling","tryAutoAuthorize","cmsUrl","hardwareKey","clientId","clientSecret","tokenResp","access_token","displayResp","displays","display","authResp","isReconfigure","alreadyUnlocked","btnBackPlayer","goBackToPlayer","unlockError","cmsKey","backupHardwareKey","client","key","req","db","tx"],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{createLogger as h}from"./index-
|
|
2
|
-
//# sourceMappingURL=sync-manager-
|
|
1
|
+
import{createLogger as h}from"./index-B57dvLVB.js";const d="xibo-sync";class y{constructor(t=d){this.channel=new BroadcastChannel(t),this._connected=!0}send(t){this.channel&&this.channel.postMessage(t)}onMessage(t){this.channel.onmessage=e=>t(e.data)}close(){this.channel&&(this.channel.close(),this.channel=null),this._connected=!1}get connected(){return this._connected&&!!this.channel}}const n=1e3,c=3e4,_=2;class u{constructor(t){this._url=t,this._callback=null,this._closed=!1,this._retryMs=n,this._retryTimer=null,this._log=h("WS-Sync"),this.ws=null,this._connect()}send(t){var e;((e=this.ws)==null?void 0:e.readyState)===WebSocket.OPEN&&this.ws.send(JSON.stringify(t))}onMessage(t){this._callback=t}close(){this._closed=!0,this._retryTimer&&(clearTimeout(this._retryTimer),this._retryTimer=null),this.ws&&(this.ws.close(),this.ws=null)}get connected(){var t;return((t=this.ws)==null?void 0:t.readyState)===WebSocket.OPEN}_connect(){if(!this._closed){try{this.ws=new WebSocket(this._url)}catch(t){this._log.error("WebSocket creation failed:",t.message),this._scheduleReconnect();return}this.ws.onopen=()=>{this._log.info(`Connected to ${this._url}`),this._retryMs=n},this.ws.onmessage=t=>{if(this._callback)try{const e=JSON.parse(t.data);this._callback(e)}catch(e){this._log.warn("Failed to parse message:",e.message)}},this.ws.onclose=()=>{this._closed||(this._log.info("Connection closed — will reconnect"),this._scheduleReconnect())},this.ws.onerror=t=>{this._log.warn("WebSocket error")}}}_scheduleReconnect(){this._closed||this._retryTimer||(this._log.info(`Reconnecting in ${this._retryMs}ms...`),this._retryTimer=setTimeout(()=>{this._retryTimer=null,this._connect()},this._retryMs),this._retryMs=Math.min(this._retryMs*_,c))}}const r=5e3,a=15e3,f=1e4;class w{constructor(t){this.displayId=t.displayId,this.syncConfig=t.syncConfig,this.isLead=t.syncConfig.isLead,this.switchDelay=t.syncConfig.syncSwitchDelay||750,this.videoPauseDelay=t.syncConfig.syncVideoPauseDelay||100,this.onLayoutChange=t.onLayoutChange||(()=>{}),this.onLayoutShow=t.onLayoutShow||(()=>{}),this.onVideoStart=t.onVideoStart||(()=>{}),this.onStatsReport=t.onStatsReport||null,this.onLogsReport=t.onLogsReport||null,this.onStatsAck=t.onStatsAck||null,this.onLogsAck=t.onLogsAck||null,this.transport=t.transport||null,this.followers=new Map,this._heartbeatTimer=null,this._cleanupTimer=null,this._readyResolve=null,this._pendingLayoutId=null,this._started=!1,this._tag=this.isLead?"[Sync:LEAD]":"[Sync:FOLLOW]",this._log=h(this.isLead?"Sync:LEAD":"Sync:FOLLOW")}get channel(){return this.transport}set channel(t){this.transport=t}start(){if(!this._started){if(this._started=!0,!this.transport)if(this.syncConfig.relayUrl)this.transport=new u(this.syncConfig.relayUrl);else if(typeof BroadcastChannel<"u")this.transport=new y;else{this._log.warn("No transport available — sync disabled");return}this.transport.onMessage(t=>this._handleMessage(t)),this._heartbeatTimer=setInterval(()=>this._sendHeartbeat(),r),this._sendHeartbeat(),this.isLead&&(this._cleanupTimer=setInterval(()=>this._cleanupStaleFollowers(),r)),this._log.info("Started. DisplayId:",this.displayId,this.syncConfig.relayUrl?`(relay: ${this.syncConfig.relayUrl})`:"(BroadcastChannel)")}}stop(){this._started&&(this._started=!1,this._heartbeatTimer&&(clearInterval(this._heartbeatTimer),this._heartbeatTimer=null),this._cleanupTimer&&(clearInterval(this._cleanupTimer),this._cleanupTimer=null),this.transport&&(this.transport.close(),this.transport=null),this.followers.clear(),this._log.info("Stopped"))}async requestLayoutChange(t){if(!this.isLead){this._log.warn("requestLayoutChange called on follower — ignoring");return}t=String(t),this._pendingLayoutId=t;for(const[,i]of this.followers)i.ready=!1,i.readyLayoutId=null;const e=Date.now()+this.switchDelay;this._log.info(`Requesting layout change: ${t} (show at ${new Date(e).toISOString()}, ${this.followers.size} followers)`),this._send({type:"layout-change",layoutId:t,showAt:e,displayId:this.displayId}),this.followers.size>0&&await this._waitForFollowersReady(t);const s=e-Date.now();s>0&&await new Promise(i=>setTimeout(i,s)),this._log.info(`Sending layout-show: ${t}`),this._send({type:"layout-show",layoutId:t,displayId:this.displayId}),this.onLayoutShow(t),this._pendingLayoutId=null}async requestVideoStart(t,e){this.isLead&&(await new Promise(s=>setTimeout(s,this.videoPauseDelay)),this._send({type:"video-start",layoutId:String(t),regionId:e,displayId:this.displayId}),this.onVideoStart(String(t),e))}reportReady(t){t=String(t),this._log.info(`Reporting ready for layout ${t}`),this._send({type:"layout-ready",layoutId:t,displayId:this.displayId})}reportStats(t){this.isLead||(this._log.info("Delegating stats to lead"),this._send({type:"stats-report",displayId:this.displayId,statsXml:t}))}reportLogs(t){this.isLead||(this._log.info("Delegating logs to lead"),this._send({type:"logs-report",displayId:this.displayId,logsXml:t}))}_handleMessage(t){if(t.displayId!==this.displayId)switch(t.type){case"heartbeat":this._handleHeartbeat(t);break;case"layout-change":this.isLead||(this._log.info(`Layout change requested: ${t.layoutId}`),this.onLayoutChange(t.layoutId,t.showAt));break;case"layout-ready":this.isLead&&this._handleFollowerReady(t);break;case"layout-show":this.isLead||(this._log.info(`Layout show signal: ${t.layoutId}`),this.onLayoutShow(t.layoutId));break;case"video-start":this.isLead||(this._log.info(`Video start signal: ${t.layoutId} region ${t.regionId}`),this.onVideoStart(t.layoutId,t.regionId));break;case"stats-report":if(this.isLead&&this.onStatsReport){const e=()=>this._send({type:"stats-ack",displayId:this.displayId,targetDisplayId:t.displayId});this.onStatsReport(t.displayId,t.statsXml,e)}break;case"logs-report":if(this.isLead&&this.onLogsReport){const e=()=>this._send({type:"logs-ack",displayId:this.displayId,targetDisplayId:t.displayId});this.onLogsReport(t.displayId,t.logsXml,e)}break;case"stats-ack":!this.isLead&&t.targetDisplayId===this.displayId&&this.onStatsAck&&(this._log.info("Stats acknowledged by lead"),this.onStatsAck(t.targetDisplayId));break;case"logs-ack":!this.isLead&&t.targetDisplayId===this.displayId&&this.onLogsAck&&(this._log.info("Logs acknowledged by lead"),this.onLogsAck(t.targetDisplayId));break;default:this._log.warn("Unknown message type:",t.type)}}_handleHeartbeat(t){const e=this.followers.get(t.displayId);e?e.lastSeen=Date.now():(this.followers.set(t.displayId,{lastSeen:Date.now(),ready:!1,readyLayoutId:null,role:t.role||"unknown"}),this._log.info(`Follower joined: ${t.displayId} (${this.followers.size} total)`))}_handleFollowerReady(t){const e=this.followers.get(t.displayId);e?(e.ready=!0,e.readyLayoutId=t.layoutId,e.lastSeen=Date.now()):this.followers.set(t.displayId,{lastSeen:Date.now(),ready:!0,readyLayoutId:t.layoutId}),this._log.info(`Follower ${t.displayId} ready for layout ${t.layoutId}`),this._pendingLayoutId===t.layoutId&&this._readyResolve&&this._allFollowersReady(t.layoutId)&&(this._log.info("All followers ready"),this._readyResolve(),this._readyResolve=null)}_allFollowersReady(t){for(const[,e]of this.followers)if(!(Date.now()-e.lastSeen>a)&&(!e.ready||e.readyLayoutId!==t))return!1;return!0}_waitForFollowersReady(t){return new Promise(e=>{if(this._allFollowersReady(t)){e();return}this._readyResolve=e,setTimeout(()=>{if(this._readyResolve===e){const s=[];for(const[i,l]of this.followers)(!l.ready||l.readyLayoutId!==t)&&s.push(i);this._log.warn(`Ready timeout — proceeding without: ${s.join(", ")}`),this._readyResolve=null,e()}},f)})}_sendHeartbeat(){this._send({type:"heartbeat",displayId:this.displayId,role:this.isLead?"lead":"follower",timestamp:Date.now()})}_cleanupStaleFollowers(){const t=Date.now();for(const[e,s]of this.followers)t-s.lastSeen>a&&(this._log.info(`Removing stale follower: ${e} (last seen ${Math.round((t-s.lastSeen)/1e3)}s ago)`),this.followers.delete(e))}_send(t){if(this.transport)try{this.transport.send(t)}catch(e){this._log.error("Failed to send:",e)}}getStatus(){return{started:this._started,isLead:this.isLead,displayId:this.displayId,followers:this.followers.size,pendingLayoutId:this._pendingLayoutId,transport:this.syncConfig.relayUrl?"websocket":"broadcast-channel",followerDetails:Array.from(this.followers.entries()).map(([t,e])=>({displayId:t,lastSeen:e.lastSeen,ready:e.ready,readyLayoutId:e.readyLayoutId,stale:Date.now()-e.lastSeen>a}))}}}export{y as BroadcastChannelTransport,w as SyncManager,u as WebSocketTransport};
|
|
2
|
+
//# sourceMappingURL=sync-manager-C0UDCBzv.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sync-manager-Bg6-Bijq.js","sources":["../../../sync/src/bc-transport.js","../../../sync/src/ws-transport.js","../../../sync/src/sync-manager.js"],"sourcesContent":["// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (c) 2024-2026 Pau Aliagas <linuxnow@gmail.com>\n/**\n * BroadcastChannelTransport — same-machine sync transport\n *\n * Wraps the browser BroadcastChannel API behind the sync transport interface.\n * Used for multi-tab / multi-window sync on a single device.\n *\n * Transport interface: { send(msg), onMessage(callback), close(), get connected() }\n */\n\nconst DEFAULT_CHANNEL = 'xibo-sync';\n\nexport class BroadcastChannelTransport {\n /**\n * @param {string} [channelName='xibo-sync']\n */\n constructor(channelName = DEFAULT_CHANNEL) {\n this.channel = new BroadcastChannel(channelName);\n this._connected = true;\n }\n\n /**\n * Send a message to all other tabs/windows on this channel.\n * @param {Object} msg — plain object (structured-cloned by BroadcastChannel)\n */\n send(msg) {\n if (!this.channel) return;\n this.channel.postMessage(msg);\n }\n\n /**\n * Register a callback for incoming messages.\n * @param {Function} callback — receives the message data (already deserialized)\n */\n onMessage(callback) {\n this.channel.onmessage = (e) => callback(e.data);\n }\n\n /** Close the channel. */\n close() {\n if (this.channel) {\n this.channel.close();\n this.channel = null;\n }\n this._connected = false;\n }\n\n /** @returns {boolean} Whether the channel is open */\n get connected() {\n return this._connected && !!this.channel;\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (c) 2024-2026 Pau Aliagas <linuxnow@gmail.com>\n/**\n * WebSocketTransport — cross-device sync transport\n *\n * Connects to the lead player's proxy WebSocket relay at /sync.\n * Used for LAN video walls where each screen is a separate device.\n *\n * Features:\n * - Auto-reconnect with exponential backoff (1s → 2s → 4s → max 30s)\n * - JSON serialization (WebSocket sends strings, not structured clones)\n * - Same transport interface as BroadcastChannelTransport\n *\n * Transport interface: { send(msg), onMessage(callback), close(), get connected() }\n */\n\nimport { createLogger } from '@xiboplayer/utils';\n\nconst INITIAL_RETRY_MS = 1000;\nconst MAX_RETRY_MS = 30000;\nconst BACKOFF_FACTOR = 2;\n\nexport class WebSocketTransport {\n /**\n * @param {string} url — WebSocket URL, e.g. ws://192.168.1.100:8765/sync\n */\n constructor(url) {\n this._url = url;\n this._callback = null;\n this._closed = false;\n this._retryMs = INITIAL_RETRY_MS;\n this._retryTimer = null;\n this._log = createLogger('WS-Sync');\n this.ws = null;\n\n this._connect();\n }\n\n /**\n * Send a message to the relay (which broadcasts to other clients).\n * @param {Object} msg — plain object (JSON-serialized for WebSocket)\n */\n send(msg) {\n if (this.ws?.readyState === WebSocket.OPEN) {\n this.ws.send(JSON.stringify(msg));\n }\n }\n\n /**\n * Register a callback for incoming messages.\n * @param {Function} callback — receives the parsed message object\n */\n onMessage(callback) {\n this._callback = callback;\n }\n\n /** Close the connection and stop reconnecting. */\n close() {\n this._closed = true;\n if (this._retryTimer) {\n clearTimeout(this._retryTimer);\n this._retryTimer = null;\n }\n if (this.ws) {\n this.ws.close();\n this.ws = null;\n }\n }\n\n /** @returns {boolean} Whether the WebSocket is open */\n get connected() {\n return this.ws?.readyState === WebSocket.OPEN;\n }\n\n /** @private */\n _connect() {\n if (this._closed) return;\n\n try {\n this.ws = new WebSocket(this._url);\n } catch (e) {\n this._log.error('WebSocket creation failed:', e.message);\n this._scheduleReconnect();\n return;\n }\n\n this.ws.onopen = () => {\n this._log.info(`Connected to ${this._url}`);\n this._retryMs = INITIAL_RETRY_MS; // Reset backoff on success\n };\n\n this.ws.onmessage = (event) => {\n if (!this._callback) return;\n try {\n const msg = JSON.parse(event.data);\n this._callback(msg);\n } catch (e) {\n this._log.warn('Failed to parse message:', e.message);\n }\n };\n\n this.ws.onclose = () => {\n if (!this._closed) {\n this._log.info('Connection closed — will reconnect');\n this._scheduleReconnect();\n }\n };\n\n this.ws.onerror = (e) => {\n // onclose will fire after onerror, triggering reconnect\n this._log.warn('WebSocket error');\n };\n }\n\n /** @private */\n _scheduleReconnect() {\n if (this._closed || this._retryTimer) return;\n\n this._log.info(`Reconnecting in ${this._retryMs}ms...`);\n this._retryTimer = setTimeout(() => {\n this._retryTimer = null;\n this._connect();\n }, this._retryMs);\n\n this._retryMs = Math.min(this._retryMs * BACKOFF_FACTOR, MAX_RETRY_MS);\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (c) 2024-2026 Pau Aliagas <linuxnow@gmail.com>\n/**\n * SyncManager - Multi-display synchronization\n *\n * Coordinates layout transitions across multiple browser tabs/windows\n * (same machine via BroadcastChannel) or across devices on a LAN\n * (via WebSocket relay on the lead's proxy server).\n *\n * Protocol:\n * Lead Follower(s)\n * ──── ──────────\n * layout-change(layoutId, showAt) → receives, loads layout\n * ← layout-ready(layoutId, displayId)\n * (waits for all followers ready)\n * layout-show(layoutId) → shows layout simultaneously\n *\n * Heartbeat:\n * All nodes broadcast heartbeat every 5s.\n * Lead tracks active followers. If a follower goes silent for 15s,\n * it's considered offline and excluded from ready-wait.\n *\n * Transport:\n * Pluggable — BroadcastChannelTransport (same-machine) or\n * WebSocketTransport (cross-device via relay). Selected automatically\n * based on syncConfig.relayUrl.\n *\n * @module @xiboplayer/sync\n */\n\n/**\n * @typedef {Object} SyncConfig\n * @property {string} syncGroup - \"lead\" or leader's LAN IP\n * @property {number} syncPublisherPort - TCP port (used for WebSocket relay URL)\n * @property {number} syncSwitchDelay - Delay in ms before showing new content\n * @property {number} syncVideoPauseDelay - Delay in ms before unpausing video\n * @property {boolean} isLead - Whether this display is the leader\n * @property {string} [relayUrl] - WebSocket relay URL for cross-device sync\n */\n\nimport { createLogger } from '@xiboplayer/utils';\nimport { BroadcastChannelTransport } from './bc-transport.js';\nimport { WebSocketTransport } from './ws-transport.js';\n\nconst HEARTBEAT_INTERVAL = 5000; // Send heartbeat every 5s\nconst FOLLOWER_TIMEOUT = 15000; // Consider follower offline after 15s silence\nconst READY_TIMEOUT = 10000; // Max wait for followers to be ready\n\nexport class SyncManager {\n /**\n * @param {Object} options\n * @param {string} options.displayId - This display's unique hardware key\n * @param {SyncConfig} options.syncConfig - Sync configuration from RegisterDisplay\n * @param {Object} [options.transport] - Optional pre-built transport (for testing)\n * @param {Function} [options.onLayoutChange] - Called when lead requests layout change\n * @param {Function} [options.onLayoutShow] - Called when lead gives show signal\n * @param {Function} [options.onVideoStart] - Called when lead gives video start signal\n * @param {Function} [options.onStatsReport] - (Lead) Called when follower sends stats\n * @param {Function} [options.onLogsReport] - (Lead) Called when follower sends logs\n * @param {Function} [options.onStatsAck] - (Follower) Called when lead confirms stats submission\n * @param {Function} [options.onLogsAck] - (Follower) Called when lead confirms logs submission\n */\n constructor(options) {\n this.displayId = options.displayId;\n this.syncConfig = options.syncConfig;\n this.isLead = options.syncConfig.isLead;\n this.switchDelay = options.syncConfig.syncSwitchDelay || 750;\n this.videoPauseDelay = options.syncConfig.syncVideoPauseDelay || 100;\n\n // Callbacks\n this.onLayoutChange = options.onLayoutChange || (() => {});\n this.onLayoutShow = options.onLayoutShow || (() => {});\n this.onVideoStart = options.onVideoStart || (() => {});\n this.onStatsReport = options.onStatsReport || null;\n this.onLogsReport = options.onLogsReport || null;\n this.onStatsAck = options.onStatsAck || null;\n this.onLogsAck = options.onLogsAck || null;\n\n // State\n this.transport = options.transport || null;\n this.followers = new Map(); // displayId → { lastSeen, ready }\n this._heartbeatTimer = null;\n this._cleanupTimer = null;\n this._readyResolve = null; // Resolve function for current ready-wait\n this._pendingLayoutId = null; // Layout we're waiting for readiness on\n this._started = false;\n\n // Logger with role prefix for clarity in multi-tab console\n this._tag = this.isLead ? '[Sync:LEAD]' : '[Sync:FOLLOW]';\n this._log = createLogger(this.isLead ? 'Sync:LEAD' : 'Sync:FOLLOW');\n }\n\n /** Backward-compatible alias for transport */\n get channel() { return this.transport; }\n set channel(v) { this.transport = v; }\n\n /**\n * Start the sync manager — selects transport, begins heartbeats.\n */\n start() {\n if (this._started) return;\n this._started = true;\n\n // Select transport if none injected\n if (!this.transport) {\n if (this.syncConfig.relayUrl) {\n this.transport = new WebSocketTransport(this.syncConfig.relayUrl);\n } else if (typeof BroadcastChannel !== 'undefined') {\n this.transport = new BroadcastChannelTransport();\n } else {\n this._log.warn('No transport available — sync disabled');\n return;\n }\n }\n\n this.transport.onMessage((msg) => this._handleMessage(msg));\n\n // Start heartbeat\n this._heartbeatTimer = setInterval(() => this._sendHeartbeat(), HEARTBEAT_INTERVAL);\n this._sendHeartbeat(); // Send initial heartbeat immediately\n\n // Lead: periodically clean up stale followers\n if (this.isLead) {\n this._cleanupTimer = setInterval(() => this._cleanupStaleFollowers(), HEARTBEAT_INTERVAL);\n }\n\n this._log.info('Started. DisplayId:', this.displayId,\n this.syncConfig.relayUrl ? `(relay: ${this.syncConfig.relayUrl})` : '(BroadcastChannel)');\n }\n\n /**\n * Stop the sync manager\n */\n stop() {\n if (!this._started) return;\n this._started = false;\n\n if (this._heartbeatTimer) {\n clearInterval(this._heartbeatTimer);\n this._heartbeatTimer = null;\n }\n if (this._cleanupTimer) {\n clearInterval(this._cleanupTimer);\n this._cleanupTimer = null;\n }\n if (this.transport) {\n this.transport.close();\n this.transport = null;\n }\n\n this.followers.clear();\n this._log.info('Stopped');\n }\n\n // ── Lead API ──────────────────────────────────────────────────────\n\n /**\n * [Lead only] Request all displays to change to a layout.\n * Waits for followers to report ready, then sends show signal.\n *\n * @param {string|number} layoutId - Layout to change to\n * @returns {Promise<void>} Resolves when show signal is sent\n */\n async requestLayoutChange(layoutId) {\n if (!this.isLead) {\n this._log.warn('requestLayoutChange called on follower — ignoring');\n return;\n }\n\n layoutId = String(layoutId);\n this._pendingLayoutId = layoutId;\n\n // Mark all followers as not-ready for this layout\n for (const [, follower] of this.followers) {\n follower.ready = false;\n follower.readyLayoutId = null;\n }\n\n const showAt = Date.now() + this.switchDelay;\n\n this._log.info(`Requesting layout change: ${layoutId} (show at ${new Date(showAt).toISOString()}, ${this.followers.size} followers)`);\n\n // Broadcast layout-change to all followers\n this._send({\n type: 'layout-change',\n layoutId,\n showAt,\n displayId: this.displayId,\n });\n\n // Wait for all active followers to report ready (or timeout)\n if (this.followers.size > 0) {\n await this._waitForFollowersReady(layoutId);\n }\n\n // Apply switch delay (remaining time from showAt)\n const remaining = showAt - Date.now();\n if (remaining > 0) {\n await new Promise(resolve => setTimeout(resolve, remaining));\n }\n\n // Send show signal\n this._log.info(`Sending layout-show: ${layoutId}`);\n this._send({\n type: 'layout-show',\n layoutId,\n displayId: this.displayId,\n });\n\n // Also trigger on self (lead shows too)\n this.onLayoutShow(layoutId);\n\n this._pendingLayoutId = null;\n }\n\n /**\n * [Lead only] Signal followers to start video playback.\n *\n * @param {string|number} layoutId - Layout containing the video\n * @param {string} regionId - Region with the video widget\n */\n async requestVideoStart(layoutId, regionId) {\n if (!this.isLead) return;\n\n // Wait videoPauseDelay before unpausing\n await new Promise(resolve => setTimeout(resolve, this.videoPauseDelay));\n\n this._send({\n type: 'video-start',\n layoutId: String(layoutId),\n regionId,\n displayId: this.displayId,\n });\n\n // Also trigger on self\n this.onVideoStart(String(layoutId), regionId);\n }\n\n // ── Follower API ──────────────────────────────────────────────────\n\n /**\n * [Follower only] Report that layout is loaded and ready to show.\n * Called by platform layer after layout content is prepared.\n *\n * @param {string|number} layoutId - Layout that is ready\n */\n reportReady(layoutId) {\n layoutId = String(layoutId);\n\n this._log.info(`Reporting ready for layout ${layoutId}`);\n\n this._send({\n type: 'layout-ready',\n layoutId,\n displayId: this.displayId,\n });\n }\n\n /**\n * [Follower only] Delegate stats submission to the lead.\n * Lead will submit on our behalf and send a stats-ack when done.\n *\n * @param {string} statsXml - Formatted stats XML to submit\n */\n reportStats(statsXml) {\n if (this.isLead) return;\n\n this._log.info('Delegating stats to lead');\n this._send({\n type: 'stats-report',\n displayId: this.displayId,\n statsXml,\n });\n }\n\n /**\n * [Follower only] Delegate logs submission to the lead.\n * Lead will submit on our behalf and send a logs-ack when done.\n *\n * @param {string} logsXml - Formatted logs XML to submit\n */\n reportLogs(logsXml) {\n if (this.isLead) return;\n\n this._log.info('Delegating logs to lead');\n this._send({\n type: 'logs-report',\n displayId: this.displayId,\n logsXml,\n });\n }\n\n // ── Message handling ──────────────────────────────────────────────\n\n /** @private */\n _handleMessage(msg) {\n // Ignore our own messages\n if (msg.displayId === this.displayId) return;\n\n switch (msg.type) {\n case 'heartbeat':\n this._handleHeartbeat(msg);\n break;\n\n case 'layout-change':\n // Follower: lead is requesting a layout change\n if (!this.isLead) {\n this._log.info(`Layout change requested: ${msg.layoutId}`);\n this.onLayoutChange(msg.layoutId, msg.showAt);\n }\n break;\n\n case 'layout-ready':\n // Lead: follower reports ready\n if (this.isLead) {\n this._handleFollowerReady(msg);\n }\n break;\n\n case 'layout-show':\n // Follower: lead says show now\n if (!this.isLead) {\n this._log.info(`Layout show signal: ${msg.layoutId}`);\n this.onLayoutShow(msg.layoutId);\n }\n break;\n\n case 'video-start':\n // Follower: lead says start video\n if (!this.isLead) {\n this._log.info(`Video start signal: ${msg.layoutId} region ${msg.regionId}`);\n this.onVideoStart(msg.layoutId, msg.regionId);\n }\n break;\n\n case 'stats-report':\n // Lead: follower is delegating stats submission\n if (this.isLead && this.onStatsReport) {\n const statsAck = () => this._send({ type: 'stats-ack', displayId: this.displayId, targetDisplayId: msg.displayId });\n this.onStatsReport(msg.displayId, msg.statsXml, statsAck);\n }\n break;\n\n case 'logs-report':\n // Lead: follower is delegating logs submission\n if (this.isLead && this.onLogsReport) {\n const logsAck = () => this._send({ type: 'logs-ack', displayId: this.displayId, targetDisplayId: msg.displayId });\n this.onLogsReport(msg.displayId, msg.logsXml, logsAck);\n }\n break;\n\n case 'stats-ack':\n // Follower: lead confirmed stats were submitted for us\n if (!this.isLead && msg.targetDisplayId === this.displayId && this.onStatsAck) {\n this._log.info('Stats acknowledged by lead');\n this.onStatsAck(msg.targetDisplayId);\n }\n break;\n\n case 'logs-ack':\n // Follower: lead confirmed logs were submitted for us\n if (!this.isLead && msg.targetDisplayId === this.displayId && this.onLogsAck) {\n this._log.info('Logs acknowledged by lead');\n this.onLogsAck(msg.targetDisplayId);\n }\n break;\n\n default:\n this._log.warn('Unknown message type:', msg.type);\n }\n }\n\n /** @private */\n _handleHeartbeat(msg) {\n const existing = this.followers.get(msg.displayId);\n if (existing) {\n existing.lastSeen = Date.now();\n } else {\n // New follower discovered\n this.followers.set(msg.displayId, {\n lastSeen: Date.now(),\n ready: false,\n readyLayoutId: null,\n role: msg.role || 'unknown',\n });\n this._log.info(`Follower joined: ${msg.displayId} (${this.followers.size} total)`);\n }\n }\n\n /** @private */\n _handleFollowerReady(msg) {\n const follower = this.followers.get(msg.displayId);\n if (!follower) {\n // Late joiner — register them\n this.followers.set(msg.displayId, {\n lastSeen: Date.now(),\n ready: true,\n readyLayoutId: msg.layoutId,\n });\n } else {\n follower.ready = true;\n follower.readyLayoutId = msg.layoutId;\n follower.lastSeen = Date.now();\n }\n\n this._log.info(`Follower ${msg.displayId} ready for layout ${msg.layoutId}`);\n\n // Check if all followers are now ready\n if (this._pendingLayoutId === msg.layoutId && this._readyResolve) {\n if (this._allFollowersReady(msg.layoutId)) {\n this._log.info('All followers ready');\n this._readyResolve();\n this._readyResolve = null;\n }\n }\n }\n\n /** @private */\n _allFollowersReady(layoutId) {\n for (const [, follower] of this.followers) {\n // Skip stale followers\n if (Date.now() - follower.lastSeen > FOLLOWER_TIMEOUT) continue;\n if (!follower.ready || follower.readyLayoutId !== layoutId) {\n return false;\n }\n }\n return true;\n }\n\n /** @private */\n _waitForFollowersReady(layoutId) {\n return new Promise((resolve) => {\n // Already all ready?\n if (this._allFollowersReady(layoutId)) {\n resolve();\n return;\n }\n\n this._readyResolve = resolve;\n\n // Timeout: don't wait forever for unresponsive followers\n setTimeout(() => {\n if (this._readyResolve === resolve) {\n const notReady = [];\n for (const [id, f] of this.followers) {\n if (!f.ready || f.readyLayoutId !== layoutId) {\n notReady.push(id);\n }\n }\n this._log.warn(`Ready timeout — proceeding without: ${notReady.join(', ')}`);\n this._readyResolve = null;\n resolve();\n }\n }, READY_TIMEOUT);\n });\n }\n\n // ── Heartbeat & cleanup ───────────────────────────────────────────\n\n /** @private */\n _sendHeartbeat() {\n this._send({\n type: 'heartbeat',\n displayId: this.displayId,\n role: this.isLead ? 'lead' : 'follower',\n timestamp: Date.now(),\n });\n }\n\n /** @private */\n _cleanupStaleFollowers() {\n const now = Date.now();\n for (const [id, follower] of this.followers) {\n if (now - follower.lastSeen > FOLLOWER_TIMEOUT) {\n this._log.info(`Removing stale follower: ${id} (last seen ${Math.round((now - follower.lastSeen) / 1000)}s ago)`);\n this.followers.delete(id);\n }\n }\n }\n\n /** @private */\n _send(msg) {\n if (!this.transport) return;\n try {\n this.transport.send(msg);\n } catch (e) {\n this._log.error('Failed to send:', e);\n }\n }\n\n // ── Status ────────────────────────────────────────────────────────\n\n /**\n * Get current sync status\n * @returns {Object}\n */\n getStatus() {\n return {\n started: this._started,\n isLead: this.isLead,\n displayId: this.displayId,\n followers: this.followers.size,\n pendingLayoutId: this._pendingLayoutId,\n transport: this.syncConfig.relayUrl ? 'websocket' : 'broadcast-channel',\n followerDetails: Array.from(this.followers.entries()).map(([id, f]) => ({\n displayId: id,\n lastSeen: f.lastSeen,\n ready: f.ready,\n readyLayoutId: f.readyLayoutId,\n stale: Date.now() - f.lastSeen > FOLLOWER_TIMEOUT,\n })),\n };\n }\n}\n\nexport { BroadcastChannelTransport } from './bc-transport.js';\nexport { WebSocketTransport } from './ws-transport.js';\n"],"names":["DEFAULT_CHANNEL","BroadcastChannelTransport","channelName","msg","callback","INITIAL_RETRY_MS","MAX_RETRY_MS","BACKOFF_FACTOR","WebSocketTransport","url","createLogger","_a","e","event","HEARTBEAT_INTERVAL","FOLLOWER_TIMEOUT","READY_TIMEOUT","SyncManager","options","v","layoutId","follower","showAt","remaining","resolve","regionId","statsXml","logsXml","statsAck","logsAck","existing","notReady","id","f","now"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"sync-manager-C0UDCBzv.js","sources":["../../../sync/src/bc-transport.js","../../../sync/src/ws-transport.js","../../../sync/src/sync-manager.js"],"sourcesContent":["// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (c) 2024-2026 Pau Aliagas <linuxnow@gmail.com>\n/**\n * BroadcastChannelTransport — same-machine sync transport\n *\n * Wraps the browser BroadcastChannel API behind the sync transport interface.\n * Used for multi-tab / multi-window sync on a single device.\n *\n * Transport interface: { send(msg), onMessage(callback), close(), get connected() }\n */\n\nconst DEFAULT_CHANNEL = 'xibo-sync';\n\nexport class BroadcastChannelTransport {\n /**\n * @param {string} [channelName='xibo-sync']\n */\n constructor(channelName = DEFAULT_CHANNEL) {\n this.channel = new BroadcastChannel(channelName);\n this._connected = true;\n }\n\n /**\n * Send a message to all other tabs/windows on this channel.\n * @param {Object} msg — plain object (structured-cloned by BroadcastChannel)\n */\n send(msg) {\n if (!this.channel) return;\n this.channel.postMessage(msg);\n }\n\n /**\n * Register a callback for incoming messages.\n * @param {Function} callback — receives the message data (already deserialized)\n */\n onMessage(callback) {\n this.channel.onmessage = (e) => callback(e.data);\n }\n\n /** Close the channel. */\n close() {\n if (this.channel) {\n this.channel.close();\n this.channel = null;\n }\n this._connected = false;\n }\n\n /** @returns {boolean} Whether the channel is open */\n get connected() {\n return this._connected && !!this.channel;\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (c) 2024-2026 Pau Aliagas <linuxnow@gmail.com>\n/**\n * WebSocketTransport — cross-device sync transport\n *\n * Connects to the lead player's proxy WebSocket relay at /sync.\n * Used for LAN video walls where each screen is a separate device.\n *\n * Features:\n * - Auto-reconnect with exponential backoff (1s → 2s → 4s → max 30s)\n * - JSON serialization (WebSocket sends strings, not structured clones)\n * - Same transport interface as BroadcastChannelTransport\n *\n * Transport interface: { send(msg), onMessage(callback), close(), get connected() }\n */\n\nimport { createLogger } from '@xiboplayer/utils';\n\nconst INITIAL_RETRY_MS = 1000;\nconst MAX_RETRY_MS = 30000;\nconst BACKOFF_FACTOR = 2;\n\nexport class WebSocketTransport {\n /**\n * @param {string} url — WebSocket URL, e.g. ws://192.168.1.100:8765/sync\n */\n constructor(url) {\n this._url = url;\n this._callback = null;\n this._closed = false;\n this._retryMs = INITIAL_RETRY_MS;\n this._retryTimer = null;\n this._log = createLogger('WS-Sync');\n this.ws = null;\n\n this._connect();\n }\n\n /**\n * Send a message to the relay (which broadcasts to other clients).\n * @param {Object} msg — plain object (JSON-serialized for WebSocket)\n */\n send(msg) {\n if (this.ws?.readyState === WebSocket.OPEN) {\n this.ws.send(JSON.stringify(msg));\n }\n }\n\n /**\n * Register a callback for incoming messages.\n * @param {Function} callback — receives the parsed message object\n */\n onMessage(callback) {\n this._callback = callback;\n }\n\n /** Close the connection and stop reconnecting. */\n close() {\n this._closed = true;\n if (this._retryTimer) {\n clearTimeout(this._retryTimer);\n this._retryTimer = null;\n }\n if (this.ws) {\n this.ws.close();\n this.ws = null;\n }\n }\n\n /** @returns {boolean} Whether the WebSocket is open */\n get connected() {\n return this.ws?.readyState === WebSocket.OPEN;\n }\n\n /** @private */\n _connect() {\n if (this._closed) return;\n\n try {\n this.ws = new WebSocket(this._url);\n } catch (e) {\n this._log.error('WebSocket creation failed:', e.message);\n this._scheduleReconnect();\n return;\n }\n\n this.ws.onopen = () => {\n this._log.info(`Connected to ${this._url}`);\n this._retryMs = INITIAL_RETRY_MS; // Reset backoff on success\n };\n\n this.ws.onmessage = (event) => {\n if (!this._callback) return;\n try {\n const msg = JSON.parse(event.data);\n this._callback(msg);\n } catch (e) {\n this._log.warn('Failed to parse message:', e.message);\n }\n };\n\n this.ws.onclose = () => {\n if (!this._closed) {\n this._log.info('Connection closed — will reconnect');\n this._scheduleReconnect();\n }\n };\n\n this.ws.onerror = (e) => {\n // onclose will fire after onerror, triggering reconnect\n this._log.warn('WebSocket error');\n };\n }\n\n /** @private */\n _scheduleReconnect() {\n if (this._closed || this._retryTimer) return;\n\n this._log.info(`Reconnecting in ${this._retryMs}ms...`);\n this._retryTimer = setTimeout(() => {\n this._retryTimer = null;\n this._connect();\n }, this._retryMs);\n\n this._retryMs = Math.min(this._retryMs * BACKOFF_FACTOR, MAX_RETRY_MS);\n }\n}\n","// SPDX-License-Identifier: AGPL-3.0-or-later\n// Copyright (c) 2024-2026 Pau Aliagas <linuxnow@gmail.com>\n/**\n * SyncManager - Multi-display synchronization\n *\n * Coordinates layout transitions across multiple browser tabs/windows\n * (same machine via BroadcastChannel) or across devices on a LAN\n * (via WebSocket relay on the lead's proxy server).\n *\n * Protocol:\n * Lead Follower(s)\n * ──── ──────────\n * layout-change(layoutId, showAt) → receives, loads layout\n * ← layout-ready(layoutId, displayId)\n * (waits for all followers ready)\n * layout-show(layoutId) → shows layout simultaneously\n *\n * Heartbeat:\n * All nodes broadcast heartbeat every 5s.\n * Lead tracks active followers. If a follower goes silent for 15s,\n * it's considered offline and excluded from ready-wait.\n *\n * Transport:\n * Pluggable — BroadcastChannelTransport (same-machine) or\n * WebSocketTransport (cross-device via relay). Selected automatically\n * based on syncConfig.relayUrl.\n *\n * @module @xiboplayer/sync\n */\n\n/**\n * @typedef {Object} SyncConfig\n * @property {string} syncGroup - \"lead\" or leader's LAN IP\n * @property {number} syncPublisherPort - TCP port (used for WebSocket relay URL)\n * @property {number} syncSwitchDelay - Delay in ms before showing new content\n * @property {number} syncVideoPauseDelay - Delay in ms before unpausing video\n * @property {boolean} isLead - Whether this display is the leader\n * @property {string} [relayUrl] - WebSocket relay URL for cross-device sync\n */\n\nimport { createLogger } from '@xiboplayer/utils';\nimport { BroadcastChannelTransport } from './bc-transport.js';\nimport { WebSocketTransport } from './ws-transport.js';\n\nconst HEARTBEAT_INTERVAL = 5000; // Send heartbeat every 5s\nconst FOLLOWER_TIMEOUT = 15000; // Consider follower offline after 15s silence\nconst READY_TIMEOUT = 10000; // Max wait for followers to be ready\n\nexport class SyncManager {\n /**\n * @param {Object} options\n * @param {string} options.displayId - This display's unique hardware key\n * @param {SyncConfig} options.syncConfig - Sync configuration from RegisterDisplay\n * @param {Object} [options.transport] - Optional pre-built transport (for testing)\n * @param {Function} [options.onLayoutChange] - Called when lead requests layout change\n * @param {Function} [options.onLayoutShow] - Called when lead gives show signal\n * @param {Function} [options.onVideoStart] - Called when lead gives video start signal\n * @param {Function} [options.onStatsReport] - (Lead) Called when follower sends stats\n * @param {Function} [options.onLogsReport] - (Lead) Called when follower sends logs\n * @param {Function} [options.onStatsAck] - (Follower) Called when lead confirms stats submission\n * @param {Function} [options.onLogsAck] - (Follower) Called when lead confirms logs submission\n */\n constructor(options) {\n this.displayId = options.displayId;\n this.syncConfig = options.syncConfig;\n this.isLead = options.syncConfig.isLead;\n this.switchDelay = options.syncConfig.syncSwitchDelay || 750;\n this.videoPauseDelay = options.syncConfig.syncVideoPauseDelay || 100;\n\n // Callbacks\n this.onLayoutChange = options.onLayoutChange || (() => {});\n this.onLayoutShow = options.onLayoutShow || (() => {});\n this.onVideoStart = options.onVideoStart || (() => {});\n this.onStatsReport = options.onStatsReport || null;\n this.onLogsReport = options.onLogsReport || null;\n this.onStatsAck = options.onStatsAck || null;\n this.onLogsAck = options.onLogsAck || null;\n\n // State\n this.transport = options.transport || null;\n this.followers = new Map(); // displayId → { lastSeen, ready }\n this._heartbeatTimer = null;\n this._cleanupTimer = null;\n this._readyResolve = null; // Resolve function for current ready-wait\n this._pendingLayoutId = null; // Layout we're waiting for readiness on\n this._started = false;\n\n // Logger with role prefix for clarity in multi-tab console\n this._tag = this.isLead ? '[Sync:LEAD]' : '[Sync:FOLLOW]';\n this._log = createLogger(this.isLead ? 'Sync:LEAD' : 'Sync:FOLLOW');\n }\n\n /** Backward-compatible alias for transport */\n get channel() { return this.transport; }\n set channel(v) { this.transport = v; }\n\n /**\n * Start the sync manager — selects transport, begins heartbeats.\n */\n start() {\n if (this._started) return;\n this._started = true;\n\n // Select transport if none injected\n if (!this.transport) {\n if (this.syncConfig.relayUrl) {\n this.transport = new WebSocketTransport(this.syncConfig.relayUrl);\n } else if (typeof BroadcastChannel !== 'undefined') {\n this.transport = new BroadcastChannelTransport();\n } else {\n this._log.warn('No transport available — sync disabled');\n return;\n }\n }\n\n this.transport.onMessage((msg) => this._handleMessage(msg));\n\n // Start heartbeat\n this._heartbeatTimer = setInterval(() => this._sendHeartbeat(), HEARTBEAT_INTERVAL);\n this._sendHeartbeat(); // Send initial heartbeat immediately\n\n // Lead: periodically clean up stale followers\n if (this.isLead) {\n this._cleanupTimer = setInterval(() => this._cleanupStaleFollowers(), HEARTBEAT_INTERVAL);\n }\n\n this._log.info('Started. DisplayId:', this.displayId,\n this.syncConfig.relayUrl ? `(relay: ${this.syncConfig.relayUrl})` : '(BroadcastChannel)');\n }\n\n /**\n * Stop the sync manager\n */\n stop() {\n if (!this._started) return;\n this._started = false;\n\n if (this._heartbeatTimer) {\n clearInterval(this._heartbeatTimer);\n this._heartbeatTimer = null;\n }\n if (this._cleanupTimer) {\n clearInterval(this._cleanupTimer);\n this._cleanupTimer = null;\n }\n if (this.transport) {\n this.transport.close();\n this.transport = null;\n }\n\n this.followers.clear();\n this._log.info('Stopped');\n }\n\n // ── Lead API ──────────────────────────────────────────────────────\n\n /**\n * [Lead only] Request all displays to change to a layout.\n * Waits for followers to report ready, then sends show signal.\n *\n * @param {string|number} layoutId - Layout to change to\n * @returns {Promise<void>} Resolves when show signal is sent\n */\n async requestLayoutChange(layoutId) {\n if (!this.isLead) {\n this._log.warn('requestLayoutChange called on follower — ignoring');\n return;\n }\n\n layoutId = String(layoutId);\n this._pendingLayoutId = layoutId;\n\n // Mark all followers as not-ready for this layout\n for (const [, follower] of this.followers) {\n follower.ready = false;\n follower.readyLayoutId = null;\n }\n\n const showAt = Date.now() + this.switchDelay;\n\n this._log.info(`Requesting layout change: ${layoutId} (show at ${new Date(showAt).toISOString()}, ${this.followers.size} followers)`);\n\n // Broadcast layout-change to all followers\n this._send({\n type: 'layout-change',\n layoutId,\n showAt,\n displayId: this.displayId,\n });\n\n // Wait for all active followers to report ready (or timeout)\n if (this.followers.size > 0) {\n await this._waitForFollowersReady(layoutId);\n }\n\n // Apply switch delay (remaining time from showAt)\n const remaining = showAt - Date.now();\n if (remaining > 0) {\n await new Promise(resolve => setTimeout(resolve, remaining));\n }\n\n // Send show signal\n this._log.info(`Sending layout-show: ${layoutId}`);\n this._send({\n type: 'layout-show',\n layoutId,\n displayId: this.displayId,\n });\n\n // Also trigger on self (lead shows too)\n this.onLayoutShow(layoutId);\n\n this._pendingLayoutId = null;\n }\n\n /**\n * [Lead only] Signal followers to start video playback.\n *\n * @param {string|number} layoutId - Layout containing the video\n * @param {string} regionId - Region with the video widget\n */\n async requestVideoStart(layoutId, regionId) {\n if (!this.isLead) return;\n\n // Wait videoPauseDelay before unpausing\n await new Promise(resolve => setTimeout(resolve, this.videoPauseDelay));\n\n this._send({\n type: 'video-start',\n layoutId: String(layoutId),\n regionId,\n displayId: this.displayId,\n });\n\n // Also trigger on self\n this.onVideoStart(String(layoutId), regionId);\n }\n\n // ── Follower API ──────────────────────────────────────────────────\n\n /**\n * [Follower only] Report that layout is loaded and ready to show.\n * Called by platform layer after layout content is prepared.\n *\n * @param {string|number} layoutId - Layout that is ready\n */\n reportReady(layoutId) {\n layoutId = String(layoutId);\n\n this._log.info(`Reporting ready for layout ${layoutId}`);\n\n this._send({\n type: 'layout-ready',\n layoutId,\n displayId: this.displayId,\n });\n }\n\n /**\n * [Follower only] Delegate stats submission to the lead.\n * Lead will submit on our behalf and send a stats-ack when done.\n *\n * @param {string} statsXml - Formatted stats XML to submit\n */\n reportStats(statsXml) {\n if (this.isLead) return;\n\n this._log.info('Delegating stats to lead');\n this._send({\n type: 'stats-report',\n displayId: this.displayId,\n statsXml,\n });\n }\n\n /**\n * [Follower only] Delegate logs submission to the lead.\n * Lead will submit on our behalf and send a logs-ack when done.\n *\n * @param {string} logsXml - Formatted logs XML to submit\n */\n reportLogs(logsXml) {\n if (this.isLead) return;\n\n this._log.info('Delegating logs to lead');\n this._send({\n type: 'logs-report',\n displayId: this.displayId,\n logsXml,\n });\n }\n\n // ── Message handling ──────────────────────────────────────────────\n\n /** @private */\n _handleMessage(msg) {\n // Ignore our own messages\n if (msg.displayId === this.displayId) return;\n\n switch (msg.type) {\n case 'heartbeat':\n this._handleHeartbeat(msg);\n break;\n\n case 'layout-change':\n // Follower: lead is requesting a layout change\n if (!this.isLead) {\n this._log.info(`Layout change requested: ${msg.layoutId}`);\n this.onLayoutChange(msg.layoutId, msg.showAt);\n }\n break;\n\n case 'layout-ready':\n // Lead: follower reports ready\n if (this.isLead) {\n this._handleFollowerReady(msg);\n }\n break;\n\n case 'layout-show':\n // Follower: lead says show now\n if (!this.isLead) {\n this._log.info(`Layout show signal: ${msg.layoutId}`);\n this.onLayoutShow(msg.layoutId);\n }\n break;\n\n case 'video-start':\n // Follower: lead says start video\n if (!this.isLead) {\n this._log.info(`Video start signal: ${msg.layoutId} region ${msg.regionId}`);\n this.onVideoStart(msg.layoutId, msg.regionId);\n }\n break;\n\n case 'stats-report':\n // Lead: follower is delegating stats submission\n if (this.isLead && this.onStatsReport) {\n const statsAck = () => this._send({ type: 'stats-ack', displayId: this.displayId, targetDisplayId: msg.displayId });\n this.onStatsReport(msg.displayId, msg.statsXml, statsAck);\n }\n break;\n\n case 'logs-report':\n // Lead: follower is delegating logs submission\n if (this.isLead && this.onLogsReport) {\n const logsAck = () => this._send({ type: 'logs-ack', displayId: this.displayId, targetDisplayId: msg.displayId });\n this.onLogsReport(msg.displayId, msg.logsXml, logsAck);\n }\n break;\n\n case 'stats-ack':\n // Follower: lead confirmed stats were submitted for us\n if (!this.isLead && msg.targetDisplayId === this.displayId && this.onStatsAck) {\n this._log.info('Stats acknowledged by lead');\n this.onStatsAck(msg.targetDisplayId);\n }\n break;\n\n case 'logs-ack':\n // Follower: lead confirmed logs were submitted for us\n if (!this.isLead && msg.targetDisplayId === this.displayId && this.onLogsAck) {\n this._log.info('Logs acknowledged by lead');\n this.onLogsAck(msg.targetDisplayId);\n }\n break;\n\n default:\n this._log.warn('Unknown message type:', msg.type);\n }\n }\n\n /** @private */\n _handleHeartbeat(msg) {\n const existing = this.followers.get(msg.displayId);\n if (existing) {\n existing.lastSeen = Date.now();\n } else {\n // New follower discovered\n this.followers.set(msg.displayId, {\n lastSeen: Date.now(),\n ready: false,\n readyLayoutId: null,\n role: msg.role || 'unknown',\n });\n this._log.info(`Follower joined: ${msg.displayId} (${this.followers.size} total)`);\n }\n }\n\n /** @private */\n _handleFollowerReady(msg) {\n const follower = this.followers.get(msg.displayId);\n if (!follower) {\n // Late joiner — register them\n this.followers.set(msg.displayId, {\n lastSeen: Date.now(),\n ready: true,\n readyLayoutId: msg.layoutId,\n });\n } else {\n follower.ready = true;\n follower.readyLayoutId = msg.layoutId;\n follower.lastSeen = Date.now();\n }\n\n this._log.info(`Follower ${msg.displayId} ready for layout ${msg.layoutId}`);\n\n // Check if all followers are now ready\n if (this._pendingLayoutId === msg.layoutId && this._readyResolve) {\n if (this._allFollowersReady(msg.layoutId)) {\n this._log.info('All followers ready');\n this._readyResolve();\n this._readyResolve = null;\n }\n }\n }\n\n /** @private */\n _allFollowersReady(layoutId) {\n for (const [, follower] of this.followers) {\n // Skip stale followers\n if (Date.now() - follower.lastSeen > FOLLOWER_TIMEOUT) continue;\n if (!follower.ready || follower.readyLayoutId !== layoutId) {\n return false;\n }\n }\n return true;\n }\n\n /** @private */\n _waitForFollowersReady(layoutId) {\n return new Promise((resolve) => {\n // Already all ready?\n if (this._allFollowersReady(layoutId)) {\n resolve();\n return;\n }\n\n this._readyResolve = resolve;\n\n // Timeout: don't wait forever for unresponsive followers\n setTimeout(() => {\n if (this._readyResolve === resolve) {\n const notReady = [];\n for (const [id, f] of this.followers) {\n if (!f.ready || f.readyLayoutId !== layoutId) {\n notReady.push(id);\n }\n }\n this._log.warn(`Ready timeout — proceeding without: ${notReady.join(', ')}`);\n this._readyResolve = null;\n resolve();\n }\n }, READY_TIMEOUT);\n });\n }\n\n // ── Heartbeat & cleanup ───────────────────────────────────────────\n\n /** @private */\n _sendHeartbeat() {\n this._send({\n type: 'heartbeat',\n displayId: this.displayId,\n role: this.isLead ? 'lead' : 'follower',\n timestamp: Date.now(),\n });\n }\n\n /** @private */\n _cleanupStaleFollowers() {\n const now = Date.now();\n for (const [id, follower] of this.followers) {\n if (now - follower.lastSeen > FOLLOWER_TIMEOUT) {\n this._log.info(`Removing stale follower: ${id} (last seen ${Math.round((now - follower.lastSeen) / 1000)}s ago)`);\n this.followers.delete(id);\n }\n }\n }\n\n /** @private */\n _send(msg) {\n if (!this.transport) return;\n try {\n this.transport.send(msg);\n } catch (e) {\n this._log.error('Failed to send:', e);\n }\n }\n\n // ── Status ────────────────────────────────────────────────────────\n\n /**\n * Get current sync status\n * @returns {Object}\n */\n getStatus() {\n return {\n started: this._started,\n isLead: this.isLead,\n displayId: this.displayId,\n followers: this.followers.size,\n pendingLayoutId: this._pendingLayoutId,\n transport: this.syncConfig.relayUrl ? 'websocket' : 'broadcast-channel',\n followerDetails: Array.from(this.followers.entries()).map(([id, f]) => ({\n displayId: id,\n lastSeen: f.lastSeen,\n ready: f.ready,\n readyLayoutId: f.readyLayoutId,\n stale: Date.now() - f.lastSeen > FOLLOWER_TIMEOUT,\n })),\n };\n }\n}\n\nexport { BroadcastChannelTransport } from './bc-transport.js';\nexport { WebSocketTransport } from './ws-transport.js';\n"],"names":["DEFAULT_CHANNEL","BroadcastChannelTransport","channelName","msg","callback","INITIAL_RETRY_MS","MAX_RETRY_MS","BACKOFF_FACTOR","WebSocketTransport","url","createLogger","_a","e","event","HEARTBEAT_INTERVAL","FOLLOWER_TIMEOUT","READY_TIMEOUT","SyncManager","options","v","layoutId","follower","showAt","remaining","resolve","regionId","statsXml","logsXml","statsAck","logsAck","existing","notReady","id","f","now"],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{createLogger as $,PLAYER_API as C}from"./index-O-mckgut.js";const P=$("Cache"),B=typeof window<"u"&&window.location.pathname.replace(/\/[^/]*$/,"").replace(/\/$/,"")||"/player/pwa";class R{constructor(){this.dependants=new Map}getCacheKey(e,t,s=null){return`${B}/cache/${e}/${s||t}`}addDependant(e,t){const s=String(e);this.dependants.has(s)||this.dependants.set(s,new Set),this.dependants.get(s).add(String(t))}removeLayoutDependants(e){const t=String(e),s=[];for(const[n,i]of this.dependants)i.delete(t),i.size===0&&(this.dependants.delete(n),s.push(n));return s.length>0&&P.info(`${s.length} media files orphaned after layout ${e} removed:`,s),s}isMediaReferenced(e){const t=this.dependants.get(String(e));return t?t.size>0:!1}async clearAll(){this.dependants.clear()}}const N=new R,T=$("StoreClient");class O{async has(e,t){try{return(await fetch(`/store/${e}/${t}`,{method:"HEAD"})).ok}catch{return!1}}async get(e,t){var s;try{const n=await fetch(`/store/${e}/${t}`);if(!n.ok){if((s=n.body)==null||s.cancel(),n.status===404)return null;throw new Error(`Failed to get file: ${n.status}`)}return await n.blob()}catch(n){return T.error("get error:",n.message),null}}async put(e,t,s,n="application/octet-stream"){var i;try{const r=await fetch(`/store/${e}/${t}`,{method:"PUT",headers:{"Content-Type":n},body:s});return(i=r.body)==null||i.cancel(),r.ok}catch(r){return T.error("put error:",r.message),!1}}async remove(e){try{const s=await(await fetch("/store/delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({files:e})})).json();return{deleted:s.deleted||0,total:s.total||e.length}}catch(t){return T.error("remove error:",t.message),{deleted:0,total:e.length}}}async list(){try{return(await(await fetch("/store/list")).json()).files||[]}catch(e){return T.error("list error:",e.message),[]}}}const D={media:{maxRetries:3,retryDelayMs:500,retryDelays:null,maxReenqueues:0,reenqueueDelayMs:0,skipHead:!1,cacheTtl:1/0},layout:{maxRetries:3,retryDelayMs:500,retryDelays:null,maxReenqueues:0,reenqueueDelayMs:0,skipHead:!1,cacheTtl:1/0},dataset:{maxRetries:4,retryDelayMs:0,retryDelays:[15e3,3e4,6e4,12e4],maxReenqueues:5,reenqueueDelayMs:6e4,skipHead:!0,cacheTtl:300},static:{maxRetries:3,retryDelayMs:500,retryDelays:null,maxReenqueues:0,reenqueueDelayMs:0,skipHead:!1,cacheTtl:1/0}};function v(d){return D[d]||D.media}const l=$("Download"),A=6,F=50*1024*1024,M=3,Q=100*1024*1024,z=2,b=6e5,L=15e3;function U(d){var n,i;const t=(i=(n=(d.path||d.code||"").split(".").pop())==null?void 0:n.split("?")[0])==null?void 0:i.toLowerCase();return{mp4:"video/mp4",webm:"video/webm",mp3:"audio/mpeg",png:"image/png",jpg:"image/jpeg",jpeg:"image/jpeg",gif:"image/gif",svg:"image/svg+xml",webp:"image/webp",css:"text/css",js:"application/javascript",ttf:"font/ttf",otf:"font/otf",woff:"font/woff",woff2:"font/woff2",xml:"application/xml",xlf:"application/xml"}[t]||"application/octet-stream"}const f={normal:0,layout:1,high:2,urgent:3},_=Symbol("BARRIER");function k(d){try{const e=d.match(/X-Amz-Expires=(\d+)/);return e?parseInt(e[1],10):1/0}catch{return 1/0}}function S(d,e=30){const t=k(d);return t===1/0?!1:Date.now()/1e3>=t-e}class x{constructor(e,t={}){this.fileInfo=e,this.chunkIndex=t.chunkIndex??null,this.rangeStart=t.rangeStart??null,this.rangeEnd=t.rangeEnd??null,this.state="pending",this.blob=null,this._parentFile=null,this._priority=f.normal,this._typeConfig=v(e.type)}getUrl(){const e=this.fileInfo.path;if(S(e))throw new Error(`URL expired for ${this.fileInfo.type}/${this.fileInfo.id} — waiting for fresh URL from next collection cycle`);return e}async start(){var s;this.state="downloading";const e={};this.rangeStart!=null&&(e.Range=`bytes=${this.rangeStart}-${this.rangeEnd}`),this.chunkIndex!=null&&(e["X-Store-Chunk-Index"]=String(this.chunkIndex),this._parentFile&&(e["X-Store-Num-Chunks"]=String(this._parentFile.totalChunks),e["X-Store-Chunk-Size"]=String(this._parentFile.options.chunkSize||104857600))),this.fileInfo.md5&&(e["X-Store-MD5"]=this.fileInfo.md5),this.fileInfo.updateInterval&&(e["X-Cache-TTL"]=String(this.fileInfo.updateInterval)),this.fileInfo.cmsDownloadUrl&&(e["X-Cms-Download-Url"]=this.fileInfo.cmsDownloadUrl);const t=this._typeConfig.maxRetries;for(let n=1;n<=t;n++){const i=new AbortController,r=setTimeout(()=>i.abort(),b);try{const a=this.getUrl(),h={signal:i.signal};Object.keys(e).length>0&&(h.headers=e);const o=await fetch(a,h);if(!o.ok&&o.status!==206)throw new Error(`Fetch failed: ${o.status}`);return this.blob=await o.blob(),this.state="complete",this.blob}catch(a){const h=i.signal.aborted?`Timeout after ${b/1e3}s`:a.message;if(n<t){const o=((s=this._typeConfig.retryDelays)==null?void 0:s[n-1])??this._typeConfig.retryDelayMs*n,u=this.chunkIndex!=null?` chunk ${this.chunkIndex}`:"";l.warn(`[DownloadTask] ${this.fileInfo.type}/${this.fileInfo.id}${u} attempt ${n}/${t} failed: ${h}. Retrying in ${o/1e3}s...`),await new Promise(p=>setTimeout(p,o))}else throw this.state="failed",i.signal.aborted?new Error(h):a}finally{clearTimeout(r)}}}}class E{constructor(e,t={}){this.fileInfo=e,this.options=t,this.state="pending",this.tasks=[],this.completedChunks=0,this.totalChunks=0,this.totalBytes=0,this.downloadedBytes=0,this.onChunkDownloaded=null,this.skipChunks=e.skipChunks||new Set,this._contentType="application/octet-stream",this._chunkBlobs=new Map,this._runningCount=0,this._resolve=null,this._reject=null,this._promise=new Promise((s,n)=>{this._resolve=s,this._reject=n}),this._promise.catch(()=>{})}getUrl(){const e=this.fileInfo.path;if(S(e))throw new Error(`URL expired for ${this.fileInfo.type}/${this.fileInfo.id} — waiting for fresh URL from next collection cycle`);return e}wait(){return this._promise}async prepare(e){try{this.state="preparing";const{id:t,type:s,size:n}=this.fileInfo;l.info("[FileDownload] Starting:",`${s}/${t}`),this.totalBytes=n&&n>0?parseInt(n):0,this._contentType=U(this.fileInfo);const i=v(this.fileInfo.type).skipHead;if(this.totalBytes===0&&!i){const a=this.getUrl(),h=new AbortController,o=setTimeout(()=>h.abort(),L);try{const u=await fetch(a,{method:"HEAD",signal:h.signal});u.ok&&(this.totalBytes=parseInt(u.headers.get("Content-Length")||"0"),this._contentType=u.headers.get("Content-Type")||this._contentType)}finally{clearTimeout(o)}}l.info("[FileDownload] File size:",(this.totalBytes/1024/1024).toFixed(1),"MB");const r=this.options.chunkSize||F;if(this.totalBytes>Q){const a=[];for(let c=0;c<this.totalBytes;c+=r)a.push({start:c,end:Math.min(c+r-1,this.totalBytes-1),index:a.length});this.totalChunks=a.length;const h=a.filter(c=>!this.skipChunks.has(c.index)),o=a.length-h.length;for(const c of a)this.skipChunks.has(c.index)&&(this.downloadedBytes+=c.end-c.start+1);if(h.length===0){l.info("[FileDownload] All chunks already cached, nothing to download"),this.state="complete",this._resolve(new Blob([],{type:this._contentType}));return}o>0&&l.info(`[FileDownload] Resuming: ${o} chunks cached, ${h.length} to download`);const u=o>0;if(u){const c=h.sort((g,m)=>g.index-m.index);for(const g of c){const m=new x(this.fileInfo,{chunkIndex:g.index,rangeStart:g.start,rangeEnd:g.end});m._parentFile=this,m._priority=f.normal,this.tasks.push(m)}}else for(const c of h){const g=new x(this.fileInfo,{chunkIndex:c.index,rangeStart:c.start,rangeEnd:c.end});g._parentFile=this,g._priority=c.index===0||c.index===a.length-1?f.high:f.normal,this.tasks.push(g)}const p=this.tasks.filter(c=>c._priority>=f.high).length;l.info(`[FileDownload] ${s}/${t}: ${this.tasks.length} chunks`+(p>0?` (${p} priority)`:"")+(u?" (resume)":""))}else{this.totalChunks=1;const a=new x(this.fileInfo,{});a._parentFile=this,this.tasks.push(a)}e.enqueueChunkTasks(this.tasks),this.state="downloading"}catch(t){l.error("[FileDownload] Prepare failed:",`${this.fileInfo.type}/${this.fileInfo.id}`,t),this.state="failed",this._reject(t)}}async onTaskComplete(e){if(this.completedChunks++,this.downloadedBytes+=e.blob.size,e.chunkIndex!=null&&this._chunkBlobs.set(e.chunkIndex,e.blob),this.options.onProgress&&this.options.onProgress(this.downloadedBytes,this.totalBytes),this.onChunkDownloaded&&e.chunkIndex!=null)try{await this.onChunkDownloaded(e.chunkIndex,e.blob,this.totalChunks)}catch(t){l.warn("[FileDownload] onChunkDownloaded callback error:",t)}if(this.completedChunks===this.tasks.length&&this.state!=="complete"){this.state="complete";const{type:t,id:s}=this.fileInfo;if(e.chunkIndex==null)l.info("[FileDownload] Complete:",`${t}/${s}`,`(${e.blob.size} bytes)`),this._resolve(e.blob);else if(this.onChunkDownloaded)l.info("[FileDownload] Complete:",`${t}/${s}`,`(progressive, ${this.totalChunks} chunks)`),this._resolve(new Blob([],{type:this._contentType}));else{const n=[];for(let r=0;r<this.totalChunks;r++){const a=this._chunkBlobs.get(r);a&&n.push(a)}const i=new Blob(n,{type:this._contentType});l.info("[FileDownload] Complete:",`${t}/${s}`,`(${i.size} bytes, reassembled)`),this._resolve(i)}this._chunkBlobs.clear()}}onTaskFailed(e,t){var s;if(!(this.state==="complete"||this.state==="failed")){if((s=t.message)!=null&&s.includes("URL expired")){const n=e.chunkIndex!=null?` chunk ${e.chunkIndex}`:"";l.warn(`[FileDownload] URL expired, dropping${n}:`,`${this.fileInfo.type}/${this.fileInfo.id}`),this.tasks=this.tasks.filter(i=>i!==e),(this.tasks.length===0||this.completedChunks>=this.tasks.length)&&(this.state="complete",this._urlExpired=!0,this._resolve(new Blob([],{type:this._contentType})));return}l.error("[FileDownload] Failed:",`${this.fileInfo.type}/${this.fileInfo.id}`,t),this.state="failed",this._reject(t)}}}class K{constructor(e){this.queue=e,this._filesToPrepare=[],this._tasks=[],this._maxPreparing=2}addFile(e){const t=q.stableKey(e);if(this.queue.active.has(t)){const n=this.queue.active.get(t);if(e.path&&e.path!==n.fileInfo.path){const i=k(n.fileInfo.path);k(e.path)>i&&(n.fileInfo.path=e.path)}return n}const s=new E(e,{chunkSize:this.queue.chunkSize,calculateMD5:this.queue.calculateMD5,onProgress:this.queue.onProgress});return this.queue.active.set(t,s),this._filesToPrepare.push(s),s}enqueueChunkTasks(e){this._tasks.push(...e)}async build(){return await this._prepareAll(),this._sortWithBarriers()}async _prepareAll(){await new Promise(e=>{let t=0,s=0;const n=()=>{for(;t<this._maxPreparing&&s<this._filesToPrepare.length;){const i=this._filesToPrepare[s++];t++,i.prepare(this).finally(()=>{t--,s>=this._filesToPrepare.length&&t===0?e():n()})}};this._filesToPrepare.length===0?e():n()})}_sortWithBarriers(){var r;const e=[],t=[],s=[],n=[];for(const a of this._tasks)if(a.chunkIndex==null)e.push(a);else if(a.chunkIndex===0)t.push(a);else{const h=((r=a._parentFile)==null?void 0:r.totalChunks)||0;h>1&&a.chunkIndex===h-1?s.push(a):n.push(a)}e.sort((a,h)=>{var o,u;return(((o=a._parentFile)==null?void 0:o.totalBytes)||0)-(((u=h._parentFile)==null?void 0:u.totalBytes)||0)}),n.sort((a,h)=>a.chunkIndex-h.chunkIndex);const i=[...e,...t,...s];return n.length>0&&i.push(_,...n),i}}class q{constructor(e={}){this.concurrency=e.concurrency||A,this.chunkSize=e.chunkSize||F,this.maxChunksPerFile=e.chunksPerFile||M,this.calculateMD5=e.calculateMD5,this.onProgress=e.onProgress,this.queue=[],this.active=new Map,this._activeTasks=[],this.running=0,this._prepareQueue=[],this._preparingCount=0,this._maxPreparing=2,this.paused=!1,this._reenqueueTimers=new Set}static stableKey(e){return`${e.type}/${e.id}`}enqueue(e){const t=q.stableKey(e);if(this.active.has(t)){const n=this.active.get(t);if(e.path&&e.path!==n.fileInfo.path){const i=k(n.fileInfo.path);k(e.path)>i&&(l.info("[DownloadQueue] Refreshing URL for",t),n.fileInfo.path=e.path)}return n}const s=new E(e,{chunkSize:this.chunkSize,calculateMD5:this.calculateMD5,onProgress:this.onProgress});return this.active.set(t,s),l.info("[DownloadQueue] Enqueued:",t),this._schedulePrepare(s),s}_schedulePrepare(e){this._prepareQueue.push(e),this._processPrepareQueue()}_processPrepareQueue(){for(;this._preparingCount<this._maxPreparing&&this._prepareQueue.length>0;){const e=this._prepareQueue.shift();this._preparingCount++,e.prepare(this).finally(()=>{this._preparingCount--,this._processPrepareQueue()})}}enqueueChunkTasks(e){for(const t of e)this.queue.push(t);this._sortQueue(),l.info(`[DownloadQueue] ${e.length} tasks added (${this.queue.length} pending, ${this.running} active)`),this.processQueue()}enqueueOrderedTasks(e){let t=0,s=0;for(const n of e)n===_?(this.queue.push(_),s++):(this.queue.push(n),t++);l.info(`[DownloadQueue] Ordered queue: ${t} tasks, ${s} barriers (${this.queue.length} pending, ${this.running} active)`),this.processQueue()}_sortQueue(){this.queue.sort((e,t)=>t._priority-e._priority)}prioritize(e,t){const s=`${e}/${t}`,n=this.active.get(s);if(!n)return l.info("[DownloadQueue] Not found:",s),!1;let i=0;for(const r of this.queue)r._parentFile===n&&r._priority<f.high&&(r._priority=f.high,i++);return this._sortQueue(),l.info("[DownloadQueue] Prioritized:",s,`(${i} tasks boosted)`),!0}prioritizeLayoutFiles(e,t=f.high){var i,r,a,h;const s=new Set(e.map(String));let n=0;for(const o of this.queue){const u=((i=o._parentFile)==null?void 0:i.fileInfo.saveAs)||String((r=o._parentFile)==null?void 0:r.fileInfo.id);s.has(u)&&o._priority<t&&(o._priority=t,n++)}for(const o of this._activeTasks){const u=((a=o._parentFile)==null?void 0:a.fileInfo.saveAs)||String((h=o._parentFile)==null?void 0:h.fileInfo.id);s.has(u)&&o._priority<t&&(o._priority=t)}this._sortQueue(),l.info("[DownloadQueue] Layout files prioritized:",s.size,"files,",n,"tasks boosted to",t)}urgentChunk(e,t,s){const n=`${e}/${t}`,i=this.active.get(n);if(!i)return l.info("[DownloadQueue] urgentChunk: file not active:",n,"chunk",s),!1;if(this._activeTasks.some(o=>o._parentFile===i&&o.chunkIndex===s&&o.state==="downloading")){const o=this._activeTasks.find(u=>u._parentFile===i&&u.chunkIndex===s);return o&&o._priority<f.urgent?(o._priority=f.urgent,l.info(`[DownloadQueue] URGENT: ${n} chunk ${s} (already in-flight, limiting slots)`),!0):(l.info("[DownloadQueue] urgentChunk: already urgent:",n,"chunk",s),!1)}const a=this.queue.findIndex(o=>o!==_&&o._parentFile===i&&o.chunkIndex===s);if(a===-1)return l.info("[DownloadQueue] urgentChunk: chunk not in queue:",n,"chunk",s),!1;const h=this.queue.splice(a,1)[0];return h._priority=f.urgent,this.queue.unshift(h),l.info(`[DownloadQueue] URGENT: ${n} chunk ${s} (moved to front)`),this.processQueue(),!0}processQueue(){var n;if(this.paused)return;const e=this.queue.some(i=>i!==_&&i._priority>=f.urgent)||((n=this._activeTasks)==null?void 0:n.some(i=>i._priority>=f.urgent&&i.state==="downloading")),t=e?z:this.concurrency,s=e?f.urgent:0;for(;this.running<t&&this.queue.length>0;){const i=this.queue[0];if(i===_){if(this.running>0)break;this.queue.shift();continue}if(i._priority<s||!this._canStartTask(i)){let r=!1;for(let a=1;a<this.queue.length&&this.queue[a]!==_;a++){const h=this.queue[a];if(h._priority>=s&&this._canStartTask(h)){this.queue.splice(a,1),this._startTask(h),r=!0;break}}if(!r)break;continue}this.queue.shift(),this._startTask(i)}this.queue.length===0&&this.running===0&&l.info("[DownloadQueue] All downloads complete")}_canStartTask(e){return e._parentFile._runningCount<this.maxChunksPerFile}_startTask(e){this.running++,e._parentFile._runningCount++,this._activeTasks.push(e);const t=`${e.fileInfo.type}/${e.fileInfo.id}`,s=e.chunkIndex!=null?` chunk ${e.chunkIndex}`:"";l.info(`[DownloadQueue] Starting: ${t}${s} (${this.running}/${this.concurrency} active)`),e.start().then(()=>(this.running--,e._parentFile._runningCount--,this._activeTasks=this._activeTasks.filter(n=>n!==e),l.info(`[DownloadQueue] Fetched: ${t}${s} (${this.running} active, ${this.queue.length} pending)`),this.processQueue(),e._parentFile.onTaskComplete(e))).catch(n=>{this.running--,e._parentFile._runningCount--,this._activeTasks=this._activeTasks.filter(a=>a!==e);const{maxReenqueues:i,reenqueueDelayMs:r}=e._typeConfig;if(i>0){if(e._reenqueueCount=(e._reenqueueCount||0)+1,e._reenqueueCount>i){l.error(`[DownloadQueue] ${t} exceeded ${i} re-enqueues, failing permanently`),this.processQueue(),e._parentFile.onTaskFailed(e,n);return}l.warn(`[DownloadQueue] ${t} failed all retries (attempt ${e._reenqueueCount}/${i}), scheduling re-enqueue in ${r/1e3}s`);const a=setTimeout(()=>{this._reenqueueTimers.delete(a),e.state="pending",e._parentFile.state="downloading",this.queue.push(e),l.info(`[DownloadQueue] ${t} re-enqueued for retry`),this.processQueue()},r);this._reenqueueTimers.add(a),this.processQueue();return}this.processQueue(),e._parentFile.onTaskFailed(e,n)})}awaitAllPrepared(){return new Promise(e=>{const t=()=>{this._preparingCount===0&&this._prepareQueue.length===0?e():setTimeout(t,50)};t()})}removeCompleted(e){const t=this.active.get(e);t&&(t.state==="complete"||t.state==="failed")&&(this.queue=this.queue.filter(s=>s===_||s._parentFile!==t),this.active.delete(e))}getTask(e){return this.active.get(e)||null}getProgress(){const e={};for(const[t,s]of this.active.entries())s.state==="complete"||s.state==="failed"||(e[t]={downloaded:s.downloadedBytes,total:s.totalBytes,percent:s.totalBytes>0?(s.downloadedBytes/s.totalBytes*100).toFixed(1):0,state:s.state});return e}clear(){this.queue=[],this.active.clear(),this.running=0,this._prepareQueue=[],this._preparingCount=0;for(const e of this._reenqueueTimers)clearTimeout(e);this._reenqueueTimers.clear()}}class X{constructor(e={}){this.queue=new q(e)}enqueue(e){return this.queue.enqueue(e)}enqueueForLayout(e){return this.queue.enqueue(e)}getTask(e){return this.queue.getTask(e)}getProgress(){return this.queue.getProgress()}prioritizeLayoutFiles(e,t){this.queue.prioritizeLayoutFiles(e,t),this.queue.processQueue()}urgentChunk(e,t,s){return this.queue.urgentChunk(e,t,s)}clear(){this.queue.clear()}}const y=$("CacheAnalyzer");function w(d){if(d===0)return"0 B";if(!Number.isFinite(d))return"∞";const e=["B","KB","MB","GB","TB"],t=Math.floor(Math.log(d)/Math.log(1024));return`${(d/Math.pow(1024,t)).toFixed(t>0?1:0)} ${e[t]}`}class Y{constructor(e,{threshold:t=80}={}){this.cache=e,this.threshold=t}async analyze(e){const t=await this.cache.list(),s=await this._getStorageEstimate(),n=new Set(e.map(o=>String(o.id))),i=[],r=[];for(const o of t)if(n.has(String(o.id)))i.push(o);else if(o.type==="widget"){const u=String(o.id).split("/")[0];n.has(u)?i.push(o):r.push(o)}else o.type==="static"?i.push(o):r.push(o);r.sort((o,u)=>(o.cachedAt||0)-(u.cachedAt||0));const a=r.reduce((o,u)=>o+(u.size||0),0),h={timestamp:Date.now(),storage:{usage:s.usage,quota:s.quota,percent:s.quota>0?Math.round(s.usage/s.quota*100):0},files:{required:i.length,orphaned:r.length,total:t.length},orphaned:r.map(o=>({id:o.id,type:o.type,size:o.size||0,cachedAt:o.cachedAt||0})),orphanedSize:a,evicted:[],threshold:this.threshold};if(y.info(`Storage: ${w(s.usage)} / ${w(s.quota)} (${h.storage.percent}%)`),y.info(`Cache: ${i.length} required, ${r.length} orphaned (${w(a)} reclaimable)`),r.length>0)for(const o of r){const u=Date.now()-(o.cachedAt||0),p=Math.floor(u/864e5),c=Math.floor(u%864e5/36e5),g=p>0?`${p}d ago`:`${c}h ago`;y.info(` Orphaned: ${o.type}/${o.id} (${w(o.size||0)}, cached ${g})`)}if(h.storage.percent>this.threshold&&r.length>0){y.warn(`Storage exceeds ${this.threshold}% threshold — evicting orphaned files`);const o=s.usage-s.quota*this.threshold/100;h.evicted=await this._evict(r,o)}else y.info(`No eviction needed (threshold: ${this.threshold}%)`);return h}async _getStorageEstimate(){var e;try{if(typeof navigator<"u"&&((e=navigator.storage)!=null&&e.estimate)){const{usage:t,quota:s}=await navigator.storage.estimate();return{usage:t||0,quota:s||1/0}}}catch(t){y.warn("Storage estimate unavailable:",t.message)}return{usage:0,quota:1/0}}async _evict(e,t){const s=[];let n=0;for(const i of e){if(n>=t)break;s.push(i),n+=i.size||0}if(s.length===0)return[];try{const i=s.map(r=>({type:r.type,id:r.id}));await this.cache.remove(i);for(const r of s)y.info(` Evicted: ${r.type}/${r.id} (${w(r.size||0)})`);y.info(`Evicted ${s.length} files, freed ${w(n)}`)}catch(i){return y.warn("Eviction failed:",i.message),[]}return s.map(i=>({id:i.id,type:i.type,size:i.size||0,cachedAt:i.cachedAt||0}))}}const I=$("Cache"),H=typeof window<"u"&&window.location.pathname.replace(/\/[^/]*$/,"").replace(/\/$/,"")||"/player/pwa";async function G(d,e,t,s){var u;const n=`${C}/widgets/${d}/${e}/${t}`,i=`<base href="${C}/media/file/">`;let r=s;s.includes("<base ")||(s.includes("<head>")?r=s.replace("<head>","<head>"+i):s.includes("<HEAD>")?r=s.replace("<HEAD>","<HEAD>"+i):r=i+s);const a="<style>img,video{object-position:center center}</style>";r.includes("object-position:center center")||(r.includes("</head>")?r=r.replace("</head>",a+"</head>"):r.includes("</HEAD>")&&(r=r.replace("</HEAD>",a+"</HEAD>"))),r=r.replace(/\[\[ViewPortWidth]]/g,"device-width"),r=r.replace(/https?:\/\/[^\s"')<]+\.m3u8\b/gi,p=>"/stream-proxy?url="+encodeURIComponent(p));const h=new RegExp(`https?://[^"'\\s)]+?(${C.replace(/\//g,"\\/")}/dependencies/[^"'\\s?)]+)(\\?[^"'\\s)]*)?`,"g");if(r=r.replace(h,(p,c)=>c),!r.includes("xiboICTargetId")){const p=`<script>var xiboICTargetId = '${t}';<\/script>`;r.includes(i)?r=r.replace(i,i+p):r.includes("<head>")?r=r.replace("<head>","<head>"+p):r=p+r}return r=r.replace(/hostAddress\s*:\s*["']https?:\/\/[^"']+["']/g,`hostAddress: "${H}/ic"`),I.info("Injected base tag in widget HTML"),(u=(await fetch(`/store${C}/widgets/${d}/${e}/${t}`,{method:"PUT",headers:{"Content-Type":"text/html; charset=utf-8"},body:r})).body)==null||u.cancel(),I.info(`Stored widget HTML at ${n} (${r.length} bytes)`),n}export{_ as B,Y as C,X as D,D as F,K as L,O as S,R as a,E as b,G as c,N as d,v as g,S as i};
|
|
2
|
-
//# sourceMappingURL=widget-html-
|
|
1
|
+
import{createLogger as $,PLAYER_API as C}from"./index-B57dvLVB.js";const P=$("Cache"),B=typeof window<"u"&&window.location.pathname.replace(/\/[^/]*$/,"").replace(/\/$/,"")||"/player/pwa";class R{constructor(){this.dependants=new Map}getCacheKey(e,t,s=null){return`${B}/cache/${e}/${s||t}`}addDependant(e,t){const s=String(e);this.dependants.has(s)||this.dependants.set(s,new Set),this.dependants.get(s).add(String(t))}removeLayoutDependants(e){const t=String(e),s=[];for(const[n,i]of this.dependants)i.delete(t),i.size===0&&(this.dependants.delete(n),s.push(n));return s.length>0&&P.info(`${s.length} media files orphaned after layout ${e} removed:`,s),s}isMediaReferenced(e){const t=this.dependants.get(String(e));return t?t.size>0:!1}async clearAll(){this.dependants.clear()}}const N=new R,T=$("StoreClient");class O{async has(e,t){try{return(await fetch(`/store/${e}/${t}`,{method:"HEAD"})).ok}catch{return!1}}async get(e,t){var s;try{const n=await fetch(`/store/${e}/${t}`);if(!n.ok){if((s=n.body)==null||s.cancel(),n.status===404)return null;throw new Error(`Failed to get file: ${n.status}`)}return await n.blob()}catch(n){return T.error("get error:",n.message),null}}async put(e,t,s,n="application/octet-stream"){var i;try{const r=await fetch(`/store/${e}/${t}`,{method:"PUT",headers:{"Content-Type":n},body:s});return(i=r.body)==null||i.cancel(),r.ok}catch(r){return T.error("put error:",r.message),!1}}async remove(e){try{const s=await(await fetch("/store/delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({files:e})})).json();return{deleted:s.deleted||0,total:s.total||e.length}}catch(t){return T.error("remove error:",t.message),{deleted:0,total:e.length}}}async list(){try{return(await(await fetch("/store/list")).json()).files||[]}catch(e){return T.error("list error:",e.message),[]}}}const D={media:{maxRetries:3,retryDelayMs:500,retryDelays:null,maxReenqueues:0,reenqueueDelayMs:0,skipHead:!1,cacheTtl:1/0},layout:{maxRetries:3,retryDelayMs:500,retryDelays:null,maxReenqueues:0,reenqueueDelayMs:0,skipHead:!1,cacheTtl:1/0},dataset:{maxRetries:4,retryDelayMs:0,retryDelays:[15e3,3e4,6e4,12e4],maxReenqueues:5,reenqueueDelayMs:6e4,skipHead:!0,cacheTtl:300},static:{maxRetries:3,retryDelayMs:500,retryDelays:null,maxReenqueues:0,reenqueueDelayMs:0,skipHead:!1,cacheTtl:1/0}};function v(d){return D[d]||D.media}const l=$("Download"),A=6,F=50*1024*1024,M=3,Q=100*1024*1024,z=2,b=6e5,L=15e3;function U(d){var n,i;const t=(i=(n=(d.path||d.code||"").split(".").pop())==null?void 0:n.split("?")[0])==null?void 0:i.toLowerCase();return{mp4:"video/mp4",webm:"video/webm",mp3:"audio/mpeg",png:"image/png",jpg:"image/jpeg",jpeg:"image/jpeg",gif:"image/gif",svg:"image/svg+xml",webp:"image/webp",css:"text/css",js:"application/javascript",ttf:"font/ttf",otf:"font/otf",woff:"font/woff",woff2:"font/woff2",xml:"application/xml",xlf:"application/xml"}[t]||"application/octet-stream"}const f={normal:0,layout:1,high:2,urgent:3},_=Symbol("BARRIER");function k(d){try{const e=d.match(/X-Amz-Expires=(\d+)/);return e?parseInt(e[1],10):1/0}catch{return 1/0}}function S(d,e=30){const t=k(d);return t===1/0?!1:Date.now()/1e3>=t-e}class x{constructor(e,t={}){this.fileInfo=e,this.chunkIndex=t.chunkIndex??null,this.rangeStart=t.rangeStart??null,this.rangeEnd=t.rangeEnd??null,this.state="pending",this.blob=null,this._parentFile=null,this._priority=f.normal,this._typeConfig=v(e.type)}getUrl(){const e=this.fileInfo.path;if(S(e))throw new Error(`URL expired for ${this.fileInfo.type}/${this.fileInfo.id} — waiting for fresh URL from next collection cycle`);return e}async start(){var s;this.state="downloading";const e={};this.rangeStart!=null&&(e.Range=`bytes=${this.rangeStart}-${this.rangeEnd}`),this.chunkIndex!=null&&(e["X-Store-Chunk-Index"]=String(this.chunkIndex),this._parentFile&&(e["X-Store-Num-Chunks"]=String(this._parentFile.totalChunks),e["X-Store-Chunk-Size"]=String(this._parentFile.options.chunkSize||104857600))),this.fileInfo.md5&&(e["X-Store-MD5"]=this.fileInfo.md5),this.fileInfo.updateInterval&&(e["X-Cache-TTL"]=String(this.fileInfo.updateInterval)),this.fileInfo.cmsDownloadUrl&&(e["X-Cms-Download-Url"]=this.fileInfo.cmsDownloadUrl);const t=this._typeConfig.maxRetries;for(let n=1;n<=t;n++){const i=new AbortController,r=setTimeout(()=>i.abort(),b);try{const a=this.getUrl(),h={signal:i.signal};Object.keys(e).length>0&&(h.headers=e);const o=await fetch(a,h);if(!o.ok&&o.status!==206)throw new Error(`Fetch failed: ${o.status}`);return this.blob=await o.blob(),this.state="complete",this.blob}catch(a){const h=i.signal.aborted?`Timeout after ${b/1e3}s`:a.message;if(n<t){const o=((s=this._typeConfig.retryDelays)==null?void 0:s[n-1])??this._typeConfig.retryDelayMs*n,u=this.chunkIndex!=null?` chunk ${this.chunkIndex}`:"";l.warn(`[DownloadTask] ${this.fileInfo.type}/${this.fileInfo.id}${u} attempt ${n}/${t} failed: ${h}. Retrying in ${o/1e3}s...`),await new Promise(p=>setTimeout(p,o))}else throw this.state="failed",i.signal.aborted?new Error(h):a}finally{clearTimeout(r)}}}}class E{constructor(e,t={}){this.fileInfo=e,this.options=t,this.state="pending",this.tasks=[],this.completedChunks=0,this.totalChunks=0,this.totalBytes=0,this.downloadedBytes=0,this.onChunkDownloaded=null,this.skipChunks=e.skipChunks||new Set,this._contentType="application/octet-stream",this._chunkBlobs=new Map,this._runningCount=0,this._resolve=null,this._reject=null,this._promise=new Promise((s,n)=>{this._resolve=s,this._reject=n}),this._promise.catch(()=>{})}getUrl(){const e=this.fileInfo.path;if(S(e))throw new Error(`URL expired for ${this.fileInfo.type}/${this.fileInfo.id} — waiting for fresh URL from next collection cycle`);return e}wait(){return this._promise}async prepare(e){try{this.state="preparing";const{id:t,type:s,size:n}=this.fileInfo;l.info("[FileDownload] Starting:",`${s}/${t}`),this.totalBytes=n&&n>0?parseInt(n):0,this._contentType=U(this.fileInfo);const i=v(this.fileInfo.type).skipHead;if(this.totalBytes===0&&!i){const a=this.getUrl(),h=new AbortController,o=setTimeout(()=>h.abort(),L);try{const u=await fetch(a,{method:"HEAD",signal:h.signal});u.ok&&(this.totalBytes=parseInt(u.headers.get("Content-Length")||"0"),this._contentType=u.headers.get("Content-Type")||this._contentType)}finally{clearTimeout(o)}}l.info("[FileDownload] File size:",(this.totalBytes/1024/1024).toFixed(1),"MB");const r=this.options.chunkSize||F;if(this.totalBytes>Q){const a=[];for(let c=0;c<this.totalBytes;c+=r)a.push({start:c,end:Math.min(c+r-1,this.totalBytes-1),index:a.length});this.totalChunks=a.length;const h=a.filter(c=>!this.skipChunks.has(c.index)),o=a.length-h.length;for(const c of a)this.skipChunks.has(c.index)&&(this.downloadedBytes+=c.end-c.start+1);if(h.length===0){l.info("[FileDownload] All chunks already cached, nothing to download"),this.state="complete",this._resolve(new Blob([],{type:this._contentType}));return}o>0&&l.info(`[FileDownload] Resuming: ${o} chunks cached, ${h.length} to download`);const u=o>0;if(u){const c=h.sort((g,m)=>g.index-m.index);for(const g of c){const m=new x(this.fileInfo,{chunkIndex:g.index,rangeStart:g.start,rangeEnd:g.end});m._parentFile=this,m._priority=f.normal,this.tasks.push(m)}}else for(const c of h){const g=new x(this.fileInfo,{chunkIndex:c.index,rangeStart:c.start,rangeEnd:c.end});g._parentFile=this,g._priority=c.index===0||c.index===a.length-1?f.high:f.normal,this.tasks.push(g)}const p=this.tasks.filter(c=>c._priority>=f.high).length;l.info(`[FileDownload] ${s}/${t}: ${this.tasks.length} chunks`+(p>0?` (${p} priority)`:"")+(u?" (resume)":""))}else{this.totalChunks=1;const a=new x(this.fileInfo,{});a._parentFile=this,this.tasks.push(a)}e.enqueueChunkTasks(this.tasks),this.state="downloading"}catch(t){l.error("[FileDownload] Prepare failed:",`${this.fileInfo.type}/${this.fileInfo.id}`,t),this.state="failed",this._reject(t)}}async onTaskComplete(e){if(this.completedChunks++,this.downloadedBytes+=e.blob.size,e.chunkIndex!=null&&this._chunkBlobs.set(e.chunkIndex,e.blob),this.options.onProgress&&this.options.onProgress(this.downloadedBytes,this.totalBytes),this.onChunkDownloaded&&e.chunkIndex!=null)try{await this.onChunkDownloaded(e.chunkIndex,e.blob,this.totalChunks)}catch(t){l.warn("[FileDownload] onChunkDownloaded callback error:",t)}if(this.completedChunks===this.tasks.length&&this.state!=="complete"){this.state="complete";const{type:t,id:s}=this.fileInfo;if(e.chunkIndex==null)l.info("[FileDownload] Complete:",`${t}/${s}`,`(${e.blob.size} bytes)`),this._resolve(e.blob);else if(this.onChunkDownloaded)l.info("[FileDownload] Complete:",`${t}/${s}`,`(progressive, ${this.totalChunks} chunks)`),this._resolve(new Blob([],{type:this._contentType}));else{const n=[];for(let r=0;r<this.totalChunks;r++){const a=this._chunkBlobs.get(r);a&&n.push(a)}const i=new Blob(n,{type:this._contentType});l.info("[FileDownload] Complete:",`${t}/${s}`,`(${i.size} bytes, reassembled)`),this._resolve(i)}this._chunkBlobs.clear()}}onTaskFailed(e,t){var s;if(!(this.state==="complete"||this.state==="failed")){if((s=t.message)!=null&&s.includes("URL expired")){const n=e.chunkIndex!=null?` chunk ${e.chunkIndex}`:"";l.warn(`[FileDownload] URL expired, dropping${n}:`,`${this.fileInfo.type}/${this.fileInfo.id}`),this.tasks=this.tasks.filter(i=>i!==e),(this.tasks.length===0||this.completedChunks>=this.tasks.length)&&(this.state="complete",this._urlExpired=!0,this._resolve(new Blob([],{type:this._contentType})));return}l.error("[FileDownload] Failed:",`${this.fileInfo.type}/${this.fileInfo.id}`,t),this.state="failed",this._reject(t)}}}class K{constructor(e){this.queue=e,this._filesToPrepare=[],this._tasks=[],this._maxPreparing=2}addFile(e){const t=q.stableKey(e);if(this.queue.active.has(t)){const n=this.queue.active.get(t);if(e.path&&e.path!==n.fileInfo.path){const i=k(n.fileInfo.path);k(e.path)>i&&(n.fileInfo.path=e.path)}return n}const s=new E(e,{chunkSize:this.queue.chunkSize,calculateMD5:this.queue.calculateMD5,onProgress:this.queue.onProgress});return this.queue.active.set(t,s),this._filesToPrepare.push(s),s}enqueueChunkTasks(e){this._tasks.push(...e)}async build(){return await this._prepareAll(),this._sortWithBarriers()}async _prepareAll(){await new Promise(e=>{let t=0,s=0;const n=()=>{for(;t<this._maxPreparing&&s<this._filesToPrepare.length;){const i=this._filesToPrepare[s++];t++,i.prepare(this).finally(()=>{t--,s>=this._filesToPrepare.length&&t===0?e():n()})}};this._filesToPrepare.length===0?e():n()})}_sortWithBarriers(){var r;const e=[],t=[],s=[],n=[];for(const a of this._tasks)if(a.chunkIndex==null)e.push(a);else if(a.chunkIndex===0)t.push(a);else{const h=((r=a._parentFile)==null?void 0:r.totalChunks)||0;h>1&&a.chunkIndex===h-1?s.push(a):n.push(a)}e.sort((a,h)=>{var o,u;return(((o=a._parentFile)==null?void 0:o.totalBytes)||0)-(((u=h._parentFile)==null?void 0:u.totalBytes)||0)}),n.sort((a,h)=>a.chunkIndex-h.chunkIndex);const i=[...e,...t,...s];return n.length>0&&i.push(_,...n),i}}class q{constructor(e={}){this.concurrency=e.concurrency||A,this.chunkSize=e.chunkSize||F,this.maxChunksPerFile=e.chunksPerFile||M,this.calculateMD5=e.calculateMD5,this.onProgress=e.onProgress,this.queue=[],this.active=new Map,this._activeTasks=[],this.running=0,this._prepareQueue=[],this._preparingCount=0,this._maxPreparing=2,this.paused=!1,this._reenqueueTimers=new Set}static stableKey(e){return`${e.type}/${e.id}`}enqueue(e){const t=q.stableKey(e);if(this.active.has(t)){const n=this.active.get(t);if(e.path&&e.path!==n.fileInfo.path){const i=k(n.fileInfo.path);k(e.path)>i&&(l.info("[DownloadQueue] Refreshing URL for",t),n.fileInfo.path=e.path)}return n}const s=new E(e,{chunkSize:this.chunkSize,calculateMD5:this.calculateMD5,onProgress:this.onProgress});return this.active.set(t,s),l.info("[DownloadQueue] Enqueued:",t),this._schedulePrepare(s),s}_schedulePrepare(e){this._prepareQueue.push(e),this._processPrepareQueue()}_processPrepareQueue(){for(;this._preparingCount<this._maxPreparing&&this._prepareQueue.length>0;){const e=this._prepareQueue.shift();this._preparingCount++,e.prepare(this).finally(()=>{this._preparingCount--,this._processPrepareQueue()})}}enqueueChunkTasks(e){for(const t of e)this.queue.push(t);this._sortQueue(),l.info(`[DownloadQueue] ${e.length} tasks added (${this.queue.length} pending, ${this.running} active)`),this.processQueue()}enqueueOrderedTasks(e){let t=0,s=0;for(const n of e)n===_?(this.queue.push(_),s++):(this.queue.push(n),t++);l.info(`[DownloadQueue] Ordered queue: ${t} tasks, ${s} barriers (${this.queue.length} pending, ${this.running} active)`),this.processQueue()}_sortQueue(){this.queue.sort((e,t)=>t._priority-e._priority)}prioritize(e,t){const s=`${e}/${t}`,n=this.active.get(s);if(!n)return l.info("[DownloadQueue] Not found:",s),!1;let i=0;for(const r of this.queue)r._parentFile===n&&r._priority<f.high&&(r._priority=f.high,i++);return this._sortQueue(),l.info("[DownloadQueue] Prioritized:",s,`(${i} tasks boosted)`),!0}prioritizeLayoutFiles(e,t=f.high){var i,r,a,h;const s=new Set(e.map(String));let n=0;for(const o of this.queue){const u=((i=o._parentFile)==null?void 0:i.fileInfo.saveAs)||String((r=o._parentFile)==null?void 0:r.fileInfo.id);s.has(u)&&o._priority<t&&(o._priority=t,n++)}for(const o of this._activeTasks){const u=((a=o._parentFile)==null?void 0:a.fileInfo.saveAs)||String((h=o._parentFile)==null?void 0:h.fileInfo.id);s.has(u)&&o._priority<t&&(o._priority=t)}this._sortQueue(),l.info("[DownloadQueue] Layout files prioritized:",s.size,"files,",n,"tasks boosted to",t)}urgentChunk(e,t,s){const n=`${e}/${t}`,i=this.active.get(n);if(!i)return l.info("[DownloadQueue] urgentChunk: file not active:",n,"chunk",s),!1;if(this._activeTasks.some(o=>o._parentFile===i&&o.chunkIndex===s&&o.state==="downloading")){const o=this._activeTasks.find(u=>u._parentFile===i&&u.chunkIndex===s);return o&&o._priority<f.urgent?(o._priority=f.urgent,l.info(`[DownloadQueue] URGENT: ${n} chunk ${s} (already in-flight, limiting slots)`),!0):(l.info("[DownloadQueue] urgentChunk: already urgent:",n,"chunk",s),!1)}const a=this.queue.findIndex(o=>o!==_&&o._parentFile===i&&o.chunkIndex===s);if(a===-1)return l.info("[DownloadQueue] urgentChunk: chunk not in queue:",n,"chunk",s),!1;const h=this.queue.splice(a,1)[0];return h._priority=f.urgent,this.queue.unshift(h),l.info(`[DownloadQueue] URGENT: ${n} chunk ${s} (moved to front)`),this.processQueue(),!0}processQueue(){var n;if(this.paused)return;const e=this.queue.some(i=>i!==_&&i._priority>=f.urgent)||((n=this._activeTasks)==null?void 0:n.some(i=>i._priority>=f.urgent&&i.state==="downloading")),t=e?z:this.concurrency,s=e?f.urgent:0;for(;this.running<t&&this.queue.length>0;){const i=this.queue[0];if(i===_){if(this.running>0)break;this.queue.shift();continue}if(i._priority<s||!this._canStartTask(i)){let r=!1;for(let a=1;a<this.queue.length&&this.queue[a]!==_;a++){const h=this.queue[a];if(h._priority>=s&&this._canStartTask(h)){this.queue.splice(a,1),this._startTask(h),r=!0;break}}if(!r)break;continue}this.queue.shift(),this._startTask(i)}this.queue.length===0&&this.running===0&&l.info("[DownloadQueue] All downloads complete")}_canStartTask(e){return e._parentFile._runningCount<this.maxChunksPerFile}_startTask(e){this.running++,e._parentFile._runningCount++,this._activeTasks.push(e);const t=`${e.fileInfo.type}/${e.fileInfo.id}`,s=e.chunkIndex!=null?` chunk ${e.chunkIndex}`:"";l.info(`[DownloadQueue] Starting: ${t}${s} (${this.running}/${this.concurrency} active)`),e.start().then(()=>(this.running--,e._parentFile._runningCount--,this._activeTasks=this._activeTasks.filter(n=>n!==e),l.info(`[DownloadQueue] Fetched: ${t}${s} (${this.running} active, ${this.queue.length} pending)`),this.processQueue(),e._parentFile.onTaskComplete(e))).catch(n=>{this.running--,e._parentFile._runningCount--,this._activeTasks=this._activeTasks.filter(a=>a!==e);const{maxReenqueues:i,reenqueueDelayMs:r}=e._typeConfig;if(i>0){if(e._reenqueueCount=(e._reenqueueCount||0)+1,e._reenqueueCount>i){l.error(`[DownloadQueue] ${t} exceeded ${i} re-enqueues, failing permanently`),this.processQueue(),e._parentFile.onTaskFailed(e,n);return}l.warn(`[DownloadQueue] ${t} failed all retries (attempt ${e._reenqueueCount}/${i}), scheduling re-enqueue in ${r/1e3}s`);const a=setTimeout(()=>{this._reenqueueTimers.delete(a),e.state="pending",e._parentFile.state="downloading",this.queue.push(e),l.info(`[DownloadQueue] ${t} re-enqueued for retry`),this.processQueue()},r);this._reenqueueTimers.add(a),this.processQueue();return}this.processQueue(),e._parentFile.onTaskFailed(e,n)})}awaitAllPrepared(){return new Promise(e=>{const t=()=>{this._preparingCount===0&&this._prepareQueue.length===0?e():setTimeout(t,50)};t()})}removeCompleted(e){const t=this.active.get(e);t&&(t.state==="complete"||t.state==="failed")&&(this.queue=this.queue.filter(s=>s===_||s._parentFile!==t),this.active.delete(e))}getTask(e){return this.active.get(e)||null}getProgress(){const e={};for(const[t,s]of this.active.entries())s.state==="complete"||s.state==="failed"||(e[t]={downloaded:s.downloadedBytes,total:s.totalBytes,percent:s.totalBytes>0?(s.downloadedBytes/s.totalBytes*100).toFixed(1):0,state:s.state});return e}clear(){this.queue=[],this.active.clear(),this.running=0,this._prepareQueue=[],this._preparingCount=0;for(const e of this._reenqueueTimers)clearTimeout(e);this._reenqueueTimers.clear()}}class X{constructor(e={}){this.queue=new q(e)}enqueue(e){return this.queue.enqueue(e)}enqueueForLayout(e){return this.queue.enqueue(e)}getTask(e){return this.queue.getTask(e)}getProgress(){return this.queue.getProgress()}prioritizeLayoutFiles(e,t){this.queue.prioritizeLayoutFiles(e,t),this.queue.processQueue()}urgentChunk(e,t,s){return this.queue.urgentChunk(e,t,s)}clear(){this.queue.clear()}}const y=$("CacheAnalyzer");function w(d){if(d===0)return"0 B";if(!Number.isFinite(d))return"∞";const e=["B","KB","MB","GB","TB"],t=Math.floor(Math.log(d)/Math.log(1024));return`${(d/Math.pow(1024,t)).toFixed(t>0?1:0)} ${e[t]}`}class Y{constructor(e,{threshold:t=80}={}){this.cache=e,this.threshold=t}async analyze(e){const t=await this.cache.list(),s=await this._getStorageEstimate(),n=new Set(e.map(o=>String(o.id))),i=[],r=[];for(const o of t)if(n.has(String(o.id)))i.push(o);else if(o.type==="widget"){const u=String(o.id).split("/")[0];n.has(u)?i.push(o):r.push(o)}else o.type==="static"?i.push(o):r.push(o);r.sort((o,u)=>(o.cachedAt||0)-(u.cachedAt||0));const a=r.reduce((o,u)=>o+(u.size||0),0),h={timestamp:Date.now(),storage:{usage:s.usage,quota:s.quota,percent:s.quota>0?Math.round(s.usage/s.quota*100):0},files:{required:i.length,orphaned:r.length,total:t.length},orphaned:r.map(o=>({id:o.id,type:o.type,size:o.size||0,cachedAt:o.cachedAt||0})),orphanedSize:a,evicted:[],threshold:this.threshold};if(y.info(`Storage: ${w(s.usage)} / ${w(s.quota)} (${h.storage.percent}%)`),y.info(`Cache: ${i.length} required, ${r.length} orphaned (${w(a)} reclaimable)`),r.length>0)for(const o of r){const u=Date.now()-(o.cachedAt||0),p=Math.floor(u/864e5),c=Math.floor(u%864e5/36e5),g=p>0?`${p}d ago`:`${c}h ago`;y.info(` Orphaned: ${o.type}/${o.id} (${w(o.size||0)}, cached ${g})`)}if(h.storage.percent>this.threshold&&r.length>0){y.warn(`Storage exceeds ${this.threshold}% threshold — evicting orphaned files`);const o=s.usage-s.quota*this.threshold/100;h.evicted=await this._evict(r,o)}else y.info(`No eviction needed (threshold: ${this.threshold}%)`);return h}async _getStorageEstimate(){var e;try{if(typeof navigator<"u"&&((e=navigator.storage)!=null&&e.estimate)){const{usage:t,quota:s}=await navigator.storage.estimate();return{usage:t||0,quota:s||1/0}}}catch(t){y.warn("Storage estimate unavailable:",t.message)}return{usage:0,quota:1/0}}async _evict(e,t){const s=[];let n=0;for(const i of e){if(n>=t)break;s.push(i),n+=i.size||0}if(s.length===0)return[];try{const i=s.map(r=>({type:r.type,id:r.id}));await this.cache.remove(i);for(const r of s)y.info(` Evicted: ${r.type}/${r.id} (${w(r.size||0)})`);y.info(`Evicted ${s.length} files, freed ${w(n)}`)}catch(i){return y.warn("Eviction failed:",i.message),[]}return s.map(i=>({id:i.id,type:i.type,size:i.size||0,cachedAt:i.cachedAt||0}))}}const I=$("Cache"),H=typeof window<"u"&&window.location.pathname.replace(/\/[^/]*$/,"").replace(/\/$/,"")||"/player/pwa";async function G(d,e,t,s){var u;const n=`${C}/widgets/${d}/${e}/${t}`,i=`<base href="${C}/media/file/">`;let r=s;s.includes("<base ")||(s.includes("<head>")?r=s.replace("<head>","<head>"+i):s.includes("<HEAD>")?r=s.replace("<HEAD>","<HEAD>"+i):r=i+s);const a="<style>img,video{object-position:center center}</style>";r.includes("object-position:center center")||(r.includes("</head>")?r=r.replace("</head>",a+"</head>"):r.includes("</HEAD>")&&(r=r.replace("</HEAD>",a+"</HEAD>"))),r=r.replace(/\[\[ViewPortWidth]]/g,"device-width"),r=r.replace(/https?:\/\/[^\s"')<]+\.m3u8\b/gi,p=>"/stream-proxy?url="+encodeURIComponent(p));const h=new RegExp(`https?://[^"'\\s)]+?(${C.replace(/\//g,"\\/")}/dependencies/[^"'\\s?)]+)(\\?[^"'\\s)]*)?`,"g");if(r=r.replace(h,(p,c)=>c),!r.includes("xiboICTargetId")){const p=`<script>var xiboICTargetId = '${t}';<\/script>`;r.includes(i)?r=r.replace(i,i+p):r.includes("<head>")?r=r.replace("<head>","<head>"+p):r=p+r}return r=r.replace(/hostAddress\s*:\s*["']https?:\/\/[^"']+["']/g,`hostAddress: "${H}/ic"`),I.info("Injected base tag in widget HTML"),(u=(await fetch(`/store${C}/widgets/${d}/${e}/${t}`,{method:"PUT",headers:{"Content-Type":"text/html; charset=utf-8"},body:r})).body)==null||u.cancel(),I.info(`Stored widget HTML at ${n} (${r.length} bytes)`),n}export{_ as B,Y as C,X as D,D as F,K as L,O as S,R as a,E as b,G as c,N as d,v as g,S as i};
|
|
2
|
+
//# sourceMappingURL=widget-html-BSjCib6e.js.map
|