screentinker/server/scripts/backfill-rotation-dims.js
ScreenTinker 260a0ca4b8 spike: replace sharp with pure-JS image ops (jimp + jsquash WASM)
Removes the last native dependency from the ingest path, so the server no longer
needs a per-platform/per-ABI prebuilt to thumbnail an image. Motivated by getting
the server onto hardware with no toolchain, but the ABI tax is paid on every
install — it is the same failure class lib/preflight-deps.js exists to explain.

lib/image-ops.js is the whole surface: metadata() and writeThumbnail(), which are
the only two things ingest ever asked sharp for.

Format parity holds. jpeg/png/gif/tiff/bmp are native to Jimp; webp and avif go
through @jsquash WASM, whose bundled .wasm must be compiled by hand because the
packages locate it with fetch(file://) and Node has no file:// fetch — the only
symptom otherwise is a bare "fetch failed". heic is unsupported, as it already
was: sharp advertises heif but its prebuilt libvips refuses HEVC.

#170 is preserved by a different mechanism. Jimp applies EXIF orientation at
decode and rewrites the tag to 1, so metadata() reports display dimensions and
imageDisplayDims() runs as a no-op instead of swapping W/H a second time. The
helper stays in the path so the rule keeps living in one place.

Verified: 1643/1643 tests pass, and ingest was exercised in a child process with
node_modules/sharp moved aside — jpeg, EXIF-rotated jpeg, png, webp, avif, gif
all measured and thumbnailed correctly, corrupt input still yields nulls with no
phantom thumbnail_path.

KNOWN BLOCKER, do not ship as-is: Jimp is pure JS on the main thread, where sharp
handed work to a libvips threadpool. A 12MP photo goes 65ms -> 1079ms, and the
event loop stalls for 1003ms of it (sharp: zero stalls). thumbnail-backfill.js
walks a whole library at boot, so this reproduces #240 exactly — blocked loop,
missed heartbeats, panels marked offline, reconnect churn. Needs a worker_thread
offload before this is viable; image-ops.js is the seam for it.
2026-08-13 11:09:59 -05:00

82 lines
4 KiB
JavaScript

'use strict';
// #170 backfill: correct stored width/height for already-uploaded portrait media that was
// ingested before the rotation-aware fix (coded dims, rotation ignored -> stored landscape).
// Re-probes each content file on disk, recomputes DISPLAY dims via lib/media-orientation, and
// (with --apply) updates the row + regenerates mis-oriented IMAGE thumbnails (old image thumbs
// were written without EXIF auto-orient; old video thumbs were already auto-rotated by ffmpeg).
//
// Idempotent: a second run finds nothing to change. Dry-run by default.
// node scripts/backfill-rotation-dims.js # report only
// node scripts/backfill-rotation-dims.js --apply # write corrections
// node scripts/backfill-rotation-dims.js --apply --limit 50
//
// In Docker: docker exec <container> node scripts/backfill-rotation-dims.js --apply
const path = require('path');
const fs = require('fs');
const { execFileSync } = require('child_process');
const { db } = require('../db/database');
const config = require('../config');
const { videoDisplayDims, imageDisplayDims } = require('../lib/media-orientation');
const APPLY = process.argv.includes('--apply');
const limitArg = process.argv.indexOf('--limit');
const LIMIT = limitArg >= 0 ? parseInt(process.argv[limitArg + 1], 10) || 0 : 0;
function probeVideoDims(filePath) {
const out = execFileSync('ffprobe', ['-v', 'quiet', '-print_format', 'json', '-show_streams', filePath], { timeout: 15000 }).toString();
const stream = (JSON.parse(out).streams || []).find(s => s.codec_type === 'video');
return videoDisplayDims(stream);
}
async function probeImageDims(filePath) {
const imageOps = require('../lib/image-ops');
return imageDisplayDims(await imageOps.metadata(filePath));
}
async function regenImageThumb(filePath, thumbName) {
const imageOps = require('../lib/image-ops');
// Rotation is implicit: the decoder auto-orients per EXIF, which is what .rotate() bought here.
await imageOps.writeThumbnail(filePath, path.join(config.contentDir, thumbName), config.thumbnailWidth, 70);
}
(async () => {
const rows = db.prepare(
`SELECT id, filepath, thumbnail_path, mime_type, width, height FROM content
WHERE filepath IS NOT NULL AND (mime_type LIKE 'image/%' OR mime_type LIKE 'video/%')
${LIMIT ? 'LIMIT ' + LIMIT : ''}`
).all();
let checked = 0, corrected = 0, missing = 0, probeErr = 0, thumbRegen = 0;
const changes = [];
for (const row of rows) {
const filePath = path.join(config.contentDir, row.filepath);
if (!fs.existsSync(filePath)) { missing++; continue; }
checked++;
let dims;
try {
dims = row.mime_type.startsWith('image/') ? await probeImageDims(filePath) : probeVideoDims(filePath);
} catch (e) { probeErr++; continue; }
if (dims.width == null || dims.height == null) continue;
if (dims.width === row.width && dims.height === row.height) continue; // already correct
corrected++;
changes.push({ id: row.id, from: `${row.width}x${row.height}`, to: `${dims.width}x${dims.height}`, mime: row.mime_type });
if (APPLY) {
db.prepare('UPDATE content SET width = ?, height = ? WHERE id = ?').run(dims.width, dims.height, row.id);
// Regenerate the image thumbnail (video thumbs were already auto-rotated at ingest).
if (row.mime_type.startsWith('image/') && row.thumbnail_path) {
try { await regenImageThumb(filePath, row.thumbnail_path); thumbRegen++; } catch (e) { /* best-effort */ }
}
}
}
console.log(`${APPLY ? 'APPLIED' : 'DRY-RUN'} — content rows: ${rows.length} | on-disk checked: ${checked} | missing file: ${missing} | probe errors: ${probeErr}`);
console.log(`dimension corrections ${APPLY ? 'written' : 'needed'}: ${corrected}${APPLY ? ` | image thumbnails regenerated: ${thumbRegen}` : ''}`);
for (const c of changes.slice(0, 40)) console.log(` ${c.id.slice(0, 8)} ${c.mime} ${c.from} -> ${c.to}`);
if (changes.length > 40) console.log(` … and ${changes.length - 40} more`);
if (!APPLY && corrected) console.log('\nRe-run with --apply to write these corrections.');
})();