All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 47s
Thumbnails were failing in two different ways that both ended as an empty box. Cloudflare hotlink protection answers a cross-site Referer with 403, so images we had extracted correctly (dles.aukspot.com's og:image among them) never rendered — every onError handler set display:none and swallowed it. The new Thumbnail component loads with referrerPolicy="no-referrer", retries once through /api/proxy-image for hosts that reject an empty referrer too, and only then falls back to a placeholder. Separately, the extraction cascade ended at the page's icon and then a guessed /favicon.ico, so thumbnailUrl was almost never empty — just a 16x16 icon cover-cropped into a 128x72 box. It now stops at real artwork, with faviconUrl and accentColor (theme-color / msapplication-TileColor / mask-icon) as their own fields. An absent thumbnailUrl finally means "no artwork", which is what makes the placeholder possible: the site's own color mixed into the theme surface, with its favicon centered on it, or its initial. Contrast holds for any third-party color by construction rather than by luminance math, so nyt only has to set --thumb-tint-strength to 0% to stay monochrome and geocities only has to raise it. Missing accents fall back to a stable hostname-derived hue, so rows saved before this get a tint with no backfill. Migration 0011 reclassifies favicon-shaped thumbnailUrls on existing dumps. The journal mosaic keeps its pull-quote and text fallbacks — the placeholder appears there only to repair a broken image. Also fixed: refresh silently overwrote good metadata with a failure stub, the refresh button swallowed every error, refresh never broadcast the update, extractBestIcon ranked SVG icons below 16x16 PNGs, and shared links with no artwork carried no og:image at all. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
598 lines
18 KiB
TypeScript
598 lines
18 KiB
TypeScript
import type { RichContent } from "../model/interfaces.ts";
|
||
import { youtubeProvider } from "./providers/youtube.ts";
|
||
import { bandcampProvider } from "./providers/bandcamp.ts";
|
||
import { soundcloudProvider } from "./providers/soundcloud.ts";
|
||
import { selfProvider } from "./providers/self.ts";
|
||
import { genericProvider } from "./providers/generic.ts";
|
||
|
||
export interface RichContentProvider {
|
||
name: string;
|
||
matches(url: string): boolean;
|
||
fetch(url: string): Promise<RichContent>;
|
||
}
|
||
|
||
/**
|
||
* Register providers in priority order. The first match wins.
|
||
* `selfProvider` resolves gerbeur URLs directly from the DB (no HTTP round-trip).
|
||
* `genericProvider` must stay last — it always matches.
|
||
*/
|
||
const providers: RichContentProvider[] = [
|
||
youtubeProvider,
|
||
bandcampProvider,
|
||
soundcloudProvider,
|
||
selfProvider,
|
||
genericProvider,
|
||
];
|
||
|
||
// Shared utilities exported for use by providers
|
||
|
||
const FETCH_HEADERS = {
|
||
"User-Agent":
|
||
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36",
|
||
"Accept":
|
||
"text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8",
|
||
"Accept-Language": "fr-FR,fr;q=0.9,en-US;q=0.8,en;q=0.7",
|
||
};
|
||
|
||
/**
|
||
* Fetch `url` via a `curl --insecure` subprocess and return a minimal Response.
|
||
* Used as a last resort when Deno's rustls rejects the server's TLS certificate
|
||
* due to an unsupported algorithm (e.g. UnsupportedSignatureAlgorithm).
|
||
* Returns null if curl is unavailable or exits non-zero.
|
||
*/
|
||
async function fetchViaCurl(
|
||
url: string,
|
||
timeoutMs: number,
|
||
): Promise<Response | null> {
|
||
const tmpPath = await Deno.makeTempFile();
|
||
try {
|
||
const { code, stdout } = await new Deno.Command("curl", {
|
||
args: [
|
||
"--silent",
|
||
"--insecure",
|
||
"--location",
|
||
"--max-time",
|
||
String(Math.ceil(timeoutMs / 1000)),
|
||
"--user-agent",
|
||
FETCH_HEADERS["User-Agent"],
|
||
"--header",
|
||
`Accept: ${FETCH_HEADERS["Accept"]}`,
|
||
"--header",
|
||
`Accept-Language: ${FETCH_HEADERS["Accept-Language"]}`,
|
||
"--output",
|
||
tmpPath,
|
||
"--write-out",
|
||
"%{content_type}",
|
||
url,
|
||
],
|
||
stdout: "piped",
|
||
stderr: "null",
|
||
}).output();
|
||
|
||
if (code !== 0) return null;
|
||
|
||
const contentType = new TextDecoder().decode(stdout).trim();
|
||
const bytes = await Deno.readFile(tmpPath);
|
||
// Decode using the charset declared in the Content-Type header so that
|
||
// pages served in ISO-8859-1, windows-1252, etc. are read correctly.
|
||
const charset = /charset=([\w-]+)/i.exec(contentType)?.[1] ?? "utf-8";
|
||
let bodyText: string;
|
||
try {
|
||
bodyText = new TextDecoder(charset, { fatal: false }).decode(bytes);
|
||
} catch {
|
||
bodyText = new TextDecoder("utf-8", { fatal: false }).decode(bytes);
|
||
}
|
||
return new Response(bodyText, { headers: { "content-type": "text/html" } });
|
||
} catch {
|
||
return null;
|
||
} finally {
|
||
await Deno.remove(tmpPath).catch(() => {});
|
||
}
|
||
}
|
||
|
||
export async function fetchWithTimeout(
|
||
url: string,
|
||
timeoutMs = 5000,
|
||
): Promise<Response> {
|
||
async function attempt(): Promise<Response> {
|
||
const controller = new AbortController();
|
||
const timer = setTimeout(() => controller.abort(), timeoutMs);
|
||
try {
|
||
return await fetch(url, {
|
||
signal: controller.signal,
|
||
headers: FETCH_HEADERS,
|
||
});
|
||
} finally {
|
||
clearTimeout(timer);
|
||
}
|
||
}
|
||
|
||
try {
|
||
return await attempt();
|
||
} catch (err) {
|
||
if (!(err instanceof TypeError && err.message.includes("certificate"))) {
|
||
throw err;
|
||
}
|
||
|
||
// Deno/rustls rejected the server's TLS certificate (expired, self-signed,
|
||
// or an unsupported signature algorithm) and offers no way to override
|
||
// verification programmatically. Fall back to a `curl --insecure`
|
||
// subprocess, which uses its own TLS stack.
|
||
const curlRes = await fetchViaCurl(url, timeoutMs);
|
||
if (curlRes) return curlRes;
|
||
|
||
throw err;
|
||
}
|
||
}
|
||
|
||
function decodeHtmlEntities(str: string): string {
|
||
return str
|
||
.replace(/&/gi, "&")
|
||
.replace(/</gi, "<")
|
||
.replace(/>/gi, ">")
|
||
.replace(/"/gi, '"')
|
||
.replace(/'/gi, "'")
|
||
.replace(/&#(\d+);/g, (_, dec) => String.fromCodePoint(Number(dec)))
|
||
.replace(
|
||
/&#x([0-9a-f]+);/gi,
|
||
(_, hex) => String.fromCodePoint(parseInt(hex, 16)),
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Find the first `<meta>` tag whose `attr` equals `value` and return its
|
||
* `content` (either attribute ordering). Each tag is matched in isolation so
|
||
* the `content` capture can never span across tag boundaries.
|
||
*/
|
||
function extractMetaContent(
|
||
html: string,
|
||
attr: string,
|
||
value: string,
|
||
): string | undefined {
|
||
const escaped = value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
||
const keyRe = new RegExp(`\\b${attr}=["']${escaped}["']`, "i");
|
||
const contentRe = /\bcontent=(["'])([\s\S]*?)\1/i;
|
||
const tagRe = /<meta\b[^>]*>/gi;
|
||
let m: RegExpExecArray | null;
|
||
while ((m = tagRe.exec(html)) !== null) {
|
||
const tag = m[0];
|
||
if (!keyRe.test(tag)) continue;
|
||
const content = contentRe.exec(tag);
|
||
if (content) return decodeHtmlEntities(content[2]);
|
||
}
|
||
return undefined;
|
||
}
|
||
|
||
export function extractOgTag(
|
||
html: string,
|
||
tag: string,
|
||
): string | undefined {
|
||
return extractMetaContent(html, "property", `og:${tag}`);
|
||
}
|
||
|
||
/** Extract content from `<meta name="…" content="…">` (both attribute orderings). */
|
||
export function extractMetaName(
|
||
html: string,
|
||
name: string,
|
||
): string | undefined {
|
||
return extractMetaContent(html, "name", name);
|
||
}
|
||
|
||
/** Extract the text content of the `<title>` element. */
|
||
export function extractPageTitle(html: string): string | undefined {
|
||
const match = html.match(/<title[^>]*>([^<]+)<\/title>/i);
|
||
return match ? decodeHtmlEntities(match[1].trim()) : undefined;
|
||
}
|
||
|
||
// ── Brand color helpers ───────────────────────────────────────────────────────
|
||
|
||
/**
|
||
* Find the page's `theme-color`.
|
||
*
|
||
* Sites routinely ship the tag twice, scoped by `media`, and often list the
|
||
* dark-scheme one first — so unlike `extractMetaName` this can't just take the
|
||
* first match. Prefer the unscoped tag, then the light-scheme one, then any.
|
||
*/
|
||
export function extractThemeColor(html: string): string | undefined {
|
||
const tagRe = /<meta\b[^>]*>/gi;
|
||
const contentRe = /\bcontent=(["'])([\s\S]*?)\1/i;
|
||
const mediaRe = /\bmedia=(["'])([\s\S]*?)\1/i;
|
||
let unscoped: string | undefined;
|
||
let light: string | undefined;
|
||
let any: string | undefined;
|
||
|
||
let m: RegExpExecArray | null;
|
||
while ((m = tagRe.exec(html)) !== null) {
|
||
const tag = m[0];
|
||
if (!/\bname=["']theme-color["']/i.test(tag)) continue;
|
||
const content = contentRe.exec(tag)?.[2];
|
||
if (!content) continue;
|
||
const media = mediaRe.exec(tag)?.[2];
|
||
if (!media) unscoped ??= content;
|
||
else if (/light/i.test(media)) light ??= content;
|
||
any ??= content;
|
||
}
|
||
return unscoped ?? light ?? any;
|
||
}
|
||
|
||
/** Extract the `color` of `<link rel="mask-icon">` (Safari pinned tabs). */
|
||
export function extractMaskIconColor(html: string): string | undefined {
|
||
const linkRe = /<link[^>]+>/gi;
|
||
let m: RegExpExecArray | null;
|
||
while ((m = linkRe.exec(html)) !== null) {
|
||
const tag = m[0];
|
||
if (!/\brel=["'][^"']*mask-icon[^"']*["']/i.test(tag)) continue;
|
||
const color = /\bcolor=(["'])([\s\S]*?)\1/i.exec(tag)?.[2];
|
||
if (color) return color;
|
||
}
|
||
return undefined;
|
||
}
|
||
|
||
// The handful of named colors that actually show up in `theme-color`. The full
|
||
// 148-name table isn't worth carrying for the long tail.
|
||
const NAMED_COLORS: Record<string, string> = {
|
||
black: "#000000",
|
||
white: "#ffffff",
|
||
red: "#ff0000",
|
||
green: "#008000",
|
||
blue: "#0000ff",
|
||
yellow: "#ffff00",
|
||
orange: "#ffa500",
|
||
purple: "#800080",
|
||
gray: "#808080",
|
||
grey: "#808080",
|
||
silver: "#c0c0c0",
|
||
maroon: "#800000",
|
||
navy: "#000080",
|
||
teal: "#008080",
|
||
olive: "#808000",
|
||
lime: "#00ff00",
|
||
aqua: "#00ffff",
|
||
cyan: "#00ffff",
|
||
fuchsia: "#ff00ff",
|
||
magenta: "#ff00ff",
|
||
};
|
||
|
||
function clampByte(n: number): number {
|
||
return Math.max(0, Math.min(255, Math.round(n)));
|
||
}
|
||
|
||
/**
|
||
* Normalize a CSS color to canonical lowercase `#rrggbb`, or `undefined` when
|
||
* it isn't one of the forms sites actually use. Alpha is dropped — the color is
|
||
* only ever used as a tint over the app's own surface.
|
||
*/
|
||
export function normalizeCssColor(raw: string | undefined): string | undefined {
|
||
if (!raw) return undefined;
|
||
const value = raw.trim().toLowerCase();
|
||
|
||
const named = NAMED_COLORS[value];
|
||
if (named) return named;
|
||
|
||
const hex = /^#([0-9a-f]{3,8})$/.exec(value)?.[1];
|
||
if (hex) {
|
||
if (hex.length === 3 || hex.length === 4) {
|
||
const [r, g, b] = [...hex.slice(0, 3)];
|
||
return `#${r}${r}${g}${g}${b}${b}`;
|
||
}
|
||
if (hex.length === 6 || hex.length === 8) return `#${hex.slice(0, 6)}`;
|
||
return undefined;
|
||
}
|
||
|
||
const rgb = /^rgba?\(([^)]+)\)$/.exec(value)?.[1];
|
||
if (rgb) {
|
||
const parts = rgb.split(/[\s,/]+/).filter(Boolean).slice(0, 3);
|
||
if (parts.length !== 3) return undefined;
|
||
const bytes = parts.map((p) => {
|
||
const n = parseFloat(p);
|
||
if (!Number.isFinite(n)) return NaN;
|
||
return clampByte(p.endsWith("%") ? (n / 100) * 255 : n);
|
||
});
|
||
if (bytes.some(Number.isNaN)) return undefined;
|
||
return `#${bytes.map((b) => b.toString(16).padStart(2, "0")).join("")}`;
|
||
}
|
||
|
||
return undefined;
|
||
}
|
||
|
||
// ── JSON-LD helpers (file-private) ────────────────────────────────────────────
|
||
|
||
type JsonLdResult = {
|
||
title?: string;
|
||
description?: string;
|
||
thumbnailUrl?: string;
|
||
};
|
||
|
||
function ldString(v: unknown): string | undefined {
|
||
if (typeof v === "string" && v.trim()) return v.trim();
|
||
if (Array.isArray(v) && typeof v[0] === "string" && v[0].trim()) {
|
||
return v[0].trim();
|
||
}
|
||
return undefined;
|
||
}
|
||
|
||
function ldImage(v: unknown): string | undefined {
|
||
if (
|
||
typeof v === "string" &&
|
||
(v.startsWith("http://") || v.startsWith("https://"))
|
||
) return v;
|
||
if (Array.isArray(v)) return ldImage(v[0]);
|
||
if (v && typeof v === "object") {
|
||
const o = v as Record<string, unknown>;
|
||
return ldImage(o.url ?? o.contentUrl);
|
||
}
|
||
return undefined;
|
||
}
|
||
|
||
function ldExtractNode(data: unknown): JsonLdResult {
|
||
if (Array.isArray(data)) {
|
||
for (const item of data) {
|
||
const r = ldExtractNode(item);
|
||
if (r.title || r.thumbnailUrl) return r;
|
||
}
|
||
return {};
|
||
}
|
||
if (!data || typeof data !== "object") return {};
|
||
const o = data as Record<string, unknown>;
|
||
if (o["@graph"]) return ldExtractNode(o["@graph"]);
|
||
return {
|
||
title: ldString(o.name ?? o.headline),
|
||
description: ldString(o.description),
|
||
thumbnailUrl: ldImage(o.image ?? o.thumbnailUrl ?? o.thumbnail),
|
||
};
|
||
}
|
||
|
||
/**
|
||
* Parse every `<script type="application/ld+json">` block and return the first
|
||
* node that yields a title or image. Handles `@graph`, arrays, and the common
|
||
* `image` shapes (string, string[], ImageObject).
|
||
*/
|
||
export function extractJsonLd(html: string): JsonLdResult {
|
||
const pattern =
|
||
/<script[^>]+type=["']application\/ld\+json["'][^>]*>([\s\S]*?)<\/script>/gi;
|
||
let match: RegExpExecArray | null;
|
||
while ((match = pattern.exec(html)) !== null) {
|
||
try {
|
||
const result = ldExtractNode(JSON.parse(match[1]));
|
||
if (result.title || result.thumbnailUrl) return result;
|
||
} catch { /* invalid JSON — skip */ }
|
||
}
|
||
return {};
|
||
}
|
||
|
||
/**
|
||
* Return the `src` of the first `<img>` whose declared width or height is at
|
||
* least `minSize` pixels (default 200). Skips data URIs. Resolves relative URLs.
|
||
*/
|
||
export function extractLargeImage(
|
||
html: string,
|
||
baseUrl: string,
|
||
minSize = 200,
|
||
): string | undefined {
|
||
const imgPattern = /<img[^>]+>/gi;
|
||
let match: RegExpExecArray | null;
|
||
while ((match = imgPattern.exec(html)) !== null) {
|
||
const tag = match[0];
|
||
const src = /\bsrc=["']([^"']+)["']/i.exec(tag)?.[1];
|
||
if (!src || src.startsWith("data:")) continue;
|
||
const w = parseInt(/\bwidth=["']?(\d+)/i.exec(tag)?.[1] ?? "0");
|
||
const h = parseInt(/\bheight=["']?(\d+)/i.exec(tag)?.[1] ?? "0");
|
||
if (w >= minSize && h >= minSize) {
|
||
try {
|
||
return new URL(src, baseUrl).toString();
|
||
} catch {
|
||
continue;
|
||
}
|
||
}
|
||
}
|
||
return undefined;
|
||
}
|
||
|
||
/**
|
||
* Collect all `<link rel="icon">` / `<link rel="apple-touch-icon">` tags, rank
|
||
* them by declared size (largest wins), and return the best resolved URL.
|
||
* Falls back to the first match when no `sizes` attribute is present.
|
||
*
|
||
* SVG icons are ranked above everything: they carry no `sizes` attribute, so
|
||
* they'd otherwise score 0 and lose to a 16×16 PNG, yet they scale cleanly to
|
||
* whatever size the placeholder renders them at.
|
||
*/
|
||
export function extractBestIcon(
|
||
html: string,
|
||
baseUrl: string,
|
||
): string | undefined {
|
||
const linkRe = /<link[^>]+>/gi;
|
||
const relRe = /\brel=["']([^"']+)["']/i;
|
||
const hrefRe = /\bhref=["']([^"']+)["']/i;
|
||
const sizesRe = /\bsizes=["']([^"']+)["']/i;
|
||
|
||
const candidates: { href: string; area: number }[] = [];
|
||
|
||
let m: RegExpExecArray | null;
|
||
while ((m = linkRe.exec(html)) !== null) {
|
||
const tag = m[0];
|
||
const rel = relRe.exec(tag)?.[1] ?? "";
|
||
if (!/\bicon\b/i.test(rel) && !/apple-touch-icon/i.test(rel)) continue;
|
||
const href = hrefRe.exec(tag)?.[1];
|
||
if (!href) continue;
|
||
const sizesStr = sizesRe.exec(tag)?.[1] ?? "";
|
||
const sm = sizesStr.match(/(\d+)x(\d+)/i);
|
||
const isSvg = /\.svg(\?|$)/i.test(href) ||
|
||
/\btype=["']image\/svg\+xml["']/i.test(tag);
|
||
const area = isSvg
|
||
? Number.MAX_SAFE_INTEGER
|
||
: sm
|
||
? parseInt(sm[1]) * parseInt(sm[2])
|
||
: 0;
|
||
try {
|
||
candidates.push({ href: new URL(href, baseUrl).toString(), area });
|
||
} catch {
|
||
continue;
|
||
}
|
||
}
|
||
|
||
if (candidates.length === 0) return undefined;
|
||
candidates.sort((a, b) => b.area - a.area);
|
||
return candidates[0].href;
|
||
}
|
||
|
||
/**
|
||
* Return the `src` of the first `<img>` that looks like content rather than UI
|
||
* chrome. Skips SVGs, data URIs, and images whose filename matches common
|
||
* icon/logo/nav patterns (logo, icon, sprite, favicon, avatar, banner, etc.).
|
||
* Resolves relative and protocol-relative URLs.
|
||
*/
|
||
const UI_IMAGE_KEYWORDS = new Set([
|
||
"logo",
|
||
"icon",
|
||
"sprite",
|
||
"favicon",
|
||
"avatar",
|
||
"banner",
|
||
"header",
|
||
"nav",
|
||
"menu",
|
||
"cart",
|
||
"search",
|
||
"tracking",
|
||
"pixel",
|
||
"bg",
|
||
"background",
|
||
]);
|
||
|
||
function isUiImage(src: string): boolean {
|
||
if (/\.svg(\?|$)/i.test(src)) return true;
|
||
const filename = src.split("?")[0].split("/").pop() ?? "";
|
||
const baseName = filename.replace(/\.[^.]+$/, ""); // strip extension
|
||
// Split on common filename separators (-, _, .) and check each token
|
||
return baseName.toLowerCase().split(/[-_.]/).some((t) =>
|
||
UI_IMAGE_KEYWORDS.has(t)
|
||
);
|
||
}
|
||
|
||
/**
|
||
* Return the `src` of the first `<img>` that looks like content rather than UI
|
||
* chrome. Skips SVGs, data URIs, and images whose filename tokens match common
|
||
* icon/logo/nav patterns (logo, icon, sprite, etc.).
|
||
* Resolves relative and protocol-relative URLs.
|
||
*/
|
||
export function extractFirstContentImage(
|
||
html: string,
|
||
baseUrl: string,
|
||
): string | undefined {
|
||
const imgPattern = /<img[^>]+>/gi;
|
||
let match: RegExpExecArray | null;
|
||
while ((match = imgPattern.exec(html)) !== null) {
|
||
const tag = match[0];
|
||
const src = /\bsrc=["']([^"']+)["']/i.exec(tag)?.[1];
|
||
if (!src || src.startsWith("data:")) continue;
|
||
if (isUiImage(src)) continue;
|
||
try {
|
||
return new URL(src, baseUrl).toString();
|
||
} catch {
|
||
continue;
|
||
}
|
||
}
|
||
return undefined;
|
||
}
|
||
|
||
/**
|
||
* Extract `href` from the first `<link rel="…">` whose rel contains `relFragment`,
|
||
* resolved to an absolute URL using `baseUrl`.
|
||
*/
|
||
export function extractLinkHref(
|
||
html: string,
|
||
relFragment: string,
|
||
baseUrl: string,
|
||
): string | undefined {
|
||
const escaped = relFragment.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
||
const patterns = [
|
||
new RegExp(
|
||
`<link[^>]+rel=["'][^"']*${escaped}[^"']*["'][^>]+href=["']([^"']+)["']`,
|
||
"i",
|
||
),
|
||
new RegExp(
|
||
`<link[^>]+href=["']([^"']+)["'][^>]+rel=["'][^"']*${escaped}[^"']*["']`,
|
||
"i",
|
||
),
|
||
];
|
||
for (const pattern of patterns) {
|
||
const match = html.match(pattern);
|
||
if (match) {
|
||
try {
|
||
return new URL(match[1], baseUrl).toString();
|
||
} catch {
|
||
return undefined;
|
||
}
|
||
}
|
||
}
|
||
return undefined;
|
||
}
|
||
|
||
function isPrivateHost(hostname: string): boolean {
|
||
// Block loopback and RFC-1918 ranges. Note: DNS rebinding is not fully mitigated.
|
||
if (hostname === "localhost" || hostname === "::1") return true;
|
||
return /^(127\.|10\.|172\.(1[6-9]|2\d|3[01])\.|192\.168\.)/.test(hostname);
|
||
}
|
||
|
||
const SELF_PATH_RE = /^\/(dumps|users|playlists)\/[^/]+$/;
|
||
|
||
export function isValidHttpUrl(raw: string): boolean {
|
||
try {
|
||
const u = new URL(raw);
|
||
if (u.protocol !== "http:" && u.protocol !== "https:") return false;
|
||
// Allow private hosts for self-referential gerbeur URLs — they are
|
||
// resolved directly from the DB by selfProvider, no outbound HTTP needed.
|
||
if (isPrivateHost(u.hostname) && !SELF_PATH_RE.test(u.pathname)) {
|
||
return false;
|
||
}
|
||
return true;
|
||
} catch {
|
||
return false;
|
||
}
|
||
}
|
||
|
||
export interface FetchRichContentResult {
|
||
/** False when the page couldn't be reached at all, as opposed to reached and
|
||
* found to carry no metadata. Callers that already hold good metadata must
|
||
* not overwrite it with a failure stub. */
|
||
ok: boolean;
|
||
content?: RichContent;
|
||
}
|
||
|
||
/**
|
||
* Fetch metadata for `url`, reporting whether the fetch itself succeeded.
|
||
*
|
||
* On failure it still yields a minimal stub so a *new* dump has something
|
||
* displayable, but `ok: false` lets callers with existing metadata keep it.
|
||
*/
|
||
export async function tryFetchRichContent(
|
||
url: string,
|
||
): Promise<FetchRichContentResult> {
|
||
try {
|
||
const provider = providers.find((p) => p.matches(url))!;
|
||
return { ok: true, content: await provider.fetch(url) };
|
||
} catch (err) {
|
||
console.error(`[rich-content] Failed to fetch metadata for ${url}:`, err);
|
||
try {
|
||
return {
|
||
ok: false,
|
||
content: {
|
||
type: "generic",
|
||
url,
|
||
siteName: new URL(url).hostname.replace(/^www\./, ""),
|
||
},
|
||
};
|
||
} catch {
|
||
return { ok: false };
|
||
}
|
||
}
|
||
}
|
||
|
||
/** Metadata for `url`, or a minimal stub when it can't be fetched. */
|
||
export async function fetchRichContent(
|
||
url: string,
|
||
): Promise<RichContent | undefined> {
|
||
return (await tryFetchRichContent(url)).content;
|
||
}
|