--- import { WEBMENTION_TOKEN } from 'astro:env/server'; import { DEFAULT_LOCALE, type Locale } from '~/consts'; import { getLocaleFromUrl, t } from '~/i18n/ui'; interface WMAuthor { name?: string; url?: string; photo?: string; } interface WMEntry { author?: WMAuthor; url: string; published?: string; 'wm-received'?: string; 'wm-id'?: number; 'wm-property'?: string; content?: { text?: string }; } interface Props { target: string | URL; locale?: Locale; } const { target, locale = getLocaleFromUrl(Astro.url) ?? DEFAULT_LOCALE } = Astro.props; interface FetchResult { mentions: WMEntry[]; debug: string; } async function fetchMentions(target: string): Promise { // Probe multiple env sources to see which one has the token at build time. const fromAstroEnv = WEBMENTION_TOKEN; const procEnv = typeof process !== 'undefined' ? process.env : {}; const procKeyCount = Object.keys(procEnv).length; const hasWebmentionKey = 'WEBMENTION_TOKEN' in procEnv; const procValLen = hasWebmentionKey && typeof procEnv['WEBMENTION_TOKEN'] === 'string' ? (procEnv['WEBMENTION_TOKEN'] as string).length : 0; const token = fromAstroEnv || (hasWebmentionKey ? (procEnv['WEBMENTION_TOKEN'] as string) : undefined); const tokenLen = typeof token === 'string' ? token.length : 0; const probe = `ae=${fromAstroEnv ? (fromAstroEnv as string).length : 0},pk=${procKeyCount},phas=${hasWebmentionKey},pv=${procValLen}`; if (!token) return { mentions: [], debug: `no-token(${probe})` }; const withSlash = target.endsWith('/') ? target : `${target}/`; const withoutSlash = target.replace(/\/+$/, ''); const fetchOne = async (t: string) => { const url = new URL('https://webmention.io/api/mentions.jf2'); url.searchParams.set('target', t); url.searchParams.set('token', token); url.searchParams.set('per-page', '100'); const res = await fetch(url); if (!res.ok) return { entries: [] as WMEntry[], status: res.status }; const json = (await res.json()) as { children?: WMEntry[] }; return { entries: json.children ?? [], status: 200 }; }; const [a, b] = await Promise.all([fetchOne(withSlash), fetchOne(withoutSlash)]); const seen = new Set(); const merged: WMEntry[] = []; for (const m of [...a.entries, ...b.entries]) { const id = m['wm-id']; if (id == null || seen.has(id)) continue; seen.add(id); merged.push(m); } return { mentions: merged, debug: `ok(${probe}) slash=${a.status}:${a.entries.length} noslash=${b.status}:${b.entries.length}`, }; } const targetStr = target.toString(); const { mentions: all, debug: fetchDebug } = await fetchMentions(targetStr); const likes = all.filter((m) => m['wm-property'] === 'like-of'); const reposts = all.filter((m) => m['wm-property'] === 'repost-of'); const replies = all.filter((m) => m['wm-property'] === 'in-reply-to'); const mentions = all.filter( (m) => !['like-of', 'repost-of', 'in-reply-to', 'bookmark-of'].includes(m['wm-property'] ?? ''), ); const facepile = [...likes, ...reposts]; function authorInitial(m: WMEntry) { return m.author?.name?.trim()?.[0]?.toUpperCase() ?? '?'; } function formatDate(iso?: string) { if (!iso) return ''; const d = new Date(iso); return d.toLocaleDateString(locale === 'de' ? 'de-DE' : 'en-US', { year: 'numeric', month: 'short', day: 'numeric', }); } const hasAny = facepile.length > 0 || replies.length > 0 || mentions.length > 0; --- { hasAny && (

{t(locale, 'webmentions.title')}

{facepile.length > 0 && (
{likes.length > 0 && (

{`${likes.length} ${t(locale, likes.length === 1 ? 'webmentions.like' : 'webmentions.likes')}`}

)} {reposts.length > 0 && (

{`${reposts.length} ${t(locale, reposts.length === 1 ? 'webmentions.repost' : 'webmentions.reposts')}`}

)}
)} {replies.length > 0 && (

{t(locale, 'webmentions.replies')}

    {replies.map((m) => (
  1. {m.content?.text &&

    {m.content.text}

    }
  2. ))}
)} {mentions.length > 0 && (

{t(locale, 'webmentions.mentions')}

)}
) }