Split web and player build artifacts
This commit is contained in:
+124
-6
@@ -92,6 +92,20 @@ function resolveSnapshotUpstreamBaseUrl(player) {
|
||||
return normalizeProxyBaseUrl(player && player.public_base_url) || null;
|
||||
}
|
||||
|
||||
function resolvePlayerSocketForDeviceId(playerSockets, deviceId) {
|
||||
const normalizedDeviceId = normalizeDeviceId(deviceId);
|
||||
if (!normalizedDeviceId || !playerSockets || typeof playerSockets.get !== 'function') {
|
||||
return null;
|
||||
}
|
||||
|
||||
const socket = playerSockets.get(normalizedDeviceId);
|
||||
if (!socket || socket.readyState !== WebSocket.OPEN) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return socket;
|
||||
}
|
||||
|
||||
function resolveScreenCommandTargets(slug, playerSockets, screenPlayerDeviceIds) {
|
||||
const key = String(slug || '').trim();
|
||||
if (!key || !screenPlayerDeviceIds || typeof screenPlayerDeviceIds.get !== 'function' || !playerSockets || typeof playerSockets.get !== 'function') {
|
||||
@@ -369,8 +383,8 @@ async function start() {
|
||||
return relativePath;
|
||||
}
|
||||
|
||||
function sendPlayerCommand(commandPayload) {
|
||||
const socket = getConnectedPlayerSocket();
|
||||
function sendPlayerCommand(commandPayload, deviceId) {
|
||||
const socket = resolvePlayerSocketForDeviceId(playerSockets, deviceId);
|
||||
if (!socket) {
|
||||
return Promise.resolve({ ok: false, status: 503, error: 'Player is not connected.' });
|
||||
}
|
||||
@@ -513,15 +527,37 @@ async function start() {
|
||||
return res.status(400).json({ error: 'Filename is required' });
|
||||
}
|
||||
|
||||
const deviceId = normalizeDeviceId(req.query.deviceId || req.query.playerIdentifier || req.headers['x-pulse-player-device-id']);
|
||||
if (!deviceId) {
|
||||
return res.status(400).json({ error: 'Device ID is required.' });
|
||||
}
|
||||
|
||||
logBridge('Forwarding media upload to player', {
|
||||
deviceId: deviceId,
|
||||
relativePath: relativePath,
|
||||
contentLength: Buffer.isBuffer(req.body) ? req.body.length : 0
|
||||
});
|
||||
|
||||
const bodyBuffer = Buffer.isBuffer(req.body) ? req.body : Buffer.from(req.body || '');
|
||||
const response = await sendPlayerCommand({
|
||||
command: 'media-put',
|
||||
relativePath: relativePath,
|
||||
bodyBase64: bodyBuffer.toString('base64')
|
||||
}, deviceId);
|
||||
|
||||
logBridge('Player media upload completed', {
|
||||
deviceId: deviceId,
|
||||
relativePath: relativePath,
|
||||
ok: Boolean(response && response.ok),
|
||||
status: response && response.status ? response.status : null
|
||||
});
|
||||
|
||||
res.status(response.status || (response.ok ? 200 : 502)).json(response);
|
||||
} catch (error) {
|
||||
logBridge('Player media upload failed', {
|
||||
relativePath: req.params && req.params.filename ? String(req.params.filename).trim() : '',
|
||||
error: error && error.message ? error.message : String(error)
|
||||
});
|
||||
next(error);
|
||||
}
|
||||
});
|
||||
@@ -533,13 +569,34 @@ async function start() {
|
||||
return res.status(400).json({ error: 'Filename is required' });
|
||||
}
|
||||
|
||||
const deviceId = normalizeDeviceId(req.query.deviceId || req.query.playerIdentifier || req.headers['x-pulse-player-device-id']);
|
||||
if (!deviceId) {
|
||||
return res.status(400).json({ error: 'Device ID is required.' });
|
||||
}
|
||||
|
||||
logBridge('Forwarding media delete to player', {
|
||||
deviceId: deviceId,
|
||||
relativePath: relativePath
|
||||
});
|
||||
|
||||
const response = await sendPlayerCommand({
|
||||
command: 'media-delete',
|
||||
relativePath: relativePath
|
||||
}, deviceId);
|
||||
|
||||
logBridge('Player media delete completed', {
|
||||
deviceId: deviceId,
|
||||
relativePath: relativePath,
|
||||
ok: Boolean(response && response.ok),
|
||||
status: response && response.status ? response.status : null
|
||||
});
|
||||
|
||||
res.status(response.status || (response.ok ? 200 : 502)).json(response);
|
||||
} catch (error) {
|
||||
logBridge('Player media delete failed', {
|
||||
relativePath: req.params && req.params.filename ? String(req.params.filename).trim() : '',
|
||||
error: error && error.message ? error.message : String(error)
|
||||
});
|
||||
next(error);
|
||||
}
|
||||
});
|
||||
@@ -1054,19 +1111,32 @@ async function start() {
|
||||
|
||||
app.post('/api/internal/sync/player-media', requireRequestAuth, async function (_req, res, next) {
|
||||
try {
|
||||
logBridge('Relaying player media sync request to web');
|
||||
const webBaseUrl = resolveWebBaseUrl(_req);
|
||||
if (!webBaseUrl) {
|
||||
return res.status(502).json({ error: 'Web base URL is not configured.' });
|
||||
}
|
||||
|
||||
const requestBody = _req.body && typeof _req.body === 'object' && !Array.isArray(_req.body)
|
||||
? Object.assign({}, _req.body)
|
||||
: {};
|
||||
|
||||
const response = await fetch(`${webBaseUrl}/api/internal/sync/player-media`, {
|
||||
method: 'POST',
|
||||
headers: Object.assign({
|
||||
Accept: 'application/json'
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json'
|
||||
}, createRequestAuthHeaders({
|
||||
method: 'POST',
|
||||
pathname: '/api/internal/sync/player-media'
|
||||
}))
|
||||
pathname: '/api/internal/sync/player-media',
|
||||
body: requestBody
|
||||
})),
|
||||
body: JSON.stringify(requestBody)
|
||||
});
|
||||
|
||||
logBridge('Web player media sync response received', {
|
||||
ok: Boolean(response && response.ok),
|
||||
status: response && response.status ? response.status : null
|
||||
});
|
||||
|
||||
res.status(response.status);
|
||||
@@ -1076,6 +1146,53 @@ async function start() {
|
||||
}
|
||||
res.send(await response.text());
|
||||
} catch (error) {
|
||||
logBridge('Player media sync relay failed', {
|
||||
error: error && error.message ? error.message : String(error)
|
||||
});
|
||||
next(error);
|
||||
}
|
||||
});
|
||||
|
||||
app.post('/api/internal/sync/player-font', requireRequestAuth, async function (_req, res, next) {
|
||||
try {
|
||||
logBridge('Relaying player font sync request to web');
|
||||
const webBaseUrl = resolveWebBaseUrl(_req);
|
||||
if (!webBaseUrl) {
|
||||
return res.status(502).json({ error: 'Web base URL is not configured.' });
|
||||
}
|
||||
|
||||
const requestBody = _req.body && typeof _req.body === 'object' && !Array.isArray(_req.body)
|
||||
? Object.assign({}, _req.body)
|
||||
: {};
|
||||
|
||||
const response = await fetch(`${webBaseUrl}/api/internal/sync/player-font`, {
|
||||
method: 'POST',
|
||||
headers: Object.assign({
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json'
|
||||
}, createRequestAuthHeaders({
|
||||
method: 'POST',
|
||||
pathname: '/api/internal/sync/player-font',
|
||||
body: requestBody
|
||||
})),
|
||||
body: JSON.stringify(requestBody)
|
||||
});
|
||||
|
||||
logBridge('Web player font sync response received', {
|
||||
ok: Boolean(response && response.ok),
|
||||
status: response && response.status ? response.status : null
|
||||
});
|
||||
|
||||
res.status(response.status);
|
||||
const contentType = response.headers.get('content-type');
|
||||
if (contentType) {
|
||||
res.type(contentType);
|
||||
}
|
||||
res.send(await response.text());
|
||||
} catch (error) {
|
||||
logBridge('Player font sync relay failed', {
|
||||
error: error && error.message ? error.message : String(error)
|
||||
});
|
||||
next(error);
|
||||
}
|
||||
});
|
||||
@@ -1091,7 +1208,8 @@ module.exports = {
|
||||
start: start,
|
||||
resolveWebBaseUrl: resolveWebBaseUrl,
|
||||
resolveScreenCommandTargets: resolveScreenCommandTargets,
|
||||
resolveSnapshotUpstreamBaseUrl: resolveSnapshotUpstreamBaseUrl
|
||||
resolveSnapshotUpstreamBaseUrl: resolveSnapshotUpstreamBaseUrl,
|
||||
resolvePlayerSocketForDeviceId: resolvePlayerSocketForDeviceId
|
||||
};
|
||||
|
||||
if (require.main === module) {
|
||||
|
||||
+208
-37
@@ -30,8 +30,12 @@ async function start() {
|
||||
const MEDIA_DIR = path.join(__dirname, '..', 'media');
|
||||
const ONBOARDING_QUEUE_FILE = path.join(MEDIA_DIR, 'player-onboarding-queue.json');
|
||||
const DB_SYNC_INTERVAL_MS = Number(process.env.PLAYER_DB_SYNC_INTERVAL_MS || 15000);
|
||||
const RECONNECT_SYNC_STALE_MS = 60 * 1000;
|
||||
const onboardingStore = createOnboardingStore(ONBOARDING_QUEUE_FILE);
|
||||
let thinClientSocket = null;
|
||||
let lastDisconnectAt = 0;
|
||||
let playerPublicBaseUrl = PLAYER_PUBLIC_URL || null;
|
||||
let refreshThinClientRegistration = null;
|
||||
const playerRuntime = createPlayerRuntime({
|
||||
pool: pool,
|
||||
normalizeDeviceId: normalizeDeviceId,
|
||||
@@ -67,6 +71,35 @@ async function start() {
|
||||
|
||||
let hasLoggedPlayerStartup = false;
|
||||
|
||||
function normalizePlayerPublicBaseUrl(value) {
|
||||
const normalized = String(value || '').trim().replace(/\/$/, '');
|
||||
if (!normalized) {
|
||||
return null;
|
||||
}
|
||||
|
||||
try {
|
||||
return new URL(normalized).origin.replace(/\/$/, '');
|
||||
} catch (_error) {
|
||||
return normalized;
|
||||
}
|
||||
}
|
||||
|
||||
function setPlayerPublicBaseUrl(value) {
|
||||
const nextBaseUrl = normalizePlayerPublicBaseUrl(value);
|
||||
if (!nextBaseUrl || nextBaseUrl === playerPublicBaseUrl) {
|
||||
return;
|
||||
}
|
||||
|
||||
playerPublicBaseUrl = nextBaseUrl;
|
||||
if (typeof refreshThinClientRegistration === 'function') {
|
||||
refreshThinClientRegistration();
|
||||
}
|
||||
}
|
||||
|
||||
function getPlayerPublicBaseUrl() {
|
||||
return playerPublicBaseUrl;
|
||||
}
|
||||
|
||||
function logPlayerStartup(connectionState) {
|
||||
if (hasLoggedPlayerStartup) {
|
||||
return;
|
||||
@@ -76,7 +109,7 @@ async function start() {
|
||||
console.info('[player] startup', {
|
||||
mode: isRemotePlayer ? 'bridge client' : 'local',
|
||||
connected: connectionState && typeof connectionState.connected === 'boolean' ? connectionState.connected : false,
|
||||
publicBaseUrl: PLAYER_PUBLIC_URL || null,
|
||||
publicBaseUrl: getPlayerPublicBaseUrl(),
|
||||
bridgeBaseUrl: PLAYER_INTERNAL_URL || null,
|
||||
bridgeWebSocketUrl: BRIDGE_PUBLIC_URL ? createThinClientWebSocketUrl() : null
|
||||
});
|
||||
@@ -104,25 +137,96 @@ async function start() {
|
||||
return false;
|
||||
}
|
||||
|
||||
const requestBody = {
|
||||
playerIdentifier: PLAYER_DEVICE_ID,
|
||||
playerPublicBaseUrl: getPlayerPublicBaseUrl(),
|
||||
playerInternalBaseUrl: PLAYER_INTERNAL_URL
|
||||
};
|
||||
|
||||
try {
|
||||
console.info('[player] Triggering startup media sync', {
|
||||
playerIdentifier: PLAYER_DEVICE_ID,
|
||||
bridgeBaseUrl: BRIDGE_PUBLIC_URL
|
||||
});
|
||||
const authHeaders = createRequestAuthHeaders({
|
||||
method: 'POST',
|
||||
pathname: '/api/internal/sync/player-media'
|
||||
pathname: '/api/internal/sync/player-media',
|
||||
body: requestBody
|
||||
});
|
||||
const response = await fetch(`${BRIDGE_PUBLIC_URL}/api/internal/sync/player-media`, {
|
||||
method: 'POST',
|
||||
headers: Object.assign({
|
||||
Accept: 'application/json'
|
||||
}, authHeaders)
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json'
|
||||
}, authHeaders),
|
||||
body: JSON.stringify(requestBody)
|
||||
});
|
||||
|
||||
console.info('[player] Startup media sync response', {
|
||||
ok: Boolean(response && response.ok),
|
||||
status: response && response.status ? response.status : null
|
||||
});
|
||||
|
||||
return Boolean(response && response.ok);
|
||||
} catch (_error) {
|
||||
console.warn('[player] Startup media sync failed');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
async function triggerWebFontSync() {
|
||||
if (!isRemotePlayer || !BRIDGE_PUBLIC_URL) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const requestBody = {
|
||||
playerIdentifier: PLAYER_DEVICE_ID,
|
||||
playerPublicBaseUrl: getPlayerPublicBaseUrl(),
|
||||
playerInternalBaseUrl: PLAYER_INTERNAL_URL
|
||||
};
|
||||
|
||||
try {
|
||||
console.info('[player] Triggering startup font sync', {
|
||||
playerIdentifier: PLAYER_DEVICE_ID,
|
||||
bridgeBaseUrl: BRIDGE_PUBLIC_URL
|
||||
});
|
||||
const authHeaders = createRequestAuthHeaders({
|
||||
method: 'POST',
|
||||
pathname: '/api/internal/sync/player-font',
|
||||
body: requestBody
|
||||
});
|
||||
const response = await fetch(`${BRIDGE_PUBLIC_URL}/api/internal/sync/player-font`, {
|
||||
method: 'POST',
|
||||
headers: Object.assign({
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json'
|
||||
}, authHeaders),
|
||||
body: JSON.stringify(requestBody)
|
||||
});
|
||||
|
||||
console.info('[player] Startup font sync response', {
|
||||
ok: Boolean(response && response.ok),
|
||||
status: response && response.status ? response.status : null
|
||||
});
|
||||
|
||||
return Boolean(response && response.ok);
|
||||
} catch (_error) {
|
||||
console.warn('[player] Startup font sync failed');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
let webMediaSyncCompleted = false;
|
||||
let webFontSyncCompleted = false;
|
||||
let webFontSyncTriggered = false;
|
||||
|
||||
function shouldTriggerReconnectSync() {
|
||||
if (!lastDisconnectAt) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return Date.now() - lastDisconnectAt >= RECONNECT_SYNC_STALE_MS;
|
||||
}
|
||||
|
||||
async function handleThinClientCommand(socket, rawMessage) {
|
||||
let payload = null;
|
||||
@@ -153,9 +257,18 @@ async function start() {
|
||||
response.error = 'Invalid media payload.';
|
||||
} else {
|
||||
const bodyBuffer = Buffer.from(bodyBase64, 'base64');
|
||||
console.info('[player] Writing media file', {
|
||||
relativePath: relativePath,
|
||||
filePath: filePath,
|
||||
bytes: bodyBuffer.length
|
||||
});
|
||||
await fs.promises.mkdir(path.dirname(filePath), { recursive: true });
|
||||
await fs.promises.writeFile(filePath, bodyBuffer);
|
||||
response.ok = true;
|
||||
console.info('[player] Media file written', {
|
||||
relativePath: relativePath,
|
||||
filePath: filePath
|
||||
});
|
||||
}
|
||||
} else if (command === 'media-delete') {
|
||||
const relativePath = String(payload.relativePath || payload.filename || '').trim();
|
||||
@@ -163,6 +276,10 @@ async function start() {
|
||||
if (!filePath) {
|
||||
response.error = 'Invalid media path.';
|
||||
} else {
|
||||
console.info('[player] Removing media file', {
|
||||
relativePath: relativePath,
|
||||
filePath: filePath
|
||||
});
|
||||
try {
|
||||
await fs.promises.unlink(filePath);
|
||||
} catch (error) {
|
||||
@@ -171,6 +288,10 @@ async function start() {
|
||||
}
|
||||
}
|
||||
response.ok = true;
|
||||
console.info('[player] Media file removed', {
|
||||
relativePath: relativePath,
|
||||
filePath: filePath
|
||||
});
|
||||
}
|
||||
} else if (['refresh', 'reload', 'redirect', 'pause', 'blackout', 'previous', 'next', 'setclientname'].indexOf(command) !== -1) {
|
||||
const screenSlug = String(payload.screenSlug || payload.slug || '').trim();
|
||||
@@ -212,7 +333,7 @@ async function start() {
|
||||
common: common,
|
||||
playerRuntime: playerRuntime,
|
||||
onboardingStore: onboardingStore,
|
||||
playerPublicBaseUrl: PLAYER_PUBLIC_URL,
|
||||
playerPublicBaseUrl: getPlayerPublicBaseUrl(),
|
||||
playerInternalBaseUrl: PLAYER_INTERNAL_URL,
|
||||
bridgeBaseUrl: BRIDGE_PUBLIC_URL,
|
||||
playerDeviceId: PLAYER_DEVICE_ID
|
||||
@@ -225,10 +346,10 @@ async function start() {
|
||||
playerRuntime: playerRuntime,
|
||||
playerPlaylistService: playerPlaylistService,
|
||||
rtmpStreamService: rtmpStreamService,
|
||||
playerPublicBaseUrl: PLAYER_PUBLIC_URL,
|
||||
playerInternalBaseUrl: PLAYER_INTERNAL_URL,
|
||||
bridgeBaseUrl: BRIDGE_PUBLIC_URL,
|
||||
playerDeviceId: PLAYER_DEVICE_ID
|
||||
playerDeviceId: PLAYER_DEVICE_ID,
|
||||
onPlayerPublicBaseUrl: setPlayerPublicBaseUrl
|
||||
});
|
||||
|
||||
function createThinClientWebSocketUrl() {
|
||||
@@ -276,6 +397,54 @@ async function start() {
|
||||
});
|
||||
thinClientSocket = socket;
|
||||
|
||||
function sendHeartbeat() {
|
||||
if (!socket || socket.readyState !== WebSocket.OPEN) {
|
||||
return;
|
||||
}
|
||||
|
||||
socket.send(JSON.stringify({
|
||||
type: 'heartbeat',
|
||||
deviceId: PLAYER_DEVICE_ID,
|
||||
publicBaseUrl: getPlayerPublicBaseUrl(),
|
||||
internalBaseUrl: PLAYER_INTERNAL_URL
|
||||
}));
|
||||
}
|
||||
|
||||
refreshThinClientRegistration = sendHeartbeat;
|
||||
|
||||
function triggerMediaSyncIfNeeded() {
|
||||
if (webMediaSyncTriggered || webMediaSyncCompleted) {
|
||||
return;
|
||||
}
|
||||
|
||||
webMediaSyncTriggered = true;
|
||||
triggerWebMediaSync().then(function (success) {
|
||||
webMediaSyncCompleted = Boolean(success) || webMediaSyncCompleted;
|
||||
if (!success) {
|
||||
webMediaSyncTriggered = false;
|
||||
}
|
||||
}).catch(function () {
|
||||
webMediaSyncTriggered = false;
|
||||
});
|
||||
}
|
||||
|
||||
function triggerFontSyncIfNeeded() {
|
||||
if (webFontSyncTriggered || webFontSyncCompleted) {
|
||||
return;
|
||||
}
|
||||
|
||||
webFontSyncTriggered = true;
|
||||
triggerWebFontSync().then(function (success) {
|
||||
webFontSyncCompleted = Boolean(success) || webFontSyncCompleted;
|
||||
if (!success) {
|
||||
webFontSyncTriggered = false;
|
||||
}
|
||||
}).catch(function () {
|
||||
webFontSyncTriggered = false;
|
||||
webFontSyncCompleted = false;
|
||||
});
|
||||
}
|
||||
|
||||
function sendSnapshot(slug) {
|
||||
if (!socket || socket.readyState !== WebSocket.OPEN) {
|
||||
return;
|
||||
@@ -300,7 +469,7 @@ async function start() {
|
||||
socket.send(JSON.stringify({
|
||||
type: 'register',
|
||||
deviceId: PLAYER_DEVICE_ID,
|
||||
publicBaseUrl: PLAYER_PUBLIC_URL,
|
||||
publicBaseUrl: getPlayerPublicBaseUrl(),
|
||||
internalBaseUrl: PLAYER_INTERNAL_URL
|
||||
}));
|
||||
|
||||
@@ -308,38 +477,35 @@ async function start() {
|
||||
sendSnapshot(slug);
|
||||
});
|
||||
|
||||
if (!webMediaSyncCompleted) {
|
||||
triggerWebMediaSync().then(function (success) {
|
||||
webMediaSyncTriggered = Boolean(success);
|
||||
webMediaSyncCompleted = Boolean(success) || webMediaSyncCompleted;
|
||||
}).catch(function () {
|
||||
webMediaSyncTriggered = false;
|
||||
});
|
||||
}
|
||||
|
||||
heartbeatTimer = setInterval(function () {
|
||||
if (!socket || socket.readyState !== WebSocket.OPEN) {
|
||||
return;
|
||||
}
|
||||
socket.send(JSON.stringify({
|
||||
type: 'heartbeat',
|
||||
deviceId: PLAYER_DEVICE_ID,
|
||||
publicBaseUrl: PLAYER_PUBLIC_URL,
|
||||
internalBaseUrl: PLAYER_INTERNAL_URL
|
||||
}));
|
||||
|
||||
if (!webMediaSyncTriggered && !webMediaSyncCompleted) {
|
||||
triggerWebMediaSync().then(function (success) {
|
||||
webMediaSyncTriggered = Boolean(success);
|
||||
webMediaSyncCompleted = Boolean(success) || webMediaSyncCompleted;
|
||||
}).catch(function () {
|
||||
webMediaSyncTriggered = false;
|
||||
});
|
||||
}
|
||||
sendHeartbeat();
|
||||
}, DB_SYNC_INTERVAL_MS);
|
||||
});
|
||||
|
||||
socket.on('message', function (rawMessage) {
|
||||
let parsedMessage = null;
|
||||
try {
|
||||
parsedMessage = JSON.parse(String(rawMessage || '{}'));
|
||||
} catch (_error) {
|
||||
parsedMessage = null;
|
||||
}
|
||||
|
||||
if (parsedMessage && String(parsedMessage.type || '').trim() === 'registered') {
|
||||
console.info('[player] Bridge registration acknowledged', {
|
||||
playerIdentifier: PLAYER_DEVICE_ID
|
||||
});
|
||||
sendHeartbeat();
|
||||
return;
|
||||
}
|
||||
|
||||
if (parsedMessage && String(parsedMessage.type || '').trim() === 'heartbeat-ack') {
|
||||
if (shouldTriggerReconnectSync()) {
|
||||
triggerMediaSyncIfNeeded();
|
||||
triggerFontSyncIfNeeded();
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
handleThinClientCommand(socket, rawMessage).catch(function (error) {
|
||||
try {
|
||||
socket.send(JSON.stringify({
|
||||
@@ -355,8 +521,13 @@ async function start() {
|
||||
});
|
||||
|
||||
socket.on('close', function () {
|
||||
lastDisconnectAt = Date.now();
|
||||
webFontSyncTriggered = false;
|
||||
webFontSyncCompleted = false;
|
||||
webMediaSyncCompleted = false;
|
||||
clearTimers();
|
||||
thinClientSocket = null;
|
||||
refreshThinClientRegistration = null;
|
||||
reconnectTimer = setTimeout(connect, PLAYER_AGENT_RECONNECT_DELAY_MS);
|
||||
});
|
||||
|
||||
@@ -403,7 +574,7 @@ async function start() {
|
||||
try {
|
||||
await recordPlayerHeartbeat(pool, {
|
||||
deviceId: PLAYER_DEVICE_ID,
|
||||
publicBaseUrl: PLAYER_PUBLIC_URL,
|
||||
publicBaseUrl: getPlayerPublicBaseUrl(),
|
||||
internalBaseUrl: PLAYER_INTERNAL_URL
|
||||
}).catch(function (error) {
|
||||
console.error(error);
|
||||
@@ -432,7 +603,7 @@ async function start() {
|
||||
|
||||
if (PLAYER_DEVICE_ID && !isRemotePlayer) {
|
||||
const { upsertPlayerRegistration } = require('./player/onboarding');
|
||||
await upsertPlayerRegistration(pool, PLAYER_DEVICE_ID, PLAYER_PUBLIC_URL, PLAYER_INTERNAL_URL).catch(function (error) {
|
||||
await upsertPlayerRegistration(pool, PLAYER_DEVICE_ID, getPlayerPublicBaseUrl(), PLAYER_INTERNAL_URL).catch(function (error) {
|
||||
console.error(error);
|
||||
});
|
||||
}
|
||||
|
||||
@@ -16,15 +16,16 @@ function normalizeDeviceId(value) {
|
||||
}
|
||||
|
||||
function getPublicBaseUrl(req, configuredUrl) {
|
||||
const configured = String(configuredUrl || process.env.PLAYER_PUBLIC_URL || process.env.PLAYER_BASE_URL || '').trim().replace(/\/$/, '');
|
||||
if (configured) {
|
||||
return configured;
|
||||
}
|
||||
const forwardedProto = String(req.headers['x-forwarded-proto'] || '').trim().split(',')[0];
|
||||
const protocol = forwardedProto || (req.socket && req.socket.encrypted ? 'https' : 'http');
|
||||
const forwardedHost = String(req.headers['x-forwarded-host'] || '').trim().split(',')[0];
|
||||
const host = forwardedHost || String(req.headers.host || '').trim();
|
||||
return `${protocol}://${host}`.replace(/\/$/, '');
|
||||
if (host) {
|
||||
return `${protocol}://${host}`.replace(/\/$/, '');
|
||||
}
|
||||
|
||||
const configured = String(configuredUrl || process.env.PLAYER_PUBLIC_URL || process.env.PLAYER_BASE_URL || '').trim().replace(/\/$/, '');
|
||||
return configured || null;
|
||||
}
|
||||
|
||||
function getRequestIp(req) {
|
||||
|
||||
@@ -4,6 +4,7 @@ const fs = require('fs');
|
||||
const express = require('express');
|
||||
const path = require('path');
|
||||
const { getSharedSecret, createPageAuthBundle, verifyPageAuthToken, verifyRequestAuth, createRequestAuthHeaders } = require('#src/request-auth');
|
||||
const { getPlayerPublicBaseUrl } = require('./onboarding');
|
||||
const { buildThumbnailPreviewData } = require('./thumbnail-preview');
|
||||
|
||||
const TRANSIENT_DB_ERROR_CODES = ['ECONNREFUSED', 'ECONNRESET', 'ETIMEDOUT', 'EPIPE', 'ENOTFOUND', 'PROTOCOL_CONNECTION_LOST', 'POOL_CLOSED', 'ERR_POOL_CLOSED'];
|
||||
@@ -31,10 +32,10 @@ function registerPlayerRoutes(app, options) {
|
||||
const playerRuntime = options && options.playerRuntime ? options.playerRuntime : null;
|
||||
const playerPlaylistService = options && options.playerPlaylistService ? options.playerPlaylistService : null;
|
||||
const rtmpStreamService = options && options.rtmpStreamService ? options.rtmpStreamService : null;
|
||||
const playerPublicUrl = String(options && options.playerPublicBaseUrl || process.env.PLAYER_PUBLIC_URL || process.env.PLAYER_BASE_URL || '').trim().replace(/\/$/, '');
|
||||
const playerInternalUrl = String(options && options.playerInternalBaseUrl || process.env.PLAYER_INTERNAL_URL || process.env.PLAYER_BASE_URL || '').trim().replace(/\/$/, '');
|
||||
const bridgeBaseUrl = String(options && options.bridgeBaseUrl || process.env.BRIDGE_PUBLIC_URL || '').trim().replace(/\/$/, '');
|
||||
const playerDeviceId = String(options && options.playerDeviceId || '').trim() || null;
|
||||
const onPlayerPublicBaseUrl = typeof options.onPlayerPublicBaseUrl === 'function' ? options.onPlayerPublicBaseUrl : null;
|
||||
|
||||
if (!app || !common || !mediaDir || !assetDir || !playerRuntime || !rtmpStreamService) {
|
||||
throw new Error('registerPlayerRoutes requires app, common, mediaDir, assetDir, playerRuntime, and rtmpStreamService.');
|
||||
@@ -296,6 +297,13 @@ function registerPlayerRoutes(app, options) {
|
||||
});
|
||||
|
||||
app.get('/screen/:slug', function (req, res) {
|
||||
if (onPlayerPublicBaseUrl) {
|
||||
try {
|
||||
onPlayerPublicBaseUrl(getPlayerPublicBaseUrl(req, null));
|
||||
} catch (_error) {
|
||||
}
|
||||
}
|
||||
|
||||
res.set('Cache-Control', 'no-store, no-cache, must-revalidate, proxy-revalidate');
|
||||
res.set('Pragma', 'no-cache');
|
||||
if (bridgeBaseUrl) {
|
||||
|
||||
@@ -52,7 +52,13 @@ function registerStartupTasks(options) {
|
||||
}
|
||||
|
||||
async function initialize() {
|
||||
await loadTaskModules(backgroundTaskDirectory, options);
|
||||
const startupTaskFile = path.join(backgroundTaskDirectory, 'data-source-refresh.js');
|
||||
const taskModule = require(startupTaskFile);
|
||||
const exported = getTaskExport(taskModule);
|
||||
|
||||
if (typeof exported === 'function') {
|
||||
await exported(options);
|
||||
}
|
||||
}
|
||||
|
||||
return {
|
||||
|
||||
@@ -9,6 +9,7 @@ function registerFontSyncTask(options) {
|
||||
backgroundTaskQueue.setTaskHandler('font-sync', async function (task) {
|
||||
const payload = task && task.payload ? task.payload : task || {};
|
||||
const uploadDir = String(payload.uploadDir || '').trim();
|
||||
const playerIdentifier = String(payload.playerIdentifier || payload.deviceId || '').trim();
|
||||
const operations = Array.isArray(payload.operations)
|
||||
? payload.operations
|
||||
: Array.isArray(payload.uploadPaths)
|
||||
@@ -28,9 +29,9 @@ function registerFontSyncTask(options) {
|
||||
continue;
|
||||
}
|
||||
if (String(operation.type || '').trim().toLowerCase() === 'delete') {
|
||||
await uploadSyncService.removeUploadFileFromPlayer(uploadPath, uploadDir);
|
||||
await uploadSyncService.removeUploadFileFromPlayer(uploadPath, uploadDir, undefined, playerIdentifier);
|
||||
} else {
|
||||
await uploadSyncService.pushUploadFileToPlayer(uploadPath, uploadDir);
|
||||
await uploadSyncService.pushUploadFileToPlayer(uploadPath, uploadDir, undefined, playerIdentifier);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
@@ -1,16 +1,40 @@
|
||||
const { collectFontLibrarySyncOperations } = require('../../media/font-library');
|
||||
const { fetchPlayerRegistrations } = require('#src/data/player-registry');
|
||||
|
||||
const TASK = {
|
||||
key: 'initial-font-sync',
|
||||
category: 'fonts'
|
||||
};
|
||||
|
||||
function isRecentPlayerRegistration(player, staleSeconds) {
|
||||
const lastSeenAt = player && player.last_seen_at;
|
||||
const lastSeenAtValue = lastSeenAt instanceof Date ? lastSeenAt.getTime() : new Date(lastSeenAt).getTime();
|
||||
const cutoffTime = Date.now() - Math.max(30, Number(staleSeconds || 60)) * 1000;
|
||||
|
||||
return Number.isFinite(lastSeenAtValue) && lastSeenAtValue >= cutoffTime;
|
||||
}
|
||||
|
||||
function normalizePlayerMetadata(player) {
|
||||
const playerIdentifier = String(player && player.identifier || '').trim();
|
||||
const playerPublicBaseUrl = String(player && player.public_base_url || '').trim();
|
||||
const playerInternalBaseUrl = String(player && player.internal_base_url || '').trim();
|
||||
|
||||
return {
|
||||
playerIdentifier: playerIdentifier || null,
|
||||
playerPublicBaseUrl: playerPublicBaseUrl || null,
|
||||
playerInternalBaseUrl: playerInternalBaseUrl || null,
|
||||
playerLabel: playerIdentifier || playerPublicBaseUrl || playerInternalBaseUrl || null,
|
||||
playerActive: true
|
||||
};
|
||||
}
|
||||
|
||||
function registerInitialFontSyncTask(options) {
|
||||
const pool = options && options.pool;
|
||||
const backgroundTaskQueue = options && options.backgroundTaskQueue;
|
||||
const mediaDir = String(options && options.mediaDir || '').trim();
|
||||
const uploadSyncService = options && options.uploadSyncService;
|
||||
|
||||
if (!backgroundTaskQueue || !mediaDir) {
|
||||
if (!pool || !backgroundTaskQueue || !mediaDir) {
|
||||
throw new Error('registerInitialFontSyncTask requires the initial font sync dependencies.');
|
||||
}
|
||||
|
||||
@@ -18,20 +42,45 @@ function registerInitialFontSyncTask(options) {
|
||||
? uploadSyncService.getPlayerTaskMetadata()
|
||||
: Promise.resolve({});
|
||||
|
||||
return Promise.resolve(metadataPromise).then(function (metadata) {
|
||||
return backgroundTaskQueue.enqueueTask({
|
||||
key: TASK.key,
|
||||
title: 'Initial font sync',
|
||||
category: TASK.category,
|
||||
taskType: 'font-sync',
|
||||
metadata: Object.assign({}, metadata || {}),
|
||||
payload: {
|
||||
mode: 'initial',
|
||||
uploadDir: mediaDir,
|
||||
operations: collectFontLibrarySyncOperations(mediaDir)
|
||||
},
|
||||
persist: true
|
||||
});
|
||||
return Promise.resolve(metadataPromise).then(async function () {
|
||||
let players = [];
|
||||
try {
|
||||
players = await fetchPlayerRegistrations(pool);
|
||||
} catch (error) {
|
||||
console.warn('Unable to fetch player registrations for initial font sync:', error);
|
||||
return null;
|
||||
}
|
||||
|
||||
const livePlayers = Array.isArray(players)
|
||||
? players.filter(function (player) {
|
||||
return isRecentPlayerRegistration(player, 60);
|
||||
})
|
||||
: [];
|
||||
|
||||
if (!livePlayers.length) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const operations = collectFontLibrarySyncOperations(mediaDir);
|
||||
return Promise.all(livePlayers.map(function (player) {
|
||||
const metadata = normalizePlayerMetadata(player);
|
||||
return backgroundTaskQueue.enqueueTask({
|
||||
key: TASK.key,
|
||||
title: 'Initial font sync',
|
||||
category: TASK.category,
|
||||
taskType: 'font-sync',
|
||||
metadata: metadata,
|
||||
payload: {
|
||||
mode: 'initial',
|
||||
uploadDir: mediaDir,
|
||||
operations: operations,
|
||||
playerIdentifier: metadata.playerIdentifier,
|
||||
playerPublicBaseUrl: metadata.playerPublicBaseUrl,
|
||||
playerInternalBaseUrl: metadata.playerInternalBaseUrl
|
||||
},
|
||||
persist: true
|
||||
});
|
||||
}));
|
||||
}).catch(function (error) {
|
||||
console.warn('Unable to queue initial font sync:', error);
|
||||
});
|
||||
|
||||
@@ -3,12 +3,37 @@ const TASK = {
|
||||
category: 'media-sync',
|
||||
};
|
||||
|
||||
const { fetchPlayerRegistrations } = require('#src/data/player-registry');
|
||||
|
||||
function isRecentPlayerRegistration(player, staleSeconds) {
|
||||
const lastSeenAt = player && player.last_seen_at;
|
||||
const lastSeenAtValue = lastSeenAt instanceof Date ? lastSeenAt.getTime() : new Date(lastSeenAt).getTime();
|
||||
const cutoffTime = Date.now() - Math.max(30, Number(staleSeconds || 60)) * 1000;
|
||||
|
||||
return Number.isFinite(lastSeenAtValue) && lastSeenAtValue >= cutoffTime;
|
||||
}
|
||||
|
||||
function normalizePlayerMetadata(player) {
|
||||
const playerIdentifier = String(player && player.identifier || '').trim();
|
||||
const playerPublicBaseUrl = String(player && player.public_base_url || '').trim();
|
||||
const playerInternalBaseUrl = String(player && player.internal_base_url || '').trim();
|
||||
|
||||
return {
|
||||
playerIdentifier: playerIdentifier || null,
|
||||
playerPublicBaseUrl: playerPublicBaseUrl || null,
|
||||
playerInternalBaseUrl: playerInternalBaseUrl || null,
|
||||
playerLabel: playerIdentifier || playerPublicBaseUrl || playerInternalBaseUrl || null,
|
||||
playerActive: true
|
||||
};
|
||||
}
|
||||
|
||||
function registerInitialMediaSyncTask(options) {
|
||||
const pool = options && options.pool;
|
||||
const backgroundTaskQueue = options && options.backgroundTaskQueue;
|
||||
const mediaDir = String(options && options.mediaDir || '').trim();
|
||||
const uploadSyncService = options && options.uploadSyncService;
|
||||
|
||||
if (!backgroundTaskQueue || !mediaDir) {
|
||||
if (!pool || !backgroundTaskQueue || !mediaDir) {
|
||||
throw new Error('registerInitialMediaSyncTask requires the initial media sync dependencies.');
|
||||
}
|
||||
|
||||
@@ -16,19 +41,43 @@ function registerInitialMediaSyncTask(options) {
|
||||
? uploadSyncService.getPlayerTaskMetadata()
|
||||
: Promise.resolve({});
|
||||
|
||||
return Promise.resolve(metadataPromise).then(function (metadata) {
|
||||
return backgroundTaskQueue.enqueueTask({
|
||||
key: TASK.key,
|
||||
title: 'Initial media sync',
|
||||
category: TASK.category,
|
||||
taskType: 'media-sync',
|
||||
metadata: Object.assign({}, metadata || {}),
|
||||
payload: {
|
||||
mode: 'initial',
|
||||
uploadDir: mediaDir
|
||||
},
|
||||
persist: true
|
||||
});
|
||||
return Promise.resolve(metadataPromise).then(async function () {
|
||||
let players = [];
|
||||
try {
|
||||
players = await fetchPlayerRegistrations(pool);
|
||||
} catch (error) {
|
||||
console.warn('Unable to fetch player registrations for initial media sync:', error);
|
||||
return null;
|
||||
}
|
||||
|
||||
const livePlayers = Array.isArray(players)
|
||||
? players.filter(function (player) {
|
||||
return isRecentPlayerRegistration(player, 60);
|
||||
})
|
||||
: [];
|
||||
|
||||
if (!livePlayers.length) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return Promise.all(livePlayers.map(function (player) {
|
||||
const metadata = normalizePlayerMetadata(player);
|
||||
return backgroundTaskQueue.enqueueTask({
|
||||
key: TASK.key,
|
||||
title: 'Initial media sync',
|
||||
category: TASK.category,
|
||||
taskType: 'media-sync',
|
||||
metadata: metadata,
|
||||
payload: {
|
||||
mode: 'initial',
|
||||
uploadDir: mediaDir,
|
||||
playerIdentifier: metadata.playerIdentifier,
|
||||
playerPublicBaseUrl: metadata.playerPublicBaseUrl,
|
||||
playerInternalBaseUrl: metadata.playerInternalBaseUrl
|
||||
},
|
||||
persist: true
|
||||
});
|
||||
}));
|
||||
}).catch(function (error) {
|
||||
console.warn('Unable to queue initial media sync:', error);
|
||||
});
|
||||
|
||||
@@ -36,6 +36,22 @@ function normalizeBaseUrl(value) {
|
||||
return String(value || '').trim().replace(/\/$/, '');
|
||||
}
|
||||
|
||||
function appendPlayerDeviceIdToUrl(baseUrl, playerIdentifier) {
|
||||
const targetBaseUrl = normalizeBaseUrl(baseUrl);
|
||||
const deviceId = String(playerIdentifier || '').trim();
|
||||
if (!targetBaseUrl || !deviceId) {
|
||||
return targetBaseUrl;
|
||||
}
|
||||
|
||||
try {
|
||||
const url = new URL(targetBaseUrl);
|
||||
url.searchParams.set('deviceId', deviceId);
|
||||
return url.toString().replace(/\/$/, '');
|
||||
} catch (_error) {
|
||||
return targetBaseUrl;
|
||||
}
|
||||
}
|
||||
|
||||
function normalizePlayerRowBaseUrl(player) {
|
||||
return normalizeBaseUrl(player && player.internal_base_url);
|
||||
}
|
||||
@@ -74,8 +90,8 @@ function createUploadSyncService(options) {
|
||||
throw new Error('createUploadSyncService requires the upload dependencies.');
|
||||
}
|
||||
|
||||
async function getPlayerInternalBaseUrl() {
|
||||
const metadata = await getPlayerTaskMetadata();
|
||||
async function getPlayerInternalBaseUrl(preferredPlayerIdentifier, preferredPlayerInternalBaseUrl) {
|
||||
const metadata = await getPlayerTaskMetadata(preferredPlayerIdentifier, preferredPlayerInternalBaseUrl);
|
||||
if (!metadata || metadata.playerActive === false) {
|
||||
return null;
|
||||
}
|
||||
@@ -83,11 +99,44 @@ function createUploadSyncService(options) {
|
||||
return metadata.playerInternalBaseUrl ? metadata.playerInternalBaseUrl : null;
|
||||
}
|
||||
|
||||
async function getPlayerTaskMetadata() {
|
||||
if (playerTaskMetadata) {
|
||||
async function getPlayerTaskMetadata(preferredPlayerIdentifier, preferredPlayerInternalBaseUrl) {
|
||||
const normalizedPreferredPlayerIdentifier = String(preferredPlayerIdentifier || '').trim();
|
||||
const normalizedPreferredPlayerInternalBaseUrl = String(preferredPlayerInternalBaseUrl || '').trim().replace(/\/$/, '');
|
||||
|
||||
if (normalizedPreferredPlayerIdentifier && pool && typeof fetchPlayerRegistrations === 'function') {
|
||||
try {
|
||||
const players = await fetchPlayerRegistrations(pool);
|
||||
const registeredPlayers = Array.isArray(players) ? players : [];
|
||||
const exactPlayer = registeredPlayers.find(function (player) {
|
||||
return String(player && player.identifier || '').trim() === normalizedPreferredPlayerIdentifier;
|
||||
}) || null;
|
||||
if (exactPlayer) {
|
||||
const resolvedInternalBaseUrl = normalizePlayerRowBaseUrl(exactPlayer) || normalizedPreferredPlayerInternalBaseUrl || null;
|
||||
const resolvedPublicBaseUrl = normalizeBaseUrl(exactPlayer && exactPlayer.public_base_url);
|
||||
const resolvedIdentifier = String(exactPlayer && exactPlayer.identifier || '').trim();
|
||||
playerInternalBaseUrl = resolvedInternalBaseUrl || null;
|
||||
playerTaskMetadata = {
|
||||
playerIdentifier: resolvedIdentifier || normalizedPreferredPlayerIdentifier || null,
|
||||
playerPublicBaseUrl: resolvedPublicBaseUrl || null,
|
||||
playerInternalBaseUrl: resolvedInternalBaseUrl || null,
|
||||
playerLabel: resolvedIdentifier || resolvedPublicBaseUrl || resolvedInternalBaseUrl || null,
|
||||
playerActive: true
|
||||
};
|
||||
return playerTaskMetadata;
|
||||
}
|
||||
} catch (_error) {
|
||||
}
|
||||
}
|
||||
|
||||
if (playerTaskMetadata && playerTaskMetadata.playerActive !== false) {
|
||||
return playerTaskMetadata;
|
||||
}
|
||||
|
||||
if (playerTaskMetadata && playerTaskMetadata.playerActive === false) {
|
||||
playerTaskMetadata = null;
|
||||
playerInternalBaseUrl = null;
|
||||
}
|
||||
|
||||
if (playerTaskMetadataPromise) {
|
||||
return playerTaskMetadataPromise;
|
||||
}
|
||||
@@ -421,7 +470,8 @@ function createUploadSyncService(options) {
|
||||
pendingPlayerUploadSyncs.set(normalizeUploadReference(operation.uploadPath), {
|
||||
type: operation.type === 'delete' ? 'delete' : 'put',
|
||||
uploadPath: normalizeUploadReference(operation.uploadPath),
|
||||
uploadDir: operation.uploadDir || null
|
||||
uploadDir: operation.uploadDir || null,
|
||||
metadata: operation.metadata || null
|
||||
});
|
||||
|
||||
schedulePendingPlayerUploadSyncFlush();
|
||||
@@ -443,7 +493,7 @@ function createUploadSyncService(options) {
|
||||
}
|
||||
}
|
||||
|
||||
async function pushUploadFileToPlayer(uploadPath, localUploadDir, resolvedPlayerInternalBaseUrl) {
|
||||
async function pushUploadFileToPlayer(uploadPath, localUploadDir, resolvedPlayerInternalBaseUrl, preferredPlayerIdentifier) {
|
||||
if (!uploadPath || !shouldMirrorUploads(localUploadDir)) {
|
||||
return false;
|
||||
}
|
||||
@@ -453,6 +503,7 @@ function createUploadSyncService(options) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const playerMetadata = await getPlayerTaskMetadata(preferredPlayerIdentifier, targetBaseUrl);
|
||||
const relativePath = getUploadRelativePath(uploadPath);
|
||||
const sourcePath = resolveUploadFilePath(localUploadDir, uploadPath);
|
||||
if (!relativePath || !sourcePath) {
|
||||
@@ -474,7 +525,8 @@ function createUploadSyncService(options) {
|
||||
pathname: `/api/media/${encodeURIComponent(relativePath)}`,
|
||||
body: fileBuffer
|
||||
});
|
||||
const response = await fetch(`${targetBaseUrl}/api/media/${encodeURIComponent(relativePath)}`, {
|
||||
const mediaUploadUrl = appendPlayerDeviceIdToUrl(`${targetBaseUrl}/api/media/${encodeURIComponent(relativePath)}`, playerMetadata && playerMetadata.playerIdentifier);
|
||||
const response = await fetch(mediaUploadUrl, {
|
||||
method: 'PUT',
|
||||
headers: {
|
||||
'Content-Type': 'application/octet-stream',
|
||||
@@ -497,7 +549,7 @@ function createUploadSyncService(options) {
|
||||
}
|
||||
}
|
||||
|
||||
async function removeUploadFileFromPlayer(uploadPath, localUploadDir, resolvedPlayerInternalBaseUrl) {
|
||||
async function removeUploadFileFromPlayer(uploadPath, localUploadDir, resolvedPlayerInternalBaseUrl, preferredPlayerIdentifier) {
|
||||
if (!uploadPath || !shouldMirrorUploads(localUploadDir)) {
|
||||
return false;
|
||||
}
|
||||
@@ -507,6 +559,7 @@ function createUploadSyncService(options) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const playerMetadata = await getPlayerTaskMetadata(preferredPlayerIdentifier, targetBaseUrl);
|
||||
const relativePath = getUploadRelativePath(uploadPath);
|
||||
if (!relativePath) {
|
||||
return false;
|
||||
@@ -516,7 +569,8 @@ function createUploadSyncService(options) {
|
||||
method: 'DELETE',
|
||||
pathname: `/api/media/${encodeURIComponent(relativePath)}`
|
||||
});
|
||||
const response = await fetch(`${targetBaseUrl}/api/media/${encodeURIComponent(relativePath)}`, {
|
||||
const mediaDeleteUrl = appendPlayerDeviceIdToUrl(`${targetBaseUrl}/api/media/${encodeURIComponent(relativePath)}`, playerMetadata && playerMetadata.playerIdentifier);
|
||||
const response = await fetch(mediaDeleteUrl, {
|
||||
method: 'DELETE',
|
||||
headers: {
|
||||
Accept: 'application/json',
|
||||
@@ -744,16 +798,16 @@ function createUploadSyncService(options) {
|
||||
}
|
||||
const resolvedPlayerInternalBaseUrl = playerMetadata && playerMetadata.playerInternalBaseUrl
|
||||
? playerMetadata.playerInternalBaseUrl
|
||||
: await getPlayerInternalBaseUrl();
|
||||
: await getPlayerInternalBaseUrl(playerMetadata && playerMetadata.playerIdentifier, playerMetadata && playerMetadata.playerInternalBaseUrl);
|
||||
let successCount = 0;
|
||||
let failureCount = 0;
|
||||
for (let i = 0; i < pendingEntries.length; i += 1) {
|
||||
const operation = pendingEntries[i];
|
||||
let success = false;
|
||||
if (operation.type === 'delete') {
|
||||
success = await removeUploadFileFromPlayer(operation.uploadPath, operation.uploadDir, resolvedPlayerInternalBaseUrl);
|
||||
success = await removeUploadFileFromPlayer(operation.uploadPath, operation.uploadDir, resolvedPlayerInternalBaseUrl, playerMetadata && playerMetadata.playerIdentifier);
|
||||
} else {
|
||||
success = await pushUploadFileToPlayer(operation.uploadPath, operation.uploadDir, resolvedPlayerInternalBaseUrl);
|
||||
success = await pushUploadFileToPlayer(operation.uploadPath, operation.uploadDir, resolvedPlayerInternalBaseUrl, playerMetadata && playerMetadata.playerIdentifier);
|
||||
}
|
||||
if (success) {
|
||||
successCount += 1;
|
||||
@@ -795,6 +849,8 @@ function createUploadSyncService(options) {
|
||||
return;
|
||||
}
|
||||
|
||||
const playerMetadata = await getPlayerTaskMetadata(taskPayload.playerIdentifier, taskPayload.playerInternalBaseUrl);
|
||||
|
||||
const data = await common.fetchAdminData(pool);
|
||||
const uploadRefs = new Set();
|
||||
(data.slides || []).forEach(function (slide) {
|
||||
@@ -812,7 +868,8 @@ function createUploadSyncService(options) {
|
||||
queuePlayerUploadSync({
|
||||
type: 'put',
|
||||
uploadPath: uploadPath,
|
||||
uploadDir: uploadDir
|
||||
uploadDir: uploadDir,
|
||||
metadata: playerMetadata
|
||||
});
|
||||
});
|
||||
fontLibraryOperations.forEach(function (operation) {
|
||||
@@ -823,7 +880,8 @@ function createUploadSyncService(options) {
|
||||
queuePlayerUploadSync({
|
||||
type: String(operation.type || 'put').trim().toLowerCase() === 'delete' ? 'delete' : 'put',
|
||||
uploadPath: operation.uploadPath,
|
||||
uploadDir: uploadDir
|
||||
uploadDir: uploadDir,
|
||||
metadata: playerMetadata
|
||||
});
|
||||
});
|
||||
await flushPendingPlayerUploadSyncs();
|
||||
@@ -870,7 +928,7 @@ function createUploadSyncService(options) {
|
||||
safePayload.operation = Object.assign({}, safePayload.operation);
|
||||
delete safePayload.operation.pool;
|
||||
}
|
||||
const playerMetadata = await getPlayerTaskMetadata();
|
||||
const playerMetadata = await getPlayerTaskMetadata(safePayload.playerIdentifier, safePayload.playerInternalBaseUrl);
|
||||
|
||||
const definition = {
|
||||
key: taskKey,
|
||||
|
||||
@@ -29,7 +29,7 @@ module.exports = function registerMiddleware(app, deps) {
|
||||
});
|
||||
|
||||
app.use(function (req, res, next) {
|
||||
if (req.path === '/' || req.path === '/login' || req.path === '/logout' || req.path.indexOf('/api/internal/slide-thumbnails/') === 0 || req.path === '/api/internal/sync/player-media') {
|
||||
if (req.path === '/' || req.path === '/login' || req.path === '/logout' || req.path.indexOf('/api/internal/slide-thumbnails/') === 0 || req.path === '/api/internal/sync/player-media' || req.path === '/api/internal/sync/player-font') {
|
||||
return next();
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
// Internal sync trigger routes for player-driven queue flushes.
|
||||
|
||||
const { verifyRequestAuth } = require('#src/request-auth');
|
||||
const { collectFontLibrarySyncOperations } = require('#src/web/lib/media/font-library');
|
||||
|
||||
function requireRequestAuth(req, res, next) {
|
||||
if (!verifyRequestAuth(req)) {
|
||||
@@ -11,21 +12,77 @@ function requireRequestAuth(req, res, next) {
|
||||
}
|
||||
|
||||
module.exports = function registerInternalSyncRoutes(app, deps) {
|
||||
const backgroundTaskQueue = deps && deps.backgroundTaskQueue;
|
||||
const uploadSyncService = deps && deps.uploadSyncService;
|
||||
const mediaDir = String(deps && deps.mediaDir || '').trim();
|
||||
|
||||
if (!uploadSyncService || typeof uploadSyncService.flushPendingPlayerUploadSyncs !== 'function' || typeof uploadSyncService.runMediaSyncTask !== 'function' || !mediaDir) {
|
||||
if (!backgroundTaskQueue || typeof backgroundTaskQueue.enqueueTask !== 'function' || !uploadSyncService || !mediaDir) {
|
||||
throw new Error('registerInternalSyncRoutes requires the sync dependencies.');
|
||||
}
|
||||
|
||||
app.post('/api/internal/sync/player-media', requireRequestAuth, async function (_req, res, next) {
|
||||
try {
|
||||
await uploadSyncService.runMediaSyncTask({
|
||||
mode: 'initial',
|
||||
uploadDir: mediaDir
|
||||
const requestBody = _req.body && typeof _req.body === 'object' && !Array.isArray(_req.body)
|
||||
? _req.body
|
||||
: {};
|
||||
const playerIdentifier = String(requestBody.playerIdentifier || requestBody.deviceId || '').trim();
|
||||
const playerPublicBaseUrl = String(requestBody.playerPublicBaseUrl || '').trim();
|
||||
const playerInternalBaseUrl = String(requestBody.playerInternalBaseUrl || '').trim();
|
||||
const task = await backgroundTaskQueue.enqueueTask({
|
||||
key: 'player-media-sync',
|
||||
title: 'Player media sync',
|
||||
category: 'media-sync',
|
||||
taskType: 'media-sync',
|
||||
metadata: {
|
||||
playerIdentifier: playerIdentifier || null,
|
||||
playerPublicBaseUrl: playerPublicBaseUrl || null,
|
||||
playerInternalBaseUrl: playerInternalBaseUrl || null,
|
||||
playerLabel: playerIdentifier || playerPublicBaseUrl || playerInternalBaseUrl || null
|
||||
},
|
||||
payload: {
|
||||
mode: 'initial',
|
||||
uploadDir: mediaDir,
|
||||
playerIdentifier: playerIdentifier,
|
||||
playerPublicBaseUrl: playerPublicBaseUrl,
|
||||
playerInternalBaseUrl: playerInternalBaseUrl
|
||||
}
|
||||
});
|
||||
await uploadSyncService.flushPendingPlayerUploadSyncs();
|
||||
res.json({ ok: true });
|
||||
res.status(202).json({ ok: true, queued: true, task: task });
|
||||
} catch (error) {
|
||||
next(error);
|
||||
}
|
||||
});
|
||||
|
||||
app.post('/api/internal/sync/player-font', requireRequestAuth, async function (_req, res, next) {
|
||||
try {
|
||||
const requestBody = _req.body && typeof _req.body === 'object' && !Array.isArray(_req.body)
|
||||
? _req.body
|
||||
: {};
|
||||
const playerIdentifier = String(requestBody.playerIdentifier || requestBody.deviceId || '').trim();
|
||||
const playerPublicBaseUrl = String(requestBody.playerPublicBaseUrl || '').trim();
|
||||
const playerInternalBaseUrl = String(requestBody.playerInternalBaseUrl || '').trim();
|
||||
const operations = collectFontLibrarySyncOperations(mediaDir);
|
||||
const task = await backgroundTaskQueue.enqueueTask({
|
||||
key: 'player-font-sync',
|
||||
title: 'Player font sync',
|
||||
category: 'fonts',
|
||||
taskType: 'font-sync',
|
||||
metadata: {
|
||||
playerIdentifier: playerIdentifier || null,
|
||||
playerPublicBaseUrl: playerPublicBaseUrl || null,
|
||||
playerInternalBaseUrl: playerInternalBaseUrl || null,
|
||||
playerLabel: playerIdentifier || playerPublicBaseUrl || playerInternalBaseUrl || null
|
||||
},
|
||||
payload: {
|
||||
mode: 'initial',
|
||||
uploadDir: mediaDir,
|
||||
operations: operations,
|
||||
playerIdentifier: playerIdentifier,
|
||||
playerPublicBaseUrl: playerPublicBaseUrl,
|
||||
playerInternalBaseUrl: playerInternalBaseUrl
|
||||
}
|
||||
});
|
||||
res.status(202).json({ ok: true, queued: true, task: task });
|
||||
} catch (error) {
|
||||
next(error);
|
||||
}
|
||||
|
||||
@@ -25,6 +25,7 @@ function registerRoutes(app, deps) {
|
||||
registerSignageRoutes(app, deps);
|
||||
registerSettingsAndContentRoutes(app, deps);
|
||||
registerInternalSyncRoutes(app, {
|
||||
backgroundTaskQueue: deps.backgroundTaskQueue,
|
||||
uploadSyncService: deps.uploadSyncService,
|
||||
mediaDir: deps.mediaDir
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user