source: Klonkt/src/services/ActivityPubService.js@ 8151340

main
Last change on this file since 8151340 was 1976a10, checked in by Robin <roboburr@…>, 2 weeks ago

Opsplitsing stap 10 (shaer-drc): de Cirkel naar ap-cirkel.js

De feed van uitgelichte accounts plus zelf gebooste posts en de twee
lijstjes eromheen -- 28 regels, byte-voor-byte. De enige snede tot nu
toe zonder ook maar een werktuig uit de dienstlaag: alleen db.

Uitvoeroppervlak voor en na identiek gemeten (199 named exports, 180
sleutels op het default-object). Volle suite 1226 groen.
ActivityPubService staat nu op 4346 regels.

  • Property mode set to 100644
File size: 239.0 KB
Line 
1/**
2 * ActivityPubService — Klonkt as a real ActivityPub actor (fediverse bridge).
3 *
4 * Phase 1 (this file): the PUBLISH/discoverable side.
5 * - per-site RSA keypair (Mastodon-compatible HTTP Signatures; separate from
6 * the Ed25519 keys used by the lighter Cirkels v1)
7 * - builders for the Actor document, Note objects and the Outbox collection
8 * - apWants(): HTTP content-negotiation helper (activity+json vs HTML)
9 *
10 * The interactive side (inbox: Follow/Accept, signature verify, delivery to
11 * followers) lands in the next step and is tested live against Mastodon.
12 *
13 * AP actor URLs live under /ap/* so they never clash with the human pages:
14 * actor = <base>/ap/users/<slug>
15 * inbox = <actor>/inbox outbox = <actor>/outbox
16 * note = <base>/ap/notes/<postId>
17 */
18import crypto from 'crypto';
19import fs from 'fs';
20import path from 'path';
21import db from '../config/database.js';
22import HtmlSanitizerService from './HtmlSanitizerService.js';
23import AudioEmbedService from './AudioEmbedService.js';
24import EmbedResolver from './EmbedResolver.js';
25import Push from './PushService.js';
26import { t as i18nT } from './i18n.js';
27import Blocklist from './BlocklistService.js';
28import * as Guardianship from './guardianship/index.js';
29import { PUBLIC, AP_CONTEXT, safeUrl, actorId, noteId, guessMediaType, normalizeTags, tagParts, hashtagTags, buildHashtagList, pagedCollection, PAGINA_GROOTTE, artiestUrl } from './ap-core.js';
30// Stap 3 van de opsplitsing (shaer-drc): het transport -- de SSRF-poort, de
31// sleutels, HTTP Signatures, de bezorging met wachtrij en de ondertekende
32// GET -- woont in ap-transport.js. Hier her-geëxporteerd zodat elke bestaande
33// importeur blijft werken, hetzelfde patroon als de Guardianship-exports onderaan.
34import {
35 safeFetch, getOrCreateKeys, deliver, fetchActor,
36 enqueueDelivery, deliverWithRetry, processDeliveryQueue, startDeliveryWorker,
37 anySigningSlug, verifyRequest, signedGetHeaders, signedGetJson, apGetJson,
38} from './ap-transport.js';
39export {
40 safeFetch, getOrCreateKeys, deliver, fetchActor,
41 enqueueDelivery, deliverWithRetry, processDeliveryQueue, startDeliveryWorker,
42 verifyRequest, signedGetHeaders, signedGetJson,
43};
44// Stap 4 (shaer-drc): de C2S-inname woont in ap-c2s.js. Die is een coordinator
45// en krijgt zijn werktuigen uit de dienstlaag onderaan dit bestand via
46// wireC2S -- de regel blijft dat een module NOOIT uit dit bestand importeert.
47import { ingestOutboxActivity, wireC2S } from './ap-c2s.js';
48export { ingestOutboxActivity };
49// Stap 5 (shaer-drc): de leeskant van de tijdlijn woont in ap-timeline.js.
50// tlStmts komt mee terug omdat de SCHRIJVERS (inbox, backfill, self-heal,
51// upsertBoostedNote) hier wonen; wireTimeline krijgt onderaan zijn ene
52// werktuig uit het reactiecluster.
53import {
54 tlStmts, wireTimeline,
55 getTimeline, replyRowsByUri, timelineRowsByIds, getReplyMessages,
56 feedCursor, feedChangesSince, waitForFeedChange,
57 conversationHeads, conversationHistory, messageRowsByUri,
58 readMarkers, markRead, unreadPerConversation, getDirectMessages,
59 isoStamp, timelineAttachments, extractEmojiTags, gateAttachments,
60 stripEmojiTags, timelineEmojis, extractObjectLinkTags, timelineObjectLinks,
61 extractQuoteUrl, extractLinkJson, quoteHrefOf, timelineQuote,
62} from './ap-timeline.js';
63export {
64 getTimeline, replyRowsByUri, timelineRowsByIds, getReplyMessages,
65 feedCursor, feedChangesSince, waitForFeedChange,
66 conversationHeads, conversationHistory, messageRowsByUri,
67 readMarkers, markRead, unreadPerConversation, getDirectMessages,
68 isoStamp, timelineAttachments, extractEmojiTags, gateAttachments,
69 stripEmojiTags, timelineEmojis, extractObjectLinkTags, timelineObjectLinks,
70 extractQuoteUrl, extractLinkJson, quoteHrefOf, timelineQuote,
71};
72// Stap 6 (shaer-drc): het reactiecluster woont in ap-reactions.js. Dat
73// importeert tlStmts zelf statisch uit ap-timeline; alleen movedLock gaat er
74// onderaan via wireReactions in.
75import {
76 wireReactions,
77 setMyReaction, getMyReactions,
78 markBoosted, unmarkBoosted, markLiked, unmarkLiked,
79 migrateReactions, canonicalReactionUri, getReaction, getReactionsFor,
80 setReaction, getTimelineReaction, upsertBoostedNote, boostedCount,
81} from './ap-reactions.js';
82export {
83 setMyReaction, getMyReactions,
84 markBoosted, unmarkBoosted, markLiked, unmarkLiked,
85 migrateReactions, canonicalReactionUri, getReaction, getReactionsFor,
86 setReaction, getTimelineReaction, upsertBoostedNote, boostedCount,
87};
88// Stap 7 (shaer-drc): de volgwinkel woont in ap-following.js. fwStmts komt
89// mee terug voor de Accept-tak van de inbox en de verhuizing (FEP-7628);
90// wireFollowing krijgt onderaan zijn zes werktuigen.
91import {
92 fwStmts, wireFollowing,
93 webfingerResolve, listFollowing, setAutoBoost,
94 followActor, resolveRemoteActor, unfollowActor,
95} from './ap-following.js';
96export {
97 webfingerResolve, listFollowing, setAutoBoost,
98 followActor, resolveRemoteActor, unfollowActor,
99};
100// Stap 8 (shaer-drc): de peilingen wonen in ap-polls.js. parsePoll,
101// applyPollToNote en recordPollBallot komen terug voor de inbox, buildNote en
102// de backfill, maar blijven naar buiten toe prive zoals ze waren.
103import {
104 wirePolls,
105 parsePoll, applyPollToNote, recordPollBallot,
106 parseOwnPoll, pollTally, ownPollView, deliverPollUpdate,
107 voteOnPoll, voteOnRemotePoll,
108} from './ap-polls.js';
109export {
110 parseOwnPoll, pollTally, ownPollView, deliverPollUpdate,
111 voteOnPoll, voteOnRemotePoll,
112};
113// Stap 9 (shaer-drc): de inbox woont in ap-inbox.js. De schakelkast krijgt
114// onderaan zijn vierendertig werktuigen via wireInbox.
115import { handleInbox, wireInbox } from './ap-inbox.js';
116export { handleInbox };
117// Stap 10 (shaer-drc): de Cirkel woont in ap-cirkel.js. Geen wire: hij leest
118// alleen db.
119import { autoBoostCount, getCirkelPosts, getCirkelMembers } from './ap-cirkel.js';
120export { autoBoostCount, getCirkelPosts, getCirkelMembers };
121// Doorgeven wat hier altijd vandaan kwam, zodat elke bestaande aanroep blijft werken.
122export { AP_CONTEXT, actorId, noteId, guessMediaType };
123// De muziekkant woont in music/ (shaer-drc). Doorgeven wat hier altijd
124// vandaan kwam, zodat elke bestaande aanroep blijft werken.
125import { luisteraars } from './music/index.js';
126import { TRACK_KOLOMMEN,
127 playlistOpenTracks, siteOpenTracks, openTrack, trackHostPosts,
128 buildTrackAudio, buildTrackCollection, buildTrackCreate, trackUri, buildMixtapeObject, postMusicType,
129 buildPlaylistCollection, listPlaylistsAP, playlistLinkTags,
130 buildPostTrackCollection, uitgavePost,
131 buildLibrary, libraryId,
132 licentieUri, channelCategory,
133} from './music/index.js';
134export {
135 playlistOpenTracks, siteOpenTracks, openTrack, trackHostPosts,
136 buildTrackAudio, buildTrackCollection, buildTrackCreate,
137 buildPlaylistCollection, listPlaylistsAP, playlistLinkTags, licentieUri,
138 buildPostTrackCollection, uitgavePost,
139 buildLibrary, libraryId,
140};
141
142
143// Short random suffix so two activity ids minted in the same millisecond (e.g.
144// parallel saves) don't collide and get deduped by a receiver.
145const rid = () => crypto.randomBytes(4).toString('hex');
146
147// Keep only http(s) URLs — drops javascript:/data:/etc so a remote actor can't
148// smuggle a dangerous scheme into a stored href/src (rendered in owner-only views).
149
150const MAX_OUTBOX = 20;
151// Cache-buster for the music listen-link → forces Mastodon to re-crawl a FRESH
152// (square) player card. Bump this whenever the twitter:player card dimensions change.
153const FEDI_CARD_VER = '2';
154
155// ── content negotiation ───────────────────────────────────────────
156// True when the caller wants ActivityPub JSON rather than the HTML page.
157export function apWants(req) {
158 const a = String(req.headers.accept || '').toLowerCase();
159 return a.includes('application/activity+json') ||
160 (a.includes('application/ld+json') && a.includes('activitystreams'));
161}
162
163const AP_CONTENT_TYPE = 'application/activity+json; charset=utf-8';
164/**
165 * Hetzelfde antwoord als de vorige keer? Dan 304 (Barts punt, 9-8).
166 *
167 * De inbox doet dit al met `since` + `wait`, en de guardian-wachtrijen niet: die
168 * stuurden bij elke verversing de hele lijst terug, ook als er niets veranderd
169 * was. Bij honderd wards is dat 217 KB JSON die de telefoon opnieuw moet
170 * parsen -- over de lijn valt het mee (2,8 KB gzip), maar het OPBOUWEN van
171 * veertienhonderd objecten is wat je merkt.
172 *
173 * EEN INHOUDS-ETAG, geen cursor. Een cursor vraagt een tweede beschrijving van
174 * wanneer iets "veranderd" is, en die kan uit de pas gaan lopen met wat er
175 * werkelijk in het antwoord staat; een hash van het antwoord zelf kan dat per
176 * definitie niet. De server bouwt het antwoord nog steeds (26 ms) -- wat we
177 * besparen is de overdracht en het parsen.
178 *
179 * NOOIT 304 OP EEN LEEG ANTWOORD. Dezelfde les als de '0'-uitzondering bij de
180 * inbox: gaat er bij het opbouwen iets mis en komt er een lege lijst uit, dan is
181 * die hash ook stabiel, en zou een client voor eeuwig 304 krijgen op niets.
182 */
183export function etagFor(body) {
184 return `"${crypto.createHash('sha256').update(body).digest('base64url').slice(0, 27)}"`;
185}
186
187export function sendMaybe304(req, res, obj, { cacheControl, contentType } = {}) {
188 const body = JSON.stringify(obj);
189 const leeg = !obj || (Array.isArray(obj.orderedItems) && obj.orderedItems.length === 0);
190 res.set('Vary', 'Authorization');
191 if (!leeg) {
192 const tag = etagFor(body);
193 res.set('ETag', tag);
194 if (req.headers['if-none-match'] === tag) return res.status(304).end();
195 }
196 res.type(contentType || AP_CONTENT_TYPE);
197 // `no-cache` betekent NIET "niet bewaren": de client bewaart het antwoord en
198 // vraagt elke keer of het nog klopt. Precies wat we willen -- zonder dit
199 // stuurt een browser geen If-None-Match en is de ETag decoratie.
200 res.set('Cache-Control', cacheControl || 'private, no-cache');
201 return res.send(body);
202}
203
204export function sendAP(res, obj, cacheControl) {
205 res.type(AP_CONTENT_TYPE);
206 // A per-caller (e.g. guardian-widened) view must not be publicly cached.
207 res.set('Cache-Control', cacheControl || 'public, max-age=120');
208 res.send(JSON.stringify(obj));
209}
210
211// ── document builders ─────────────────────────────────────────────
212
213
214/** Eén Link uit een AS2 `url` kiezen op mediaType. Een `url` mag een string,
215 * een Link of een array van beide zijn; dit is de enige plek die dat weet. */
216function pickLink(url, test) {
217 const links = Array.isArray(url) ? url : (url ? [url] : []);
218 for (const l of links) {
219 const href = safeUrl(typeof l === 'string' ? l : (l && l.href));
220 const mt = (l && typeof l === 'object' && l.mediaType) || '';
221 if (href && test(mt)) return { href, mediaType: mt };
222 }
223 return null;
224}
225
226/**
227 * De `url` van de actor als kanaal (shaer-0nh): de webpagina en, als die er is,
228 * de RSS-feed ernaast.
229 *
230 * De RSS-link gaat er ALLEEN in voor de site waar de instance op gepind staat.
231 * Sinds hub-modus verdween serveert routes/feed.js `/feed.xml` van de primaire
232 * site en bestaat `/user/<slug>` niet meer als route; een feed-link voor een
233 * andere site zou naar de verkeerde feed wijzen. Liever een link minder dan een
234 * link die iemand anders' muziek belooft.
235 */
236export function channelUrls(base, site) {
237 const isPrimair = site.slug === site.primary_slug;
238 const pagina = `${base}/${isPrimair ? '' : 'user/' + encodeURIComponent(site.slug)}`;
239 const uit = [{ type: 'Link', href: pagina, mediaType: 'text/html' }];
240 if (isPrimair) uit.push({ type: 'Link', href: `${base}/feed.xml`, mediaType: 'application/rss+xml' });
241 return uit;
242}
243
244
245/**
246 * Wat de tijdlijn van een binnengekomen object nodig heeft, PER SOORT: de
247 * inhoud-HTML, de bijlagen voor media_json, en de link van het item.
248 *
249 * Eén plek, zodat een nieuwe soort erbij een tak is en geen speurtocht. De
250 * Krant rendert media_json al naar soort -- audio/* wordt een speler -- dus een
251 * track komt vanzelf als echte speler binnen zonder dat de weergave iets van
252 * Funkwhale hoeft te weten.
253 */
254/**
255 * De waarschuwingstekst van een object, of niets.
256 *
257 * `summary` IS in AS2 een SAMENVATTING -- "a natural language summarization of
258 * the object". Dat Mastodon dat veld hergebruikt als waarschuwing is Mastodons
259 * conventie, en die zet er `sensitive` bij. Zonder `sensitive` is een summary
260 * dus gewoon een samenvatting.
261 *
262 * WordPress + ActivityPub stuurt daar de EXCERPT van een artikel in, netjes
263 * afgekapt voor Mastodon. Wij lazen dat als waarschuwing en verborgen de post
264 * daarmee achter zijn eigen eerste alinea (Barts melding, 13-8:
265 * europeanpirates.eu). Niemand krijgt dan te zien wat er staat, en de
266 * waarschuwing waarschuwt nergens voor.
267 */
268export function contentWarning(o) {
269 if (!o || !o.sensitive) return null;
270 const s = typeof o.summary === 'string' ? o.summary.trim() : '';
271 return s || null;
272}
273
274export function timelineFields(o) {
275 // De hoes: een `image` op het object. Bij een Note alleen als terugval (daar
276 // is het de kaart-afbeelding van een player-post), bij een Audio altijd,
277 // want daar IS het de albumhoes.
278 const hoes = () => {
279 if (!o.image) return null;
280 const im = Array.isArray(o.image) ? o.image[0] : o.image;
281 const iu = safeUrl(typeof im === 'string' ? im : (im && im.url));
282 return iu ? { url: iu, type: (im && im.mediaType) || 'image/jpeg' } : null;
283 };
284
285 if (o.type === 'Audio') {
286 const geluid = pickLink(o.url, (mt) => /^audio\//i.test(mt));
287 // De webpagina van de track. Zonder mediaType is dat de veilige aanname:
288 // er een speler op zetten zou een HTML-pagina als geluid aanbieden.
289 const pagina = pickLink(o.url, (mt) => /^text\/html/i.test(mt)) || pickLink(o.url, (mt) => !mt);
290 const atts = [];
291 const h = hoes(); if (h) atts.push(h); // eerst kijken, dan luisteren
292 if (geluid) atts.push({ url: geluid.href, type: geluid.mediaType || 'audio/mpeg' });
293 // Een Audio heeft geen `content`; de titel is wat er te lezen valt. Door de
294 // sanitizer, want hij komt van een vreemde server.
295 return {
296 html: o.name ? HtmlSanitizerService.sanitize(`<p>${o.name}</p>`) : '',
297 atts,
298 url: pagina ? pagina.href : null,
299 };
300 }
301
302 // Een ARTIKEL heeft een titel, en die is het eerste wat je wilt zien. Zonder
303 // dit kwam een WordPress-post binnen als kale body: de titel zit in `name` en
304 // die gooiden we weg, terwijl de excerpt in `summary` ten onrechte als
305 // waarschuwing dienstdeed. Nu allebei goed -- en dit is dezelfde greep die
306 // resolveRemoteNote al doet voor niet-Note-objecten, dus de tijdlijn en het
307 // antwoordpad zeggen eindelijk hetzelfde.
308 if (o.type && o.type !== 'Note' && typeof o.name === 'string' && o.name.trim()) {
309 const kop = `<p><strong>${HtmlSanitizerService.escape ? HtmlSanitizerService.escape(o.name) : o.name}</strong></p>`;
310 const atts = mediaFromNote(o);
311 const pagina = pickLink(o.url, (mt) => !mt || /html/i.test(mt));
312 return {
313 html: HtmlSanitizerService.sanitize(kop + (o.content || '')),
314 atts,
315 url: pagina ? pagina.href : null,
316 };
317 }
318
319 // Note / Question -- ongewijzigd gedrag.
320 const atts = (Array.isArray(o.attachment) ? o.attachment : [])
321 .map((a) => ({ url: safeUrl(a && a.url), type: (a && a.mediaType) || '' }))
322 .filter((m) => m.url);
323 if (!atts.some((m) => !m.type || /image/i.test(m.type))) {
324 const h = hoes(); if (h) atts.push(h);
325 }
326 const pagina = pickLink(o.url, () => true);
327 return { html: HtmlSanitizerService.sanitize(o.content || ''), atts, url: pagina ? pagina.href : null };
328}
329
330/**
331 * De site achter een library-uri, of null. Zelfde strengheid als localSlugOf:
332 * de uri moet met ONZE basis beginnen en de site moet bestaan -- anders levert
333 * andermans /library met dezelfde padstaart hier een volger op onze naam op.
334 */
335function libraryOwnerSlug(uri) {
336 const u = String(uri || '');
337 if (!u.endsWith('/library')) return null;
338 return localSlugOf(u.slice(0, -'/library'.length));
339}
340
341export function buildActor(base, site) {
342 const id = actorId(base, site.slug);
343 const keys = getOrCreateKeys(site.slug);
344 // FEP-633c §5.3: a ward's follows are gated (guardians approve), so the actor
345 // MUST advertise manuallyApprovesFollowers:true — otherwise a follower's server
346 // (Mastodon) assumes auto-accept and shows "Following" while we hold it pending.
347 const isWard = (() => { try { return Guardianship.listGuardians(site.slug).length > 0; } catch { return false; } })();
348 const actor = {
349 '@context': AP_CONTEXT,
350 id,
351 type: 'Person',
352 preferredUsername: site.slug,
353 name: site.title || site.slug,
354 summary: site.tagline || site.description || '',
355 // Een Link-ARRAY in plaats van een kale string (shaer-0nh): zo adverteert
356 // een kanaal zichzelf, en zo vindt een podcast-app de feed. De text/html
357 // staat VOORAAN, want een lezer die maar één url verwacht pakt de eerste --
358 // dezelfde vorm die Funkwhale in productie met Mastodon uitwisselt.
359 url: channelUrls(base, site),
360 ...(channelCategory(site) ? { category: channelCategory(site) } : {}),
361 // …and the same honesty for the OWNER gate (Robins wens, 18-8): a site
362 // with approve_followers on holds follows pending until the owner decides.
363 manuallyApprovesFollowers: isWard || !!site.approve_followers,
364 discoverable: true,
365 inbox: `${id}/inbox`,
366 outbox: `${id}/outbox`,
367 followers: `${id}/followers`,
368 following: `${id}/following`,
369 featured: `${id}/featured`,
370 // AS2-kern `streams`: "supplementary Collections which may be of
371 // interest" -- precies wat de playlist-lijst is (shaer-ayc, stap 2).
372 // Geen eigen vocabulaire nodig, en wie het niet kent negeert het.
373 streams: [`${id}/tracks`, `${id}/playlists`],
374 // AP §5.6: the private blocked collection (owner-only GET). The server
375 // list is the source of truth for Shaer's "in Orbit"; clients keep no
376 // separate state.
377 blocked: `${id}/blocked`,
378 // FEP-1580: de vertaaltabel van een verhuizing plus de Moves die hem
379 // rechtvaardigen. Deze twee staan er ALTIJD, ook leeg, en dat is met opzet:
380 // de FEP wijst er apart op dat "een verhuizing zonder objecten" en "een
381 // server die dit niet kent" anders niet uit elkaar te houden zijn.
382 migration: `${id}/migration`,
383 moves: `${id}/moves`,
384 // FEP-633c §2: shaer:guardians / shaer:isGuardian / shaer:queues
385 // (guardianship module owns these).
386 ...Guardianship.guardianshipActorProps(id, site.slug),
387 // C2S clients (Shaer apps) discover auth + upload here — no hardcoded paths.
388 // All four are ActivityPub-spec `endpoints` terms. Dynamic client registration
389 // (RFC 7591) is discovered via /.well-known/oauth-authorization-server, not here.
390 endpoints: {
391 sharedInbox: `${base}/ap/inbox`,
392 oauthAuthorizationEndpoint: `${base}/oauth/authorize`,
393 oauthTokenEndpoint: `${base}/oauth/token`,
394 uploadMedia: `${id}/uploadMedia`,
395 },
396 publicKey: {
397 id: `${id}#main-key`,
398 owner: id,
399 publicKeyPem: keys.public_pem,
400 },
401 };
402 if (site.profile_photo) {
403 const u = /^https?:/.test(site.profile_photo) ? site.profile_photo : `${base}${site.profile_photo.startsWith('/') ? '' : '/'}${site.profile_photo}`;
404 actor.icon = { type: 'Image', url: u };
405 }
406 // Account creation date — shown by Mastodon + read by indexers (additive, standard AS2).
407 if (site.created_at) { try { actor.published = new Date(site.created_at).toISOString(); } catch { /* skip bad date */ } }
408 // FEP-7628: former identities this account claims. The OLD server checks for
409 // exactly this back-reference before it will move followers here, so the
410 // list must be on the public actor, not tucked away in settings.
411 try {
412 const aka = JSON.parse(site.ap_aliases || '[]');
413 if (Array.isArray(aka)) {
414 const clean = aka.filter((u) => typeof u === 'string' && /^https?:\/\//i.test(u) && u !== id);
415 if (clean.length) actor.alsoKnownAs = clean;
416 }
417 } catch { /* skip malformed ap_aliases */ }
418 // FEP-7628 slice 3: this account moved. The old actor stays online AS A
419 // SIGNPOST — that is the whole point of keeping it: whoever missed the Move
420 // activity (offline server, later visitor) still learns where we went by
421 // fetching us. Per the FEP the moved actor "should be considered inactive",
422 // and publishers should stop delivering here.
423 if (site.moved_to && /^https?:\/\//i.test(String(site.moved_to))) actor.movedTo = String(site.moved_to);
424 // Zie movedLock() verderop: het serveren van movedTo is de ENE helft, het
425 // stilzetten van de uitgaande kant de andere.
426 // De MusicBrainz-koppeling van de artiest (shaer-mbz). Alleen als hij ZELF
427 // gekozen heeft -- er staat niets als er niets gekoppeld is, want een lege
428 // of geraden verwijzing is erger dan geen.
429 //
430 // schema:sameAs en niet alsoKnownAs: dat laatste is in AS2 voor vroegere
431 // identiteiten van dezelfde actor, en FEP-7628 leunt erop bij een verhuizing.
432 // Een MBID hier neerzetten zou een verhuizing kunnen laten mislukken.
433 const mbUrl = artiestUrl(site.mb_artist_id);
434 if (mbUrl) actor.sameAs = mbUrl;
435 // Profile links → PropertyValue rows: Mastodon/PeerTube/WordPress-ActivityPub render these as
436 // profile metadata (rel=me enables link-back verification). Additive; ignored by simpler receivers.
437 try {
438 const links = JSON.parse(site.profile_links || '[]');
439 if (Array.isArray(links) && links.length) {
440 const esc = (s) => String(s).replace(/[<>&]/g, (c) => ({ '<': '&lt;', '>': '&gt;', '&': '&amp;' }[c]));
441 const rows = links
442 .filter((l) => l && l.url && /^https?:/i.test(l.url))
443 .map((l) => ({
444 type: 'PropertyValue',
445 name: esc(l.platform || 'Link'),
446 value: `<a href="${esc(l.url).replace(/"/g, '&quot;')}" rel="me nofollow noopener" target="_blank">${esc(String(l.url).replace(/^https?:\/\//, ''))}</a>`,
447 }));
448 if (rows.length) actor.attachment = rows;
449 }
450 } catch { /* skip malformed profile_links */ }
451 return actor;
452}
453
454// Does a post's audio shortcodes reference at least one PLAYABLE (file-backed)
455// track? Link-only tracks (external Spotify/YouTube, media_id NULL) don't count —
456// they have no Klonkt-hosted audio to embed, so no player card / cover-suppression.
457export function hasPlayableAudio(content, siteId) {
458 if (!content || !/\[\[(track|album|playlist):/i.test(content)) return false;
459 try {
460 for (const m of content.matchAll(/\[\[track:([A-Za-z0-9_-]+)\]\]/g)) { const r = db.prepare('SELECT media_id FROM audio_tracks WHERE id = ?').get(m[1]); if (r && r.media_id) return true; }
461 for (const m of content.matchAll(/\[\[album:([^\]]+)\]\]/g)) { if (db.prepare('SELECT 1 FROM audio_tracks WHERE site_id = ? AND album = ? AND media_id IS NOT NULL LIMIT 1').get(siteId, m[1].trim())) return true; }
462 for (const m of content.matchAll(/\[\[playlist:([A-Za-z0-9_-]+)\]\]/g)) { if (db.prepare('SELECT 1 FROM playlist_tracks pt JOIN audio_tracks t ON t.id = pt.track_id WHERE pt.playlist_id = ? AND t.media_id IS NOT NULL LIMIT 1').get(m[1])) return true; }
463 } catch { /* non-fatal */ }
464 return false;
465}
466
467// fedi_open tracks → real AS2 Audio attachments (the actual file URL, served ungated) so
468// EVERY client incl. the Mastodon apps plays them inline natively. Gated tracks (default)
469// stay link/card-only — the file is never exposed for them. Resolve from post.content so a
470// later body mutation can't affect it.
471//
472// Staat apart en niet meer midden in buildNote, omdat een BETAALDE post hem ook
473// nodig heeft: daar staat de muur om de TEKST en niet om de muziek.
474function openAudioAttachments(base, site, post) {
475 const openAudio = [];
476 if (!/\[\[(track|album|playlist):/i.test(post.content || '')) return openAudio;
477 const abs = (u) => !u ? null : (/^https?:/i.test(u) ? u : `${base}${u.startsWith('/') ? '' : '/'}${u}`);
478 const seenA = new Set();
479 const addRow = (r) => {
480 const fn = r.filename || (r.storage_path || '').split('/').pop();
481 if (!fn || seenA.has(fn)) return; seenA.add(fn);
482 const a = { type: 'Audio', mediaType: r.mime_type || 'audio/mpeg', url: `${base}/audio/stream/${encodeURIComponent(fn)}`, name: r.title || 'Audio' };
483 // Cover art on the Audio attachment (AS2 `icon`): track cover, else the post cover.
484 // Mastodon renders it as the artwork thumbnail on its native audio player.
485 const art = abs(r.cover_url || post.cover_image_url || null);
486 if (art) a.icon = { type: 'Image', mediaType: guessMediaType(art), url: art };
487 openAudio.push(a);
488 };
489 const SEL = 'SELECT t.title, t.cover_url, m.filename, m.storage_path, m.mime_type FROM audio_tracks t JOIN media m ON m.id = t.media_id WHERE t.fedi_open = 1 AND ';
490 try {
491 for (const mm of (post.content || '').matchAll(/\[\[track:([A-Za-z0-9_-]+)\]\]/g)) { const r = db.prepare(SEL + 't.id = ?').get(mm[1]); if (r) addRow(r); }
492 for (const mm of (post.content || '').matchAll(/\[\[album:([^\]]+)\]\]/g)) for (const r of db.prepare(SEL + 't.site_id = ? AND t.album = ? ORDER BY t.rowid').all(site.id, mm[1].trim())) addRow(r);
493 for (const mm of (post.content || '').matchAll(/\[\[playlist:([A-Za-z0-9_-]+)\]\]/g)) for (const r of db.prepare('SELECT t.title, t.cover_url, m.filename, m.storage_path, m.mime_type FROM playlist_tracks pt JOIN audio_tracks t ON t.id = pt.track_id JOIN media m ON m.id = t.media_id WHERE t.fedi_open = 1 AND pt.playlist_id = ? ORDER BY pt.position').all(mm[1])) addRow(r);
494 } catch { /* non-fatal */ }
495 return openAudio;
496}
497
498// HET BANDJE OP DE DRAAD. Zonder dit stuk bestaat `Mixtape` alleen in onze
499// eigen code: de playlist-collectie blijft namelijk een OrderedCollection
500// (dat moet, anders verliest een lezer die `type` als tekst uitpakt het hele
501// object), en dan zegt niets naar buiten toe ooit dat dit een cassette is.
502// Gemeten op 21-8: in de Note van een mixtape-post kwam het woord Mixtape
503// niet voor, en de hub gooide zo'n bandje daarom stil weg.
504//
505// Als bijlage en niet als het object zelf: de post blijft een Note, zodat
506// Mastodon en alles wat `Mixtape` niet kent gewoon een bericht met audio
507// ziet. Wie het type wel kent, vindt het bandje als geheel.
508//
509// Het bandje draagt alleen wat al open staat: playlistOpenTracks filtert op
510// fedi_open. Daarom is het veilig om hem ook aan een betaalde teaser te hangen.
511function mixtapeAttachment(base, site, post) {
512 try {
513 const soort = postMusicType(post.content || '', site.id);
514 if (!soort || soort.type !== 'mixtape' || !soort.collectie || !soort.collectie.id) return null;
515 const pl = db.prepare('SELECT * FROM playlists WHERE id = ? AND site_id = ?')
516 .get(soort.collectie.id, site.id);
517 if (!pl) return null;
518 return buildMixtapeObject(base, site, { ...pl, _post: post }, playlistOpenTracks(pl.id)) || null;
519 } catch { return null; /* een bandje minder is geen kapotte post */ }
520}
521
522// A single post as an AS2 Note (the object), and as a Create activity (for outbox/delivery).
523export function buildNote(base, site, post, opts = {}) {
524 // Replies are Notes too. buildNote is the single entry point for ALL Notes; a reply is
525 // (for now) the simple flavor: pre-baked content, no title/cover/image/audio/embed
526 // machinery, addressed to the parent actor + thread. This early branch keeps that output
527 // byte-identical to the old buildReplyNote. When rich replies land (images/audio/embeds),
528 // this branch collapses and replies flow through the full post pipeline below. `post` here
529 // is the ap_outbox reply row (id, in_reply_to, content, post_slug, created_at, to_actor).
530 if (opts.isReply) {
531 const meR = actorId(base, site.slug);
532 // Rich replies: attachments column (JSON [{url, mediaType, name}]) → AS2
533 // attachment array with absolute URLs and the matching object type.
534 let replyAtt;
535 try {
536 const list = post.attachments ? JSON.parse(post.attachments) : [];
537 if (Array.isArray(list) && list.length) {
538 replyAtt = list.map((a) => ({
539 type: a.mediaType.startsWith('image/') ? 'Image' : a.mediaType.startsWith('audio/') ? 'Audio' : 'Video',
540 mediaType: a.mediaType,
541 url: /^https?:/i.test(a.url) ? a.url : `${base}${a.url}`,
542 name: a.name || undefined,
543 }));
544 }
545 } catch { /* malformed attachments never block the Note */ }
546 return {
547 id: noteId(base, post.id),
548 type: 'Note',
549 attributedTo: meR,
550 inReplyTo: post.in_reply_to || undefined,
551 content: post.content,
552 // Reply language (rich replies): the AS2 language map next to `content`.
553 contentMap: post.language ? { [post.language]: post.content } : undefined,
554 attachment: replyAtt,
555 url: post.post_slug ? `${base}/${encodeURIComponent(post.post_slug)}` : undefined,
556 published: toISO(post.created_at),
557 // A direct note (private mention, shaer-tqc) addresses ONLY its
558 // recipients: no Public anywhere, so it cannot be boosted and never
559 // shows in public timelines (the Mastodon DM model).
560 to: post.visibility === 'direct'
561 ? (JSON.parse(post.to_actors || '[]'))
562 : (post.to_actor ? [post.to_actor] : [PUBLIC]),
563 // Followers-only reply ('friends', shaer detail-view Reply): the parent
564 // author (in `to`) + our followers, but NO Public — it does not federate
565 // into open discovery. Default reply stays quiet-public (Public in cc).
566 cc: post.visibility === 'direct' ? []
567 : post.visibility === 'friends' ? [`${meR}/followers`]
568 : [PUBLIC, `${meR}/followers`],
569 // FEP-633c 5.2.1: a ward's call for help. Only ever on direct notes.
570 ...Guardianship.helpRequestProps(post),
571 ...Guardianship.waveProps(post),
572 ...Guardianship.awayProps(post),
573 // FEP-633c §2.2: object hint that the author is a ward.
574 ...Guardianship.hasGuardiansProps(site.slug),
575 tag: [
576 ...mentionTags(post.content),
577 ...hashtagTags(base, post.content),
578 ],
579 };
580 }
581 const id = noteId(base, post.id);
582 const aId = actorId(base, site.slug);
583 const human = `${base}/${encodeURIComponent(post.slug)}`;
584 // Mastodon ignores a Note's `name`, so put the title INTO the content (bold
585 // first line) — the standard blog→fediverse convention. post.content is
586 // already sanitized HTML; the title is plain text, so escape it.
587 const escTitle = String(post.title || '').replace(/[<>&]/g, (c) => ({ '<': '&lt;', '>': '&gt;', '&': '&amp;' }[c]));
588 const titleHtml = post.title ? `<p><strong>${escTitle}</strong></p>` : '';
589
590 // Paid post (klonkt-demo-aki): federate a PUBLIC teaser + link, never the full
591 // content, so nothing leaks past the paywall. Images stay home too.
592 //
593 // MAAR DE OPENGEZETTE AUDIO REIST WEL MEE (Robin, 24-8, naar aanleiding van
594 // boiert.eu/introducing-this-machine). De muur staat om de TEKST. `fedi_open`
595 // is een aparte, eenrichtings, per nummer bewust gezette vlag van de eigenaar,
596 // en die nummers federeren toch al los als eigen Audio-objecten met hun
597 // `context` naar deze post. Hield deze tak het bandje tegen, dan hield hij
598 // niets geheim -- alleen de VOLGORDE en het feit dat het een cassette is. In
599 // de hub viel het bandje daardoor uiteen in vier losse nummers onder een kale
600 // teaserkaart. Een cassette die terugwijst naar "lees verder (supporters)"
601 // dient de betaalde post beter dan vier weesnummers.
602 if (post.paid) {
603 const esc = (x) => String(x || '').replace(/[<>&]/g, (c) => ({ '<': '&lt;', '>': '&gt;', '&': '&amp;' }[c]));
604 const _firstP = (String(post.content || '').match(/<p[^>]*>([\s\S]*?)<\/p>/i) || [null, ''])[1] || '';
605 const rawTeaser = String(post.excerpt || '').trim()
606 || _firstP.replace(/<[^>]+>/g, ' ').replace(/&[a-z#0-9]+;/gi, ' ').replace(/\s+/g, ' ').trim().slice(0, 280);
607 const openBijlagen = openAudioAttachments(base, site, post);
608 const band = mixtapeAttachment(base, site, post);
609 // Het bandje alleen als er ook echt iets open in zit: een cassette waarvan
610 // elk nummer gesloten is, is een lege doos met een titel erop.
611 if (band && openBijlagen.length) openBijlagen.push(band);
612 return {
613 '@context': AP_CONTEXT,
614 id,
615 type: 'Note',
616 attributedTo: aId,
617 content: `${titleHtml}<p>${esc(rawTeaser)}${rawTeaser ? '…' : ''}</p><p><a href="${human}">Lees de volledige post (supporters)</a></p>`,
618 url: human,
619 published: toISO(post.published_at || post.created_at || Date.now()),
620 ...(openBijlagen.length ? { attachment: openBijlagen } : {}),
621 to: [PUBLIC],
622 cc: [`${aId}/followers`],
623 tag: [...hashtagTags(base, post.content)],
624 replies: `${id}/replies`,
625 // DE WAARSCHUWING REIST MEE (Barts melding, 15-8). Deze vroege return liet
626 // `sensitive` en `summary` vallen, want die worden pas na de gewone tak
627 // gezet. Gevolg: een betaalde post met een waarschuwing ging ZONDER die
628 // waarschuwing de deur uit -- en de teaser is publiek, dus juist die had
629 // hem nodig. Een gevoelige teaser zonder vlag is erger dan geen teaser.
630 sensitive: !!post.nsfw,
631 ...(post.nsfw ? { summary: post.content_warning || 'Gevoelige inhoud' } : {}),
632 ...Guardianship.hasGuardiansProps(site.slug),
633 };
634 }
635
636 // Images travel as AP `attachment` (Mastodon strips <img> from content). Collect
637 // the cover + any inline <img>, make absolute, then strip <img> from the content
638 // to avoid duplicate rendering on clients that DO keep them.
639 const abs = (u) => !u ? null : (/^https?:/i.test(u) ? u : `${base}${u.startsWith('/') ? '' : '/'}${u}`);
640 const hadAudio = /\[\[(track|album|playlist):/i.test(post.content || '');
641 const playable = hasPlayableAudio(post.content || '', site && site.id);
642 // A post with an external embed (Spotify/YouTube/SoundCloud/Vimeo/Bandcamp/Apple) should let
643 // Mastodon render the embed's player CARD. Mastodon shows EITHER media attachments OR a link
644 // card, never both — so when the post has an embed link we skip the image attachments so the
645 // card wins. (On Klonkt nothing changes: the cover + the embed player still render.)
646 const hasEmbed = (() => {
647 const c = post.content || '';
648 if (/\[\[embed:/i.test(c)) return true;
649 for (const m of c.matchAll(/https?:\/\/[^\s"'<>]+/gi)) if (AudioEmbedService.detectProvider(m[0])) return true;
650 return false;
651 })();
652 // Link-only tracks (external Spotify/YouTube/SoundCloud, no hosted file): collect their links
653 // so we federate them — Mastodon cards the first (its player), the rest show as clickable links
654 // — instead of a bare "listen on site" link, and we suppress the cover so the card can show.
655 const trackEmbedLinks = (() => {
656 if (playable) return [];
657 const out = [];
658 try {
659 for (const m of (post.content || '').matchAll(/\[\[track:([A-Za-z0-9_-]+)\]\]/g)) {
660 const r = db.prepare('SELECT media_id, link_spotify, link_youtube, link_soundcloud FROM audio_tracks WHERE id = ?').get(m[1]);
661 if (r && !r.media_id) for (const u of [r.link_spotify, r.link_youtube, r.link_soundcloud]) if (u && /^https?:\/\//i.test(u)) out.push(u);
662 }
663 } catch { /* non-fatal */ }
664 return [...new Set(out)].slice(0, 6);
665 })();
666 const noImages = playable || hasEmbed || trackEmbedLinks.length > 0; // suppress images → let the player/embed card show
667 const urls = [];
668 // Posts with PLAYABLE hosted audio suppress image attachments so Mastodon renders
669 // the player CARD (twitter:player) instead of the cover — media attachment and
670 // link/player card are mutually exclusive on Mastodon. Link-only audio (external)
671 // keeps its cover (no player card to show).
672 // An animated cover federates as the muted loop MP4 (→ a Video attachment): animated WebP is
673 // unreliable on Mastodon and its iOS apps; the MP4 plays everywhere. Else the still cover image.
674 // Each entry carries the media URL + its alt text (federated as the AS2 attachment `name`, for a11y).
675 // Media a C2S composer attached (shaer-j3uh): federate with their REAL
676 // mediaType, because the extension map below knows no audio and would call
677 // an m4a an Image. Pushed BEFORE the covers: a C2S video doubles as the
678 // cover video, and the URL-dedupe keeps the FIRST entry, which must be the
679 // one that knows its type and poster. Images also live inline in the
680 // content, so the dedupe keeps those single too.
681 try {
682 for (const a of JSON.parse(post.c2s_attachments || '[]')) {
683 if (a && a.url) urls.push({ url: abs(a.url), name: a.name || '', mt: a.mediaType, poster: a.poster ? abs(a.poster) : null });
684 }
685 } catch { /* malformed never blocks the Note */ }
686 if (post.cover_video_url && !noImages) urls.push({ url: abs(post.cover_video_url), name: post.cover_alt || '' });
687 else if (post.cover_image_url && !noImages) urls.push({ url: abs(post.cover_image_url), name: post.cover_alt || '' });
688 let body = post.content || '';
689 // Only federate inline images we can actually serve: absolute http(s) URLs, or our own
690 // /media/ uploads. A relative path we don't host (e.g. a stale /images/... ref) would 404
691 // and show up as a black tile in Mastodon's attachment grid. Carry the <img alt="…"> through
692 // as the attachment description.
693 if (!noImages) for (const m of body.matchAll(/<img\b[^>]*>/gi)) {
694 const tag = m[0];
695 const src = (tag.match(/\bsrc="([^"]+)"/i) || [])[1];
696 if (!src || !(/^https?:\/\//i.test(src) || src.startsWith('/media/'))) continue;
697 const alt = (tag.match(/\balt="([^"]*)"/i) || [])[1] || '';
698 urls.push({ url: abs(src), name: alt });
699 }
700 body = body.replace(/<img\b[^>]*>/gi, '');
701 // Video and audio tags leave the federated content the same way (30-7):
702 // they ride as AS2 attachments (c2s_attachments), and the tag itself
703 // carries a RELATIVE /media src that is dead everywhere but our own web.
704 // Leaving it in showed every remote reader a broken player above the
705 // working one. The web keeps its tags: this strip is federation-only.
706 body = body.replace(/<video\b[^>]*>[\s\S]*?<\/video>/gi, '').replace(/<video\b[^>]*\/?>/gi, '');
707 body = body.replace(/<audio\b[^>]*>[\s\S]*?<\/audio>/gi, '').replace(/<audio\b[^>]*\/?>/gi, '');
708 // Audio shortcodes: do NOT federate the raw audio file — Klonkt deliberately
709 // gates audio (the /audio/stream URL has friction), and shipping it as an AP
710 // audio attachment would hand Mastodon a plain, downloadable mp3 URL. Instead,
711 // replace the shortcodes with a "🎵 listen on the site" link so the post invites
712 // a click-through to the protected player (discovery without leaking the file).
713 const esc = (s) => String(s == null ? '' : s).replace(/[<>&]/g, (c) => ({ '<': '&lt;', '>': '&gt;', '&': '&amp;' }[c]));
714 // Elke titel met zijn track-id erbij, zodat hij hieronder een EIGEN link
715 // krijgt naar #track-<id> op de postpagina (shaer-38y). Zonder id was dit een
716 // vetgedrukte opsomming waar je niets mee kon: vijf namen en een enkele
717 // "listen on"-link naar de post als geheel. Elke track heeft daar al een
718 // anker -- direct ingesloten, in een album of in een playlist -- dus dit
719 // wijst naar precies het nummer waar de naam bij hoort.
720 const audioLabels = [];
721 try {
722 const zien = new Set();
723 const voegToe = (id, titel) => {
724 const t = String(titel || '').trim();
725 if (!t) return;
726 const sleutel = id || ('naam:' + t);
727 if (zien.has(sleutel)) return;
728 zien.add(sleutel);
729 audioLabels.push({ id: id || null, titel: t });
730 };
731 // In de volgorde van de POST: een enkele scan over alle drie de vormen,
732 // zodat de opsomming leest zoals de post is neergezet.
733 for (const m of body.matchAll(/\[\[(track|album|playlist):([^\]]+)\]\]/gi)) {
734 const soort = m[1].toLowerCase(), waarde = m[2].trim();
735 if (soort === 'track') {
736 const r = db.prepare('SELECT id, title FROM audio_tracks WHERE id = ?').get(waarde);
737 if (r) voegToe(r.id, r.title);
738 } else if (soort === 'album') {
739 const rs = db.prepare('SELECT id, title FROM audio_tracks WHERE site_id = ? AND album = ? ORDER BY rowid').all(site.id, waarde);
740 if (rs.length) for (const r of rs) voegToe(r.id, r.title);
741 else voegToe(null, waarde); // album zonder tracks: dan maar de naam
742 } else {
743 for (const r of db.prepare('SELECT t.id, t.title FROM playlist_tracks pt JOIN audio_tracks t ON t.id = pt.track_id WHERE pt.playlist_id = ? ORDER BY pt.position').all(waarde)) voegToe(r.id, r.title);
744 }
745 }
746 } catch { /* non-fatal */ }
747 const openAudio = openAudioAttachments(base, site, post);
748 // ONVERTAALD voor een verhuizing (FEP-1580). De doelinstantie IS een Klonkt:
749 // die rendert [[track:]], [[album:]] en [[playlist:]] zelf en maakt er een
750 // speler van. Bakken we ze eerst om, dan komt er een tekstlink aan en is de
751 // speler weg. Onherstelbaar bovendien: het bakken STRIPT de shorthand en
752 // plakt achteraan hooguit VIER titels, dus een album van tien nummers
753 // overleeft het niet.
754 //
755 // Dezelfde regel als bij de outbox en de tracks: wie ondertekend vraagt
756 // namens de actor waar wij naartoe verhuisd zijn, krijgt onze eigen kijk.
757 if (!opts.rauweInhoud) body = body.replace(/\[\[(track|album|playlist):[^\]]+\]\]/gi, '');
758 // External embeds ([[embed:url]]) → emit the bare URL as a link so Mastodon
759 // renders its OWN preview/player card (YouTube/Spotify/SoundCloud/etc) instead
760 // of federating the raw shortcode text.
761 body = body.replace(/\[\[embed:([^\]]+)\]\]/gi, (mm, raw) => {
762 const u = esc(raw.trim().replace(/&amp;/g, '&'));
763 return `<p><a href="${u}">${u}</a></p>`;
764 });
765 if (hadAudio && !opts.rauweInhoud) {
766 // Elke titel als eigen link naar zijn anker; een titel zonder id (een
767 // albumnaam zonder tracks) blijft gewone tekst.
768 const lbl = audioLabels.slice(0, 4)
769 .map((a) => (a.id ? `<a href="${human}#track-${esc(a.id)}">${esc(a.titel)}</a>` : esc(a.titel)))
770 .join(', ');
771 if (trackEmbedLinks.length) {
772 // Link-only track(s): emit the external link(s). Mastodon cards the first (Spotify → its
773 // player), the rest render as clickable links — the fediverse-native "embed + links".
774 body += `<p>🎵 ${lbl ? `<strong>${lbl}</strong>` : ''}</p>`;
775 for (const u of trackEmbedLinks) { const eu = esc(u); body += `<p><a href="${eu}">${eu}</a></p>`; }
776 } else {
777 // For playable posts, append a version param to the listen-link so Mastodon
778 // sees a NEW card URL and re-crawls it (fresh SQUARE player card) instead of
779 // reusing the cached landscape one. Invisible: the link TEXT stays clean, the
780 // page ignores the param. Bump FEDI_CARD_VER when the card dimensions change.
781 const listenHref = playable ? `${human}?fc=${FEDI_CARD_VER}` : human;
782 body += `<p>🎵 ${lbl ? `<strong>${lbl}</strong> — ` : ''}<a href="${listenHref}">listen on ${esc(site.title || 'the site')}</a></p>`;
783 }
784 }
785 // Klonkt renders post content with white-space:pre-wrap, so raw newlines ARE line
786 // breaks on the site. Mastodon (plain HTML) collapses whitespace and would drop them,
787 // so convert newlines to <br> for the federated copy (content already made with
788 // shift+enter uses <br> and has no \n → this is a no-op there).
789 body = body.replace(/\r?\n/g, '<br>');
790 body = linkHashtags(base, body); // link inline #hashtags in the post body too
791 body = linkUrls(body); // bare URLs → clickable links on the federated copy
792 // Append the tags-field hashtags to the content so Mastodon renders them as clickable
793 // hashtags (a Hashtag that's only in the `tag` array isn't shown inline). CamelCase
794 // multi-word tags; skip any already present inline in the body.
795 {
796 const inlineTags = new Set(hashtagTags(base, body).map((h) => h.name.slice(1).toLowerCase()));
797 const addSeen = new Set();
798 const tagLinks = normalizeTags(post.tags).map(tagParts).filter(Boolean)
799 .filter((p) => !inlineTags.has(p.slug) && !addSeen.has(p.slug) && addSeen.add(p.slug))
800 .map((p) => `<a href="${base}/tag/${encodeURIComponent(p.slug)}" class="mention hashtag" rel="tag">#${p.label}</a>`);
801 if (tagLinks.length) body += `<p>${tagLinks.join(' ')}</p>`;
802 }
803 const seen = new Set();
804 const attachment = urls.filter((x) => x && x.url)
805 .filter((x) => { if (seen.has(x.url)) return false; seen.add(x.url); return true; })
806 .map((x) => { const mt = x.mt || guessMediaType(x.url); // the stored type wins; the extension map is the fallback
807 const ty = /^image\//i.test(mt) ? 'Image' : /^video\//i.test(mt) ? 'Video' : /^audio\//i.test(mt) ? 'Audio' : 'Document';
808 const a = { type: ty, mediaType: mt, url: x.url };
809 if (x.name) a.name = String(x.name).slice(0, 1500); // alt text / description (AS2 `name`)
810 if (x.poster) a.icon = { type: 'Image', url: x.poster }; // the video's still (shaer-zowq)
811 return a; });
812 for (const a of openAudio) attachment.push(a); // fedi_open tracks → native Audio players
813
814 // Het bandje als bijlage — zie mixtapeAttachment() voor het waarom.
815 const tape = mixtapeAttachment(base, site, post);
816 if (tape) attachment.push(tape);
817
818 // Inline @user@host mentions: the Mention tag objects + the mentioned actor URIs. Only
819 // present when the content was already mention-linked (deliverCreate/Update resolve them
820 // at send time); a plain buildNote (outbox/notes) yields none.
821 const _mentionTags = mentionTags(body);
822 const _mentionCc = _mentionTags.map((t) => t.href);
823
824 const note = {
825 id,
826 type: 'Note',
827 attributedTo: aId,
828 content: titleHtml + body,
829 url: human,
830 published: new Date(post.published_at || post.created_at || Date.now()).toISOString(),
831 // fan_only = "fans only" → followers-only visibility (delivered to your followers
832 // but not addressed to Public, so Mastodon shows it only to them and can't boost it).
833 to: (post.fan_only || post.ap_visibility === 'quiet') ? [`${aId}/followers`] : [PUBLIC],
834 // Mentioned actors (from inline @user@host links the caller resolved) are addressed in cc
835 // so Mastodon notifies them; empty unless the content was mention-linked (delivery time).
836 cc: [...new Set([
837 ...(post.ap_visibility === 'quiet' ? [PUBLIC] : []), // quiet public: Public in cc, not to
838 ...((post.fan_only || post.ap_visibility === 'quiet') ? [] : [`${aId}/followers`]),
839 ..._mentionCc])],
840 tag: [...buildHashtagList(base, post.tags, body), ..._mentionTags, ...playlistLinkTags(base, site, post.content, post)],
841 replies: `${id}/replies`,
842 // NSFW → Mastodon-style content warning: sensitive (blurs media) + a summary/spoiler
843 // (hides the whole post behind a "Gevoelige inhoud" button until the reader opens it).
844 sensitive: !!post.nsfw,
845 };
846 // FEP-633c §2.2: object hint that the author is a ward (safely ignorable).
847 Object.assign(note, Guardianship.hasGuardiansProps(site.slug));
848 // FEP-044f: this post quotes a fediverse object. Emit it the way the network
849 // actually reads it, and address the quoted author so they get told.
850 applyQuoteProps(note, post.quote_uri, post.quote_actor);
851 if (post.nsfw) note.summary = post.content_warning || 'Gevoelige inhoud';
852 if (attachment.length) note.attachment = attachment;
853 // When the cover attachment is suppressed (hosted audio OR an external embed/link-only track →
854 // so Mastodon shows the player/link card, not media), still expose the cover via AS2 `image` so
855 // card/grid consumers (the Klonkt Cirkel/News feed) can show it. Mastodon ignores a Note's
856 // `image`, so its card is unaffected — but a Klonkt receiver reads it (handleInbox o.image).
857 if (post.cover_image_url && noImages) {
858 const cov = abs(post.cover_image_url);
859 if (cov) { note.image = { type: 'Image', mediaType: guessMediaType(cov), url: cov }; if (post.cover_alt) note.image.name = String(post.cover_alt).slice(0, 1500); }
860 }
861 // Experiment (mirrors PeerTube / schema.org `embedUrl`): point at the GATED player page
862 // (/embed) so a client that honours embedUrl can show an inline player WITHOUT ever
863 // getting the audio file — the anti-steal posture is untouched. `embedUrl` is a real
864 // standard field name (not a Klonkt invention); if Mastodon's apps honour it on a Note we
865 // make it JSON-LD-clean with a context term, otherwise it degrades to the player card.
866 if (playable) note.embedUrl = `${base}/embed?post=${encodeURIComponent(post.slug)}`;
867 // Content language → AS2 contentMap (a BCP-47-keyed copy of the content). Mastodon reads the
868 // language from its key for the timeline language filter + the translate button. Emitted
869 // alongside `content` (Mastodon sends both); a plain receiver just uses `content`.
870 if (post.language && /^[a-z]{2,3}(-[A-Za-z]{2,4})?$/.test(post.language)) note.contentMap = { [post.language]: note.content };
871 // A hosted poll → federate as an AS2 Question (options + live tally). Do this last so it
872 // reuses the note's content/addressing/tags, then swaps the type and strips media.
873 const ownPoll = parseOwnPoll(post.poll_json);
874 if (ownPoll) applyPollToNote(note, post.id, ownPoll);
875 return note;
876}
877
878// All reply note URIs on a local post (inbound fediverse replies + our own
879// outbound replies) — backs the Note's `replies` Collection so remote servers
880// can fetch the whole thread.
881export function getReplyUris(base, postId) {
882 const out = [];
883 try {
884 for (const r of db.prepare("SELECT object_uri FROM ap_interactions WHERE kind = 'reply' AND post_id = ? AND object_uri != '' ORDER BY created_at").all(postId)) out.push(r.object_uri);
885 for (const r of db.prepare('SELECT id FROM ap_outbox WHERE post_id = ? ORDER BY rowid').all(postId)) out.push(`${base}/ap/notes/${r.id}`);
886 } catch { /* non-fatal */ }
887 return out;
888}
889
890// Notifications "seen" tracking → a real bell badge. Stored per site in app_settings.
891export function markNotificationsSeen(slug) {
892 try {
893 db.prepare("INSERT INTO app_settings (key, value, updated_at) VALUES (?, ?, CURRENT_TIMESTAMP) ON CONFLICT(key) DO UPDATE SET value = excluded.value, updated_at = CURRENT_TIMESTAMP")
894 .run(`fedi_notif_seen:${slug}`, new Date().toISOString());
895 } catch { /* non-fatal */ }
896}
897export function countUnseenNotifications(slug) {
898 try {
899 const row = db.prepare('SELECT value FROM app_settings WHERE key = ?').get(`fedi_notif_seen:${slug}`);
900 const seen = row ? Date.parse(row.value) : 0;
901 let n = 0;
902 for (const it of getNotifications(slug, 50)) { if (Date.parse(it.created_at) > seen) n++; }
903 return n;
904 } catch { return 0; }
905}
906// The seen-watermark itself (ms epoch, 0 = never marked) — the Messages page reads it
907// BEFORE marking seen, so it can render unread dots on the items newer than last visit.
908export function notificationsSeenAt(slug) {
909 try {
910 const row = db.prepare('SELECT value FROM app_settings WHERE key = ?').get(`fedi_notif_seen:${slug}`);
911 return row ? (Date.parse(row.value) || 0) : 0;
912 } catch { return 0; }
913}
914
915// Messages = the unified inbox (Reacties + Meldingen merged, decision Robin+Bart 2026-07-16):
916// every notification PLUS your own outbound replies ('sent', with edit/delete via their
917// outboxId), sorted as one stream. Consecutive likes/boosts on the same post collapse into
918// one grouped item (actors list + count) so activity doesn't drown out conversations.
919/** ap_outbox.attachments ([{url, mediaType, name}]) naar de vorm die note-body
920 * leest (media_json: [{url, type, name}]). Geeft null bij niets of rommel,
921 * zodat een kapotte kolom hooguit media kost en niet de hele regel. */
922function outboxMediaJson(attachments) {
923 if (!attachments) return null;
924 try {
925 const list = JSON.parse(attachments);
926 if (!Array.isArray(list) || !list.length) return null;
927 const media = list
928 .filter((a) => a && a.url)
929 .map((a) => ({ url: a.url, type: a.mediaType || a.type || '', name: a.name || undefined }));
930 return media.length ? JSON.stringify(media) : null;
931 } catch { return null; }
932}
933
934export function getMessages(slug, limit, offset) {
935 const off = Math.max(0, offset || 0);
936 const lim = limit || 60;
937 // The stream is grouped (consecutive likes/boosts collapse), so paging is done by
938 // recomputing the whole stream top-down and slicing [off, off+lim] — stable across
939 // pages. Fetch a buffer past off+lim so grouping-shrinkage can't hide a full page.
940 const need = off + lim + 100;
941 const items = getNotifications(slug, need);
942 try {
943 for (const m of listOutbox(slug).slice(0, need)) {
944 items.push({
945 type: 'sent', outboxId: m.id, to_handle: m.to_handle, to_actor: m.to_actor, to_actors: m.to_actors,
946 in_reply_to: m.in_reply_to, post_slug: m.post_slug, content: m.content,
947 editable: m.editable, language: m.language, created_at: m.created_at,
948 // Je eigen bericht hoort er hetzelfde uit te zien als dat van een ander:
949 // note-body rendert Berichten, de Krant en de Guardian-PWA, maar leest
950 // media uit media_json met een `type`, terwijl ap_outbox ze als
951 // `attachments` met een `mediaType` bewaart. Zonder deze vertaling kwam
952 // een foto die JIJ meestuurde als kale tekst binnen.
953 media_json: outboxMediaJson(m.attachments),
954 });
955 }
956 } catch { /* ignore */ }
957 // Een verzonden antwoord kent zijn post_slug maar niet de titel (ap_outbox
958 // bewaart die niet). Zonder titel toont een draad waarin JIJ als enige iets
959 // zei alleen een slug, dus vullen we ze in één query aan.
960 try {
961 const missing = [...new Set(items.filter((i) => i.post_slug && !i.post_title).map((i) => i.post_slug))];
962 if (missing.length) {
963 const rows = db.prepare(
964 `SELECT slug, title FROM posts WHERE slug IN (${missing.map(() => '?').join(',')})
965 AND site_id = (SELECT id FROM sites WHERE slug = ?)`,
966 ).all(...missing, slug);
967 const byslug = new Map(rows.map((r) => [r.slug, r.title]));
968 for (const i of items) if (i.post_slug && !i.post_title) i.post_title = byslug.get(i.post_slug) || null;
969 }
970 } catch { /* zonder titel valt de draad terug op de slug */ }
971 items.sort((a, b) => _msgTs(b) - _msgTs(a)); // NaN-safe (zie getNotifications)
972 const out = [];
973 for (const it of items) {
974 const prev = out[out.length - 1];
975 if ((it.type === 'like' || it.type === 'announce') && prev && prev.type === it.type
976 && prev.post_slug === it.post_slug) {
977 prev.actors = prev.actors || [prev.name || prev.handle || '?'];
978 prev.actors.push(it.name || it.handle || '?');
979 prev.count = (prev.count || 1) + 1;
980 continue;
981 }
982 out.push(it);
983 }
984 // Antwoorden, mentions en je eigen verzonden berichten vouwen samen tot
985 // draden; likes/boosts/follows/reports blijven losse regels. Na deze stap
986 // telt een draad als één item voor de paginering, wat klopt: je scrolt door
987 // gesprekken, niet door losse zinnen.
988 return groupConversations(out).slice(off, off + lim);
989}
990
991// De drie soorten die samen een gesprek vormen. Vroeger zaten ze in drie
992// aparte chips: 'reply' en 'mention' onder Berichten/Gesprekken (afhankelijk van
993// de zichtbaarheid) en 'sent' onder Verzonden. Wie een uitwisseling wilde volgen
994// moest dus tussen chips heen en weer, terwijl het één draad is.
995const CONV_TYPES = new Set(['reply', 'mention', 'sent']);
996
997/** Waar hangt dit bericht aan? Twee soorten draden, en de volgorde telt:
998 *
999 * 1. Aan een post van jou. Een ontvangen antwoord kent zijn post via de join
1000 * op `posts`, een verzonden antwoord via ap_outbox.post_slug. Dat is
1001 * dezelfde sleutel, en daarom staan ze nu in dezelfde draad.
1002 * 2. Aan een persoon. Een mention hangt aan niets van jou (het is iemands
1003 * eigen post waarin je genoemd wordt) en heeft geen post_slug; die draad
1004 * loopt per tegenpartij.
1005 *
1006 * De post wint van de persoon: twee mensen die onder dezelfde post reageren
1007 * voeren één gesprek, geen twee. Geeft null terug voor alles wat geen gesprek
1008 * is (likes, boosts, follows, reports, poll-uitslagen); die stromen ongemoeid
1009 * door.
1010 */
1011export function threadKey(it) {
1012 if (!it || !CONV_TYPES.has(it.type)) return null;
1013 if (it.post_slug) return `post:${it.post_slug}`;
1014 let who = it.handle || it.to_handle || '';
1015 // Een direct bericht kan zonder to_handle in de tabel staan (de handle van de
1016 // ontvanger was niet af te leiden). De eerste uit to_actors is dan alsnog de
1017 // tegenpartij, en zonder deze terugval kreeg een gesprek dat JIJ begon geen
1018 // draad -- precies het geval waarin het meest onlogisch is dat het los blijft.
1019 if (!who && it.to_actors) {
1020 try {
1021 const first = JSON.parse(it.to_actors)[0];
1022 if (first) who = deriveHandle(first);
1023 } catch { /* geen bruikbare lijst → geen sleutel, het blijft een losse regel */ }
1024 }
1025 const norm = String(who || '').trim().toLowerCase().replace(/^@/, '');
1026 return norm ? `actor:${norm}` : null;
1027}
1028
1029/** Vouw losse berichten samen tot draden, met alles wat geen gesprek is
1030 * ongemoeid ertussen. Verwacht [items] al gesorteerd op created_at aflopend
1031 * (zoals getMessages ze aanlevert); de draad komt daardoor op de plek van zijn
1032 * nieuwste bericht te staan en `created_at` van de draad IS dat bericht. Binnen
1033 * de draad draait het om: een gesprek leest naar beneden, oud naar nieuw.
1034 */
1035export function groupConversations(items) {
1036 const threads = new Map();
1037 const out = [];
1038 for (const it of items || []) {
1039 const key = threadKey(it);
1040 if (!key) { out.push(it); continue; }
1041 let t = threads.get(key);
1042 if (!t) {
1043 // Eerste keer dat we deze draad zien = het nieuwste bericht erin, want de
1044 // invoer is aflopend gesorteerd. Vandaar created_at hier en niet later.
1045 t = { type: 'thread', key, post: null, people: [], messages: [], created_at: it.created_at };
1046 threads.set(key, t);
1047 out.push(t);
1048 }
1049 t.messages.push(it);
1050 // De context bij de draad: gaat het over een post, dan hoort de link
1051 // erbij, anders is een los antwoord in een lijst niet te plaatsen.
1052 // De titel blijft LEEG zolang hij onbekend is, in plaats van terug te
1053 // vallen op de slug: het nieuwste bericht in een draad is vaak je eigen
1054 // verzonden antwoord, en dat kent alleen de slug. Zou die de titel worden,
1055 // dan kan het ontvangen antwoord eronder de echte titel niet meer
1056 // invullen. De terugval op de slug hoort in de weergave, niet in de data.
1057 if (it.post_slug) {
1058 if (!t.post) t.post = { slug: it.post_slug, title: it.post_title || null };
1059 else if (!t.post.title && it.post_title) t.post.title = it.post_title;
1060 }
1061 }
1062 for (const t of threads.values()) {
1063 t.messages.sort((a, b) => _msgTs(a) - _msgTs(b));
1064 t.count = t.messages.length;
1065 // Wie zit er in dit gesprek, jij niet meegerekend: 'sent' ben jij.
1066 const seen = new Set();
1067 for (const m of t.messages) {
1068 if (m.type === 'sent') continue;
1069 const h = m.handle || m.name;
1070 if (!h || seen.has(h)) continue;
1071 seen.add(h);
1072 t.people.push({ name: m.name, handle: m.handle, icon: m.icon, url: m.url });
1073 }
1074 // Heb JIJ in deze draad iets gezegd? Bepaalt of hij als uitwisseling of als
1075 // onbeantwoord bericht leest.
1076 t.mine = t.messages.some((m) => m.type === 'sent');
1077 // Waar gaat een antwoord uit deze draad heen? Twee paden, en ze sluiten
1078 // elkaar uit: hangt de draad aan een post, dan antwoord je op het NIEUWSTE
1079 // ontvangen bericht erin (dat is de parent van de thread) -- anders is het
1080 // een direct bericht aan de tegenpartij.
1081 const inkomend = t.messages.filter((m) => m.type !== 'sent');
1082 const laatste = inkomend[inkomend.length - 1];
1083 t.replyTo = {
1084 interactionId: (laatste && laatste.interactionId) || null,
1085 postSlug: (t.post && t.post.slug) || null,
1086 actorUri: (laatste && (laatste.actorUri || laatste.url))
1087 || (t.messages.find((m) => m.to_actor) || {}).to_actor
1088 || (() => { try { return JSON.parse((t.messages.find((m) => m.to_actors) || {}).to_actors || '[]')[0] || null; } catch { return null; } })(),
1089 };
1090 }
1091 return out;
1092}
1093
1094export function buildCreate(base, site, post, opts = {}) {
1095 const note = buildNote(base, site, post, opts);
1096 return {
1097 '@context': AP_CONTEXT,
1098 id: note.id + '#create',
1099 type: 'Create',
1100 actor: actorId(base, site.slug),
1101 published: note.published,
1102 to: note.to,
1103 cc: note.cc,
1104 object: note,
1105 };
1106}
1107
1108
1109/**
1110 * De outbox: wat deze actor heeft uitgebracht. Posts EN tracks (shaer-0nh,
1111 * stap 4).
1112 *
1113 * WAAROM HIER EN NIET IN EEN BEZORGING. Een kanaal-lezer HAALT de outbox op --
1114 * zo heb ik zelf Funkwhales kanaal uitgelezen. Een Create(Audio) ook naar de
1115 * inboxen van volgers duwen zou schade doen: Mastodon neemt Audio aan als
1116 * statustype, dus bij een album-post zou dezelfde muziek twee keer in hun
1117 * tijdlijn komen -- een keer als bijlage bij de Note, en dan nog N keer los.
1118 * De post is het bericht, de outbox is de discografie.
1119 *
1120 * Door elkaar op datum, nieuwste eerst, zodat de outbox één verhaal vertelt in
1121 * plaats van twee lijstjes achter elkaar.
1122 *
1123 * De tracks komen als ARGUMENT binnen, net als de posts, en worden hier
1124 * uitdrukkelijk NIET zelf opgehaald. De route beslist wie wat mag zien -- een
1125 * geblokkeerde bezoeker krijgt daar een lege outbox, en een bouwer die stiekem
1126 * zijn eigen database bevraagt zou dwars door die deur heen leveren.
1127 */
1128/**
1129 * Een PAGINA van de outbox, in SQL (shaer-sk4).
1130 *
1131 * De outbox mengt twee bronnen: posts en open tracks, gevlochten op datum. Een
1132 * offset over die twee kan niet met twee losse queries -- je weet niet hoeveel
1133 * van elk er in pagina drie horen. Vandaar een UNION met de datum als sleutel,
1134 * daar de LIMIT/OFFSET overheen, en pas dan de rijen zelf ophalen.
1135 *
1136 * Wat er stond was geen paginering maar een KAP: de route haalde twintig posts
1137 * en hield daarvan twintig items over. Alles daarvoor was niet op een volgende
1138 * pagina maar helemaal onbereikbaar.
1139 *
1140 * @param {boolean} fanOnly mag de lezer ook de fans-only posts zien?
1141 */
1142export function outboxSlice(siteId, { fanOnly = false, offset = 0, limit = MAX_OUTBOX } = {}) {
1143 const fanClause = fanOnly ? '' : 'AND (p.fan_only IS NULL OR p.fan_only = 0)';
1144 const unie = `
1145 SELECT 'post' AS soort, p.id AS id, COALESCE(p.published_at, p.created_at) AS wanneer
1146 FROM posts p WHERE p.site_id = ? AND p.status = 'published' ${fanClause}
1147 UNION ALL
1148 SELECT 'track', t.id, t.created_at
1149 FROM audio_tracks t WHERE t.site_id = ? AND t.fedi_open = 1`;
1150 let rijen = [], totaal = 0;
1151 try {
1152 totaal = db.prepare(`SELECT COUNT(*) n FROM (${unie})`).get(siteId, siteId).n;
1153 rijen = db.prepare(`SELECT soort, id FROM (${unie}) ORDER BY wanneer DESC LIMIT ? OFFSET ?`)
1154 .all(siteId, siteId, limit, Math.max(0, offset));
1155 } catch { return { posts: [], tracks: [], totaal: 0 }; }
1156
1157 const postIds = rijen.filter((r) => r.soort === 'post').map((r) => r.id);
1158 const trackIds = rijen.filter((r) => r.soort === 'track').map((r) => r.id);
1159 const gaten = (n) => Array.from({ length: n }, () => '?').join(',');
1160 const posts = postIds.length ? db.prepare(
1161 // fan_only en ap_visibility MOETEN mee. buildNote adresseert hierop, en
1162 // zonder deze twee kolommen is post.fan_only altijd undefined: elke
1163 // fan-only post ging dan de outbox uit met to: as:Public, terwijl hij
1164 // alleen aan vrienden geserveerd wordt. Een volger kreeg dus een
1165 // vrienden-post met een publiek etiket erop, en die mag hij dan publiek
1166 // boosten. Gevonden tijdens de FEP-1580 end-to-end test (shaer-fuyo).
1167 // EN paid + excerpt, om exact dezelfde reden (Barts melding, 15-8). Zonder
1168 // `paid` is post.paid hier `undefined`, dan slaat buildNote zijn redactie
1169 // over en gaat de VOLLEDIGE tekst van een betaalde post de outbox uit. Zo
1170 // kwam een post via een hub-actor gewoon te lezen. `excerpt` moet mee omdat
1171 // de teaser daaruit komt; zonder dat veld valt hij terug op de eerste
1172 // alinea van precies de tekst die verborgen hoort te blijven.
1173 //
1174 // Dit is een KOLOMMENLIJST, en die faalt stil: een vergeten kolom is
1175 // `undefined` en niet een fout. Wie hier een veld toevoegt waar buildNote
1176 // op beslist, moet het HIER ook toevoegen.
1177 `SELECT id, slug, title, excerpt, content, cover_image_url, cover_video_url, nsfw, content_warning,
1178 c2s_attachments, quote_json, embed_json, published_at, created_at,
1179 fan_only, ap_visibility, paid, paid_min_cents
1180 FROM posts WHERE id IN (${gaten(postIds.length)})`).all(...postIds) : [];
1181 const tracks = trackIds.length ? db.prepare(
1182 `SELECT ${TRACK_KOLOMMEN}
1183 FROM audio_tracks t JOIN media m ON m.id = t.media_id
1184 WHERE t.id IN (${gaten(trackIds.length)})`).all(...trackIds) : [];
1185 return { posts, tracks, totaal };
1186}
1187
1188export function buildOutbox(base, site, posts, tracks = [], { page = false, totalItems, alGesneden = false, rauweInhoud = false } = {}) {
1189 const id = `${actorId(base, site.slug)}/outbox`;
1190 const wanneer = (x) => Date.parse(x && x.published ? x.published : 0) || 0;
1191 const items = [
1192 ...(posts || []).map((p) => buildCreate(base, site, p, { rauweInhoud })),
1193 // Eén zoekopdracht voor alle tracks samen, niet per stuk.
1194 ...(() => {
1195 const posts = (tracks || []).length && site.id ? trackHostPosts(site.id) : null;
1196 return (tracks || []).map((r) => buildTrackCreate(base, site, r, { hostPosts: posts }));
1197 })(),
1198 ]
1199 .sort((a, b) => wanneer(b) - wanneer(a))
1200 .slice(0, alGesneden ? Infinity : MAX_OUTBOX);
1201 // WAT HIER NOG NIET GEPAGINEERD IS, en dat hoort genoemd (shaer-sk4): deze
1202 // lijst is al door de route op twintig rijen afgekapt, dus pagina 2 is leeg.
1203 // Echt doorbladeren vraagt een LIMIT/OFFSET in SQL -- en dat is hier lastiger
1204 // dan bij volgers, want posts en tracks worden op DATUM door elkaar gevlochten
1205 // en komen uit twee tabellen. Dat vraagt een UNION met een offset erover, geen
1206 // tweede slice. De vorm klopt nu wel: pagina 2 zegt eerlijk dat hij leeg is en
1207 // biedt geen `next` aan, in plaats van pagina 1 nog eens te geven.
1208 // GEPAGINEERD, ook al past alles op een pagina (Funkwhale, 11-8).
1209 //
1210 // Hun serializer weigerde onze outbox met "first: This field is required" en
1211 // "last: This field is required". AS2 EIST ze niet -- een collectie mag zijn
1212 // items inline dragen -- maar bijna iedereen pagineert, en een lezer die de
1213 // paginaweg volgt liep hier dood. Dit is de eerste concrete reden die we
1214 // hoorden waarom er niets van ons binnenkwam.
1215 //
1216 // De items blijven WEL inline op de wortel. Shaer bouwt zijn feed daaruit, en
1217 // wie hem vandaag leest hoort er morgen niet voor te hoeven pagineren. Er is
1218 // precies een pagina, dus first en last wijzen naar dezelfde.
1219 return pagedCollection(id, items, { page, totalItems, alGesneden });
1220}
1221
1222// Public callers get a count-only collection (privacy). The authenticated
1223// account owner (a C2S bearer scoped to this site) gets the real actor URIs via
1224// `items`, so their own client can build a friends list.
1225export function buildFollowers(base, site, count, items = null, { page = false } = {}) {
1226 const id = `${actorId(base, site.slug)}/followers`;
1227 // count-only for the public; full for the owner
1228 return pagedCollection(id, items || [], { totalItems: items ? items.length : (count || 0), page });
1229}
1230
1231// The accounts this site follows — count only, mirroring buildFollowers. The spec lists
1232// `following` as a standard actor property; Hubzilla/Friendica + crawlers expect it.
1233export function buildFollowing(base, site, count, items = null, { page = false } = {}) {
1234 const id = `${actorId(base, site.slug)}/following`;
1235 // count-only for the public; full for the owner
1236 return pagedCollection(id, items || [], { totalItems: items ? items.length : (count || 0), page });
1237}
1238
1239// Pinned posts → the actor's `featured` collection. Mastodon reads this and shows
1240// these as the "Featured" tab (pinned to the profile). Posts come ordered by pin
1241// rank; embedded as full Notes so a remote server doesn't need extra fetches.
1242export function buildFeatured(base, site, posts, { page = false } = {}) {
1243 const id = `${actorId(base, site.slug)}/featured`;
1244 const items = (posts || []).map((p) => buildNote(base, site, p));
1245 return pagedCollection(id, items, { page });
1246}
1247
1248// ── Playlist als AP-collectie (shaer-ayc, stap 1 van het Funkwhale-spoor) ──
1249// Een playlist heeft, anders dan een album-als-tekstveld, een id — dus kan hij
1250// een stabiele URI dragen en federeren. De vorm is bewust kaal AS2: een
1251// OrderedCollection van Audio-objecten, dezelfde rijvorm die een post als
1252// attachment meestuurt, zodat elke client die post-audio al speelt dit ook
1253// speelt.
1254//
1255// De poortregel verandert hier NIET: alleen fedi_open-tracks staan erin, met
1256// echte bestands-URL. Een gated track is niet "een rij zonder url" maar
1257// afwezig — wie de collectie leest ziet het open deel en kan niet aftellen
1258// hoeveel er achter de poort staat. totalItems telt daarom ook alleen het
1259// open deel: een eerlijke telling over wat er werkelijk in de collectie staat,
1260// niet over wat wij thuis in de kast hebben.
1261
1262// ── followers store (lazy stmts) ──────────────────────────────────
1263let _insF, _updFDisp, _delF, _listF, _cntF;
1264function fStmts() {
1265 if (!_insF) {
1266 _insF = db.prepare('INSERT OR IGNORE INTO ap_followers (slug, actor_uri, inbox, shared_inbox, name, handle, icon, created_at) VALUES (?,?,?,?,?,?,?,CURRENT_TIMESTAMP)');
1267 _updFDisp = db.prepare('UPDATE ap_followers SET name = COALESCE(?, name), handle = COALESCE(?, handle), icon = COALESCE(?, icon) WHERE slug = ? AND actor_uri = ?');
1268 _delF = db.prepare('DELETE FROM ap_followers WHERE slug = ? AND actor_uri = ?');
1269 _listF = db.prepare('SELECT inbox, shared_inbox FROM ap_followers WHERE slug = ?');
1270 _cntF = db.prepare('SELECT COUNT(*) n FROM ap_followers WHERE slug = ?');
1271 }
1272 return { ins: _insF, del: _delF, list: _listF, cnt: _cntF };
1273}
1274export function followerCount(slug) { return fStmts().cnt.get(slug).n; }
1275
1276// Followers with delivery health, for the management list. Never-delivered accounts
1277// first, then oldest successful delivery first — i.e. the cleanup candidates on top.
1278export function listFollowers(slug) {
1279 return db.prepare(
1280 `SELECT id, actor_uri, inbox, shared_inbox, created_at, last_delivery_at, last_error_at
1281 FROM ap_followers WHERE slug = ?
1282 ORDER BY (last_delivery_at IS NULL) DESC, last_delivery_at ASC, created_at ASC`
1283 ).all(slug);
1284}
1285// Manually drop a follower after a check (a still-live account would have to re-follow).
1286/**
1287 * Een volger verwijderen, en het hem ook LATEN WETEN (Robin, 21-8).
1288 *
1289 * Reject(Follow) is het standaardsignaal voor "je volgt me niet meer": de
1290 * andere kant ruimt de relatie dan op in plaats van te blijven denken dat hij
1291 * volgt. Zonder dit merkte de hub niets -- die bleef als volger in zijn eigen
1292 * boeken staan terwijl er nooit meer iets werd bezorgd.
1293 *
1294 * Verwijderen gaat altijd door; de melding is een gunst en mag mislukken.
1295 */
1296export function removeFollower(slug, id) {
1297 const rij = db.prepare('SELECT actor_uri FROM ap_followers WHERE slug = ? AND id = ?').get(slug, id);
1298 const info = db.prepare('DELETE FROM ap_followers WHERE slug = ? AND id = ?').run(slug, id);
1299 if (info.changes > 0 && rij && rij.actor_uri) meldNietLangerVolger(slug, rij.actor_uri);
1300 return info.changes > 0;
1301}
1302
1303/** Reject(Follow) naar een ex-volger; faalt stil, want de relatie is al weg. */
1304export function meldNietLangerVolger(slug, actorUri) {
1305 try {
1306 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
1307 const me = actorId(base, slug);
1308 const site = db.prepare('SELECT * FROM sites WHERE slug = ?').get(slug);
1309 if (!site) return;
1310 const reject = {
1311 '@context': AP_CONTEXT,
1312 id: `${me}#reject-follow-${Date.now()}-${rid()}`,
1313 type: 'Reject',
1314 actor: me,
1315 to: [actorUri],
1316 object: { type: 'Follow', actor: actorUri, object: me },
1317 };
1318 deliverToActor(site, actorUri, reject)
1319 .then((r) => console.log('[AP] Reject(Follow)', slug, '→', actorUri, r && r.delivered ? 'bezorgd' : 'niet bezorgd'))
1320 .catch(() => {});
1321 } catch { /* nooit blokkerend */ }
1322}
1323
1324// Best cached display for an actor URI, across the caches Klonkt already fills:
1325// followers (now with name/icon), following, interactions, timeline, mentions.
1326// Falls back to a handle derived from the URI. Display info is not sensitive.
1327export function actorDisplay(slug, uri) {
1328 const ok = (r) => r && (r.name || r.icon);
1329 try {
1330 let r = db.prepare('SELECT name, handle, icon FROM ap_followers WHERE slug = ? AND actor_uri = ?').get(slug, uri);
1331 if (ok(r)) return { name: r.name, handle: r.handle || deriveHandle(uri), icon: r.icon };
1332 r = db.prepare('SELECT name, handle, icon FROM ap_following WHERE slug = ? AND actor_uri = ?').get(slug, uri);
1333 if (ok(r)) return { name: r.name, handle: r.handle || deriveHandle(uri), icon: r.icon };
1334 r = db.prepare('SELECT actor_name AS name, actor_handle AS handle, actor_icon AS icon FROM ap_interactions WHERE actor_uri = ? AND (actor_name IS NOT NULL OR actor_icon IS NOT NULL) ORDER BY created_at DESC LIMIT 1').get(uri);
1335 if (ok(r)) return { name: r.name, handle: r.handle || deriveHandle(uri), icon: r.icon };
1336 r = db.prepare('SELECT author_name AS name, author_handle AS handle, author_icon AS icon FROM ap_timeline WHERE author_uri = ? AND (author_name IS NOT NULL OR author_icon IS NOT NULL) LIMIT 1').get(uri);
1337 if (ok(r)) return { name: r.name, handle: r.handle || deriveHandle(uri), icon: r.icon };
1338 r = db.prepare('SELECT actor_name AS name, actor_handle AS handle, actor_icon AS icon FROM ap_mentions WHERE actor_uri = ? AND (actor_name IS NOT NULL OR actor_icon IS NOT NULL) ORDER BY created_at DESC LIMIT 1').get(uri);
1339 if (ok(r)) return { name: r.name, handle: r.handle || deriveHandle(uri), icon: r.icon };
1340 } catch { /* ignore */ }
1341 return { name: null, handle: deriveHandle(uri), icon: null };
1342}
1343
1344// FEP-9876: does this `Prefer` header ask for enriched (embedded) members?
1345// Pure and testable; the route sets the response headers around it.
1346export function prefersEnriched(preferHeader) {
1347 return /(^|[,;\s])return=representation($|[,;\s])/i.test(String(preferHeader || ''));
1348}
1349
1350// AS2 actor reference with display, for the owner C2S followers/following view.
1351// preferredUsername = the local part of the handle; name = the set display name.
1352export function buildActorRef(slug, uri) {
1353 const d = actorDisplay(slug, uri);
1354 const user = d.handle && d.handle[0] === '@' ? d.handle.slice(1).split('@')[0] : null;
1355 const out = { id: uri, type: 'Person' };
1356 if (d.name) out.name = d.name;
1357 if (user) out.preferredUsername = user;
1358 if (d.icon) out.icon = { type: 'Image', url: d.icon };
1359 return out;
1360}
1361
1362// The site's OWN display info in the same shape as `shaer:author` on timeline
1363// entries. The owner's app reads its own posts from the outbox, which carried
1364// no author info, so every card but your own had a byline (Robins melding,
1365// 30-7: geen header van self op eigen posts).
1366export function selfAuthor(base, site) {
1367 const out = {
1368 name: site.title || site.slug,
1369 handle: `@${site.slug}@${String(base).replace(/^https?:\/\//, '')}`,
1370 url: `${base}/${site.slug === site.primary_slug ? '' : 'user/' + encodeURIComponent(site.slug)}`,
1371 };
1372 if (site.profile_photo) {
1373 out.icon = /^https?:/.test(site.profile_photo) ? site.profile_photo : `${base}${site.profile_photo.startsWith('/') ? '' : '/'}${site.profile_photo}`;
1374 }
1375 return out;
1376}
1377
1378// Merge who-you-follow (ap_following, rich display) with who-follows-you (ap_followers,
1379// delivery health) into ONE connections list, keyed by actor_uri. Each entry gets a
1380// direction (following →, follower ←, mutual ↔) and, for accounts we deliver to, an
1381// `unreachable` flag (never delivered, or last attempt failed after the last success) so
1382// the view can split dead connections into their own section. Powers the Connect page.
1383export function listConnections(slug) {
1384 const byUri = new Map();
1385 for (const f of listFollowing(slug)) {
1386 byUri.set(f.actor_uri, {
1387 actor_uri: f.actor_uri, name: f.name || null, handle: f.handle || null,
1388 icon: f.icon || null, url: f.url || null, auto_boost: f.auto_boost ? 1 : 0,
1389 status: f.status || null, following: true, follower: false,
1390 last_delivery_at: null, last_error_at: null, follower_id: null,
1391 });
1392 }
1393 for (const fo of listFollowers(slug)) {
1394 const e = byUri.get(fo.actor_uri);
1395 if (e) { e.follower = true; e.last_delivery_at = fo.last_delivery_at; e.last_error_at = fo.last_error_at; e.follower_id = fo.id; }
1396 else byUri.set(fo.actor_uri, {
1397 actor_uri: fo.actor_uri, name: null, handle: null, icon: null, url: null,
1398 auto_boost: 0, status: null, following: false, follower: true,
1399 last_delivery_at: fo.last_delivery_at, last_error_at: fo.last_error_at, follower_id: fo.id,
1400 });
1401 }
1402 return [...byUri.values()].map((e) => {
1403 e.direction = (e.following && e.follower) ? 'mutual' : (e.following ? 'following' : 'follower');
1404 e.unreachable = e.follower && (!e.last_delivery_at || (!!e.last_error_at && (!e.last_delivery_at || e.last_error_at > e.last_delivery_at)));
1405 return e;
1406 });
1407}
1408
1409// ── inbound interactions store (replies / likes / boosts) + our outbound replies ──
1410let _insI, _delLA, _delReply, _listI, _getI, _insO, _listO, _getO;
1411// ── moderation tombstones (ap_rejected_objects) ───────────────────
1412// A reply the owner removed stays removed: its object URI is tombstoned and
1413// checked at ingest AND by the thread-crawler (else thread-filling would
1414// re-fetch it). Owner moderation acts on the LOCAL copy, so it also works for
1415// private notes that authorize_interaction can't fetch (401/404).
1416let _insRj, _hasRj;
1417function rjStmts() {
1418 if (!_insRj) {
1419 _insRj = db.prepare('INSERT OR IGNORE INTO ap_rejected_objects (object_uri, post_id, reason) VALUES (?,?,?)');
1420 _hasRj = db.prepare('SELECT 1 FROM ap_rejected_objects WHERE object_uri = ?');
1421 }
1422 return { ins: _insRj, has: _hasRj };
1423}
1424export function isRejectedObject(uri) {
1425 if (!uri) return false;
1426 try { return !!rjStmts().has.get(String(uri)); } catch { return false; }
1427}
1428// Owner removes an incoming reply: tombstone + delete. Tenancy-scoped: the
1429// interaction's post must belong to the caller's site.
1430export function rejectInteraction(site, interactionId, reason) {
1431 if (!site || !site.slug) return { error: 'forbidden' };
1432 const row = iStmts().getI.get(interactionId);
1433 if (!row) return { error: 'not_found' };
1434 const owns = db.prepare('SELECT 1 FROM posts WHERE id = ? AND site_id = (SELECT id FROM sites WHERE slug = ?)')
1435 .get(row.post_id, site.slug);
1436 if (!owns) return { error: 'forbidden' };
1437 if (row.object_uri) { try { rjStmts().ins.run(row.object_uri, row.post_id, reason || 'removed by site owner'); } catch { /* non-fatal */ } }
1438 db.prepare('DELETE FROM ap_interactions WHERE id = ?').run(interactionId);
1439 console.log('[AP] interaction removed by owner', site.slug, row.object_uri || row.actor_uri);
1440 return { ok: true, object_uri: row.object_uri || null, actor_uri: row.actor_uri || null };
1441}
1442// Stored URIs of an interaction (tenancy-scoped) → feed sendReport for flagging
1443// from the local copy (works for private notes; no remote fetch needed to target).
1444export function interactionReportTarget(site, interactionId) {
1445 if (!site || !site.slug) return null;
1446 const row = iStmts().getI.get(interactionId);
1447 if (!row) return null;
1448 const owns = db.prepare('SELECT 1 FROM posts WHERE id = ? AND site_id = (SELECT id FROM sites WHERE slug = ?)')
1449 .get(row.post_id, site.slug);
1450 if (!owns) return null;
1451 return { objectUri: row.object_uri || null, actorUri: row.actor_uri || null };
1452}
1453
1454// AP addressing → visibility: 'public' | 'unlisted' | 'followers' | 'direct'.
1455// Mastodon-conventie: Public in `to` = public, Public in `cc` = unlisted, een
1456// followers-collectie zonder Public = followers-only, anders direct (DM). Public
1457// kan als volledige URI, 'as:Public' of 'Public' voorkomen (JSON-LD shorthands).
1458export function noteVisibility(o) {
1459 const arr = (v) => (Array.isArray(v) ? v : (v ? [v] : []));
1460 const isPub = (u) => u === PUBLIC || u === 'as:Public' || u === 'Public';
1461 const to = arr(o && o.to).map(String);
1462 const cc = arr(o && o.cc).map(String);
1463 if (to.some(isPub)) return 'public';
1464 if (cc.some(isPub)) return 'unlisted';
1465 if ([...to, ...cc].some((u) => /\/followers\/?$/.test(u))) return 'followers';
1466 return 'direct';
1467}
1468
1469/**
1470 * Does this note belong in the home timeline (de Krant)?
1471 *
1472 * Only if it is a POST. A direct note is addressed to named people, so it is a
1473 * message: a plain DM, a ward's 🛟 help request (FEP-633c 5.2.1) or a
1474 * guardian's wave. Those are stored as mentions instead and surface in
1475 * Berichten and the Guardian PWA. A reply belongs to its thread, not the feed.
1476 */
1477export function belongsInTimeline(o) {
1478 if (!o || !o.id || o.inReplyTo) return false;
1479 return noteVisibility(o) !== 'direct';
1480}
1481
1482function iStmts() {
1483 if (!_insI) {
1484 _insI = db.prepare('INSERT OR IGNORE INTO ap_interactions (kind, post_id, object_uri, actor_uri, actor_name, actor_handle, actor_url, actor_icon, content, published, parent_uri, visibility, emoji_json, actor_emoji_json, created_at) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,CURRENT_TIMESTAMP)');
1485 _delLA = db.prepare('DELETE FROM ap_interactions WHERE kind = ? AND post_id = ? AND actor_uri = ?');
1486 _delReply = db.prepare("DELETE FROM ap_interactions WHERE kind = 'reply' AND object_uri = ?");
1487 _listI = db.prepare('SELECT id, kind, object_uri, parent_uri, actor_uri, actor_name, actor_handle, actor_url, actor_icon, content, published, created_at, acted_boost, acted_like, visibility, emoji_json, actor_emoji_json FROM ap_interactions WHERE post_id = ? ORDER BY created_at ASC');
1488 _getI = db.prepare('SELECT * FROM ap_interactions WHERE id = ?');
1489 _insO = db.prepare('INSERT INTO ap_outbox (id, site_slug, post_id, post_slug, in_reply_to, to_actor, to_handle, content, language, attachments, created_at) VALUES (?,?,?,?,?,?,?,?,?,?,CURRENT_TIMESTAMP)');
1490 _listO = db.prepare('SELECT * FROM ap_outbox WHERE post_id = ? ORDER BY created_at ASC');
1491 _getO = db.prepare('SELECT * FROM ap_outbox WHERE id = ?');
1492 }
1493 return { ins: _insI, delLA: _delLA, delReply: _delReply, list: _listI, getI: _getI, insO: _insO, listO: _listO, getO: _getO };
1494}
1495
1496export function getInteractionById(id) { return iStmts().getI.get(id); }
1497export function setInteractionBoosted(id, on) {
1498 db.prepare('UPDATE ap_interactions SET acted_boost = ? WHERE id = ?').run(on ? 1 : 0, id);
1499}
1500export function setInteractionLiked(id, on) {
1501 db.prepare('UPDATE ap_interactions SET acted_like = ? WHERE id = ?').run(on ? 1 : 0, id);
1502}
1503
1504const localPostExists = (id) => { try { return !!db.prepare('SELECT 1 FROM posts WHERE id = ?').get(id); } catch { return false; } };
1505// Extract our local post id from a note URL, but only if it's ours (base match).
1506// One host, two spellings (Barts WebFinger-les, 2-8): a URL the client hands
1507// back may carry the punycoded host (every URL parser silently punycodes)
1508// while PUBLIC_BASE_URL carries the typed one. WHATWG URL does the IDNA, so
1509// compare origins in ASCII and never the bytes the client happened to send.
1510function asciiOrigin(u) {
1511 try { const x = new URL(String(u)); return `${x.protocol}//${x.host}`.toLowerCase(); } catch { return null; }
1512}
1513function isOwnUrl(u) {
1514 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
1515 if (!base) return false;
1516 const a = asciiOrigin(u);
1517 return !!a && a === asciiOrigin(base);
1518}
1519function postIdFromNoteUrl(url, base) {
1520 const s = String(url || '');
1521 // ASCII origins, not startsWith: xn--zz9h.example IS 🩵.example, and a
1522 // byte comparison read our own note as a stranger's.
1523 if (base) { const a = asciiOrigin(s); if (!a || a !== asciiOrigin(base)) return null; }
1524 const m = s.match(/\/ap\/notes\/([^/?#]+)/);
1525 return m ? decodeURIComponent(m[1]) : null;
1526}
1527export function deriveHandle(actorUri) {
1528 try { const u = new URL(actorUri); const seg = u.pathname.split('/').filter(Boolean).pop() || ''; return `@${seg}@${u.host}`; } catch { return String(actorUri || ''); }
1529}
1530function actorInfo(doc, actorUri) {
1531 let host = ''; try { host = new URL(actorUri).host; } catch { /* keep empty */ }
1532 const handle = doc && doc.preferredUsername ? `@${doc.preferredUsername}@${host}` : deriveHandle(actorUri);
1533 const icon = doc && doc.icon ? (doc.icon.url || (Array.isArray(doc.icon) && doc.icon[0] && doc.icon[0].url)) : null;
1534 const name = (doc && (doc.name || doc.preferredUsername)) || handle;
1535 // Een AS2 `url` mag een ARRAY van Links zijn -- onze eigen buildActor doet
1536 // dat (profiel + RSS), en een oudere consument stringde die array tot
1537 // "[object Object],[object Object]" in de mention-hrefs van een hulpvraag
1538 // (Barts vondst, 8-8). pickLink kiest de html-Link; de kale string blijft
1539 // de gewone weg, en de actor-id de terugval.
1540 const profiel = (doc && Array.isArray(doc.url))
1541 ? ((pickLink(doc.url, (mt) => !mt || /html/i.test(mt)) || {}).href || safeUrl(doc.id || actorUri))
1542 : safeUrl((doc && (doc.url || doc.id)) || actorUri);
1543 return {
1544 name,
1545 handle,
1546 url: profiel || null,
1547 icon: safeUrl(icon) || null,
1548 // FEP-9098 custom emojis in the display name (":shortcode:"), so the byline
1549 // renders them. Only computed when the name actually has a shortcode.
1550 emojis: /:[A-Za-z0-9_+-]+:/.test(name) ? actorNameEmojis(doc) : undefined,
1551 };
1552}
1553
1554// Map ":shortcode:" → image url from an actor doc's Emoji tags (for a custom-
1555// emoji display name). Undefined when there are none.
1556function actorNameEmojis(doc) {
1557 const arr = doc && Array.isArray(doc.tag) ? doc.tag : (doc && doc.tag ? [doc.tag] : []);
1558 const out = {};
1559 for (const t of arr) {
1560 if (!t || (Array.isArray(t.type) ? t.type[0] : t.type) !== 'Emoji' || typeof t.name !== 'string' || !t.icon) continue;
1561 const u = t.icon.url || (Array.isArray(t.icon) && t.icon[0] && t.icon[0].url);
1562 if (u) out[t.name] = u;
1563 }
1564 return Object.keys(out).length ? out : undefined;
1565}
1566
1567// Given an inReplyTo note URL, find which local post the thread belongs to + the
1568// note being replied to (parent), so a reply-to-a-comment can be nested.
1569function findThreadTarget(inReplyTo, base) {
1570 if (!inReplyTo) return null;
1571 const seg = postIdFromNoteUrl(inReplyTo, base); // our /ap/notes/<id> segment (if ours)
1572 if (seg && localPostExists(seg)) return { post_id: seg, parent_uri: inReplyTo };
1573 if (seg) {
1574 try { const o = db.prepare('SELECT post_id FROM ap_outbox WHERE id = ?').get(seg); if (o && o.post_id) return { post_id: o.post_id, parent_uri: inReplyTo }; } catch { /* ignore */ }
1575 }
1576 try { const row = db.prepare("SELECT post_id FROM ap_interactions WHERE object_uri = ? AND kind = 'reply' LIMIT 1").get(inReplyTo); if (row && row.post_id) return { post_id: row.post_id, parent_uri: inReplyTo }; } catch { /* ignore */ }
1577 return null;
1578}
1579
1580// Drop the leading @mention(s) a federated reply carries (the person being replied to),
1581// so a comment reads "dope tekening ouwe" instead of "@jason@jasonhacky.nl dope …".
1582// Keeps a leading <p> wrapper; handles mention <a> links and plain-text @user@domain.
1583export function stripLeadingMentions(html) {
1584 if (!html) return html;
1585 let s = String(html);
1586 s = s.replace(/^(\s*<p[^>]*>)?\s*(?:<a\b[^>]*>\s*@[^<]+<\/a>[  ]*)+/i, (m, p) => p || '');
1587 s = s.replace(/^(\s*<p[^>]*>)?\s*(?:@[\w.-]+(?:@[\w.-]+)?[  ]+)+/i, (m, p) => p || '');
1588 return s;
1589}
1590
1591// View-ready threaded view of a post's fediverse activity (inbound replies +
1592// our outbound replies, nested), plus like/boost counts.
1593export function getInteractions(postId, base, site) {
1594 const s = iStmts();
1595 // Privacy: a followers-only or direct (DM) reply is addressed to people, not to the
1596 // public web, so it must NOT render in the public thread. It still reaches the owner
1597 // via notifications (post context + reference included there). Legacy rows without a
1598 // visibility value are treated as public. Likes/boosts stay counted (count-only).
1599 const rows = s.list.all(postId).filter((r) =>
1600 r.kind !== 'reply' || !(r.visibility === 'followers' || r.visibility === 'direct'));
1601 const baseClean = (base || process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
1602 const postNoteId = baseClean ? `${baseClean}/ap/notes/${postId}` : null;
1603 // Our own (outbound) replies show the SITE identity for everyone (not "You").
1604 let host = ''; try { host = new URL(baseClean).host; } catch { /* ignore */ }
1605 const siteName = (site && (site.title || site.slug)) || '';
1606 const siteHandle = (site && site.slug && host) ? `@${site.slug}@${host}` : '';
1607 const siteUrl = baseClean ? `${baseClean}/` : '';
1608 const siteIcon = (site && site.profile_photo) || null;
1609
1610 // Wat JIJ met deze reacties deed komt uit de tussentabel, niet meer uit
1611 // acted_* (shaer-ipb). Eén batch-lookup, want een drukke thread zou anders een
1612 // N+1 worden. De sleutel loopt door canonicalReactionUri, precies zoals aan de
1613 // schrijfkant -- staat dezelfde note toevallig ook in je tijdlijn, dan is het
1614 // één feit en niet twee knoppen die los van elkaar aan kunnen staan.
1615 const mijnSleutel = new Map();
1616 for (const r of rows) {
1617 if (r.kind === 'reply' && r.object_uri) mijnSleutel.set(r.object_uri, canonicalReactionUri(site && site.slug, r.object_uri));
1618 }
1619 const mijn = getReactionsFor(site && site.slug, [...mijnSleutel.values()]);
1620 const mijnReactie = (uri) => mijn.get(mijnSleutel.get(uri)) || { liked: false, boosted: false };
1621
1622 const nodes = [];
1623 for (const r of rows) {
1624 if (r.kind !== 'reply') continue;
1625 const ik = mijnReactie(r.object_uri);
1626 nodes.push({
1627 noteId: r.object_uri, parent: r.parent_uri || null, mine: false, id: r.id,
1628 actor_uri: r.actor_uri,
1629 actor_name: r.actor_name, actor_handle: r.actor_handle, actor_url: r.actor_url,
1630 actor_icon: r.actor_icon, content: stripLeadingMentions(r.content), created_at: r.published || r.created_at,
1631 emoji_json: r.emoji_json, actor_emoji_json: r.actor_emoji_json, // FEP-9098 (thread render)
1632 acted_boost: ik.boosted, acted_like: ik.liked,
1633 children: [],
1634 });
1635 }
1636 for (const o of s.listO.all(postId)) {
1637 nodes.push({
1638 noteId: baseClean ? `${baseClean}/ap/notes/${o.id}` : o.id, parent: o.in_reply_to || null,
1639 mine: true, outboxId: o.id, content: stripLeadingMentions(o.content), created_at: o.created_at,
1640 media: (() => { try { return o.attachments ? JSON.parse(o.attachments) : []; } catch { return []; } })(),
1641 actor_name: siteName, actor_handle: siteHandle, actor_url: siteUrl, actor_icon: siteIcon,
1642 children: [],
1643 });
1644 }
1645
1646 const byId = new Map(nodes.map((n) => [n.noteId, n]));
1647 // Conversation partners per node (u02, the reply editor's mentions bar): the
1648 // node's author plus the ancestor authors up the chain. Our own nodes are
1649 // skipped (we do not mention ourselves), deduped by actor, capped at 8.
1650 for (const n of nodes) {
1651 const seen = new Set();
1652 const list = [];
1653 let cur = n, guard = 0;
1654 while (cur && guard++ < 12 && list.length < 8) {
1655 if (!cur.mine && cur.actor_uri && !seen.has(cur.actor_uri)) {
1656 seen.add(cur.actor_uri);
1657 list.push({
1658 uri: cur.actor_uri,
1659 url: cur.actor_url || cur.actor_uri,
1660 handle: cur.actor_handle || deriveHandle(cur.actor_uri),
1661 });
1662 }
1663 cur = cur.parent ? byId.get(cur.parent) : null;
1664 }
1665 n.participants = list;
1666 }
1667 const isTop = (n) => !n.parent || n.parent === postNoteId || !byId.has(n.parent);
1668 const tops = [];
1669 for (const n of nodes) {
1670 if (isTop(n)) { tops.push(n); continue; }
1671 let anc = n, guard = 0;
1672 while (!isTop(anc) && guard++ < 12) anc = byId.get(anc.parent);
1673 anc.children.push(n);
1674 }
1675 const byTime = (a, b) => new Date(a.created_at) - new Date(b.created_at);
1676 tops.sort(byTime).forEach((t) => t.children.sort(byTime));
1677
1678 return {
1679 thread: tops,
1680 likeCount: rows.filter((r) => r.kind === 'like').length,
1681 announceCount: rows.filter((r) => r.kind === 'announce').length,
1682 total: nodes.length,
1683 };
1684}
1685
1686const slugFromActorUrl = (url) => { const m = String(url || '').match(/\/ap\/users\/([^/?#]+)/); return m ? decodeURIComponent(m[1]) : null; };
1687// Which of OUR sites are named in a note's Mention tags? Only hrefs on our own base count
1688// (an /ap/users/<slug> path on a remote host is someone else's actor), and the slug must be
1689// an existing site. Deduped.
1690export function localMentionSlugs(tags, base) {
1691 if (!base) return [];
1692 const out = [], seen = new Set();
1693 for (const t of (Array.isArray(tags) ? tags : (tags ? [tags] : []))) {
1694 if (!t || t.type !== 'Mention' || typeof t.href !== 'string') continue;
1695 if (!t.href.startsWith(base + '/ap/users/')) continue;
1696 const slug = slugFromActorUrl(t.href);
1697 if (!slug || seen.has(slug)) continue; seen.add(slug);
1698 try { if (db.prepare('SELECT 1 FROM sites WHERE slug = ?').get(slug)) out.push(slug); } catch { /* ignore */ }
1699 }
1700 return out;
1701}
1702
1703// ── Authorized fetch for a single Note (2-8) ─────────────────────
1704// Who may read this post's Note over AP GET? 'public' needs nobody;
1705// friends-only (fan_only, Shaer's DEFAULT) needs a verified follower;
1706// 'direct' is addressed to people and is never served over a GET at all.
1707export function noteAudience(post) {
1708 if (!post) return 'direct';
1709 if (post.ap_visibility === 'direct') return 'direct';
1710 if (post.fan_only || post.ap_visibility === 'friends') return 'followers';
1711 return 'public';
1712}
1713// A follower earns the friends-only Note; a blocked actor gets the same
1714// nothing as a stranger (the standing rule: a blocked actor's signed fetch
1715// earns the empty set, gated server-side at serialisation).
1716export function mayReadNote(site, post, actorUri) {
1717 const aud = noteAudience(post);
1718 if (aud === 'public') return true;
1719 if (aud === 'direct' || !site || !actorUri) return false;
1720 // FEP-1580: dezelfde regel als in outboxAudience, en hier net zo hard nodig.
1721 // De outbox geeft de LIJST vrij; zonder deze tak strandt de doelinstantie
1722 // alsnog op elke losse Note die niet publiek is.
1723 if (isMoveTarget(site.slug, actorUri)) return true;
1724 try {
1725 const blocked = db.prepare("SELECT 1 FROM ap_blocks WHERE slug = ? AND kind = 'actor' AND target = ?").get(site.slug, actorUri);
1726 if (blocked) return false;
1727 let host = null; try { host = new URL(actorUri).host; } catch { /* geen host, geen domein-block */ }
1728 if (host) {
1729 const dom = db.prepare("SELECT 1 FROM ap_blocks WHERE slug = ? AND kind = 'domain' AND target = ?").get(site.slug, host);
1730 if (dom) return false;
1731 }
1732 return !!db.prepare('SELECT 1 FROM ap_followers WHERE slug = ? AND actor_uri = ?').get(site.slug, actorUri);
1733 } catch { return false; }
1734}
1735
1736
1737// ── Web push to the owner (docs/webpush-design.md, slice 3) ─────────
1738// Fire-and-forget: a notification must never block or break inbox processing.
1739function pushEvent(slug, event) {
1740 try { Push.notifySite(slug, event).catch(() => {}); } catch { /* never throw */ }
1741 wakeNews(slug); // long-poll waiters (Robins verzoek, 31-7): same moments as push
1742}
1743
1744// ── Long-poll on news (Robins verzoek, 31-7) ─────────────────────
1745// The app holds GET /ap/users/:slug/inbox/wait open; the moment anything
1746// push-worthy lands for that account (a message, a reply, a wave, a help
1747// request) every waiter is woken and the app re-reads its feed. In-process
1748// on purpose: one Klonkt is one process, and a waiter is one callback.
1749const _newsWaiters = new Map(); // slug -> Set<cb>
1750export function onNews(slug, cb) {
1751 let set = _newsWaiters.get(slug);
1752 if (!set) { set = new Set(); _newsWaiters.set(slug, set); }
1753 set.add(cb);
1754 return () => { set.delete(cb); if (!set.size) _newsWaiters.delete(slug); };
1755}
1756/**
1757 * Wachters op het Guardian-paneel (Barts opdracht, 9-8).
1758 *
1759 * APART VAN onNews, en dat is met opzet. `news` gaat over de tijdlijn; dit gaat
1760 * over alles wat een guardian te VERWERKEN krijgt -- een aanbod, een
1761 * volgverzoek, een gate-voorstel, een hulpvraag, een lapse. De guardianship-
1762 * module zendt daar al veertien soorten voor uit; die gingen alleen naar push,
1763 * en push kiest bewust maar een handvol. Het paneel moet ze allemaal weten.
1764 *
1765 * Een wachter wordt EEN keer gewekt en daarna vergeten: het antwoord dat volgt
1766 * is de nieuwe waarheid, en de client komt terug met een nieuwe wachter.
1767 */
1768const _guardWaiters = new Map(); // slug -> Set<cb>
1769export function onGuardian(slug, cb) {
1770 let set = _guardWaiters.get(slug);
1771 if (!set) { set = new Set(); _guardWaiters.set(slug, set); }
1772 set.add(cb);
1773 return () => { set.delete(cb); if (!set.size) _guardWaiters.delete(slug); };
1774}
1775export function wakeGuardian(slug) {
1776 const set = _guardWaiters.get(slug);
1777 if (!set || !set.size) return;
1778 const cbs = [...set];
1779 set.clear();
1780 _guardWaiters.delete(slug);
1781 for (const cb of cbs) { try { cb(); } catch { /* een wachter mag de rest nooit breken */ } }
1782}
1783
1784export function wakeNews(slug) {
1785 const set = _newsWaiters.get(slug);
1786 if (!set || !set.size) return;
1787 const cbs = [...set];
1788 set.clear();
1789 _newsWaiters.delete(slug);
1790 for (const cb of cbs) { try { cb(); } catch { /* a waiter must never break the rest */ } }
1791}
1792// Path prefix for a site's pages. One instance is one owner, so the site
1793// lives at the root; kept as a function because the push URLs read like
1794// `${pushPrefix(slug)}/messages` all over this file.
1795function pushPrefix() { return ''; }
1796// Notification language: the site's content language (fallback: instance default).
1797function pushLang(slug) {
1798 try { const r = db.prepare('SELECT language FROM sites WHERE slug = ?').get(slug); return (r && r.language) || process.env.KLONKT_DEFAULT_LANG || 'nl'; } catch { return 'nl'; }
1799}
1800// Site slug, target URL and title for a post-scoped notification.
1801function pushPostCtx(postId) {
1802 try {
1803 const r = db.prepare('SELECT p.slug AS post, p.title, s.slug AS site FROM posts p JOIN sites s ON s.id = p.site_id WHERE p.id = ?').get(postId);
1804 if (!r) return null;
1805 return { site: r.site, title: r.title || r.post, url: `${pushPrefix(r.site)}/${r.post}#fediverse` };
1806 } catch { return null; }
1807}
1808
1809// ── Op slot na een verhuizing (FEP-7628) ──────────────────────────
1810//
1811// Een verhuisd account serveert `movedTo` en is daarmee dood verklaard. Toch kon
1812// je er gewoon op posten, volgen, liken en reageren, en dat federeerde vrolijk
1813// de wereld in. Drie dingen gaan daar mis:
1814//
1815// - Nieuwe posts krijgen een object-URI op een adres dat je hebt opgezegd. Die
1816// URI's overleven het domein niet, en de reacties erop ook niet.
1817// - Je volgers zijn al verhuisd, dus je post in het niets terwijl het lijkt of
1818// je post.
1819// - Een server die je movedTo ziet EN tegelijk verse activiteit van dat adres
1820// krijgt, krijgt tegenstrijdige signalen over de verhuizing.
1821//
1822// Daarom staat de poort op de UITGAANDE kant en niet op de knoppen: een
1823// C2S-client (Shaer) praat rechtstreeks met deze functies en zou anders zo langs
1824// een verborgen knop lopen. De UI volgt de poort, niet andersom.
1825//
1826// WAT DICHT GAAT: posten, reageren, volgen, liken, boosten, stemmen, en een
1827// tweede verhuizing.
1828// WAT OPEN BLIJFT: alles wat de wegwijzer draagt (de actor, webfinger, je
1829// bestaande posts, de outbox), alles inkomend (reacties op oude posts blijven
1830// binnenkomen en leesbaar), je eigen beheer (archief exporteren, volglijst
1831// downloaden), en ontvolgen -- opruimen mag altijd.
1832// Rapporteren blijft OOK open: dat is een veiligheidsklep, geen inhoud maken.
1833//
1834// OMKEERBAAR: `moved_to` leegmaken heft het slot op. Een verhuizing kan mislukken
1835// en dan moet je terug kunnen.
1836export function movedLock(site) {
1837 const to = site && site.moved_to && /^https?:\/\//i.test(String(site.moved_to))
1838 ? String(site.moved_to) : null;
1839 return to ? { locked: true, movedTo: to } : { locked: false, movedTo: null };
1840}
1841
1842/** Weigering in de vorm die de aanroepers al kennen: een object met `error`. */
1843function movedRefusal(site, wat) {
1844 const l = movedLock(site);
1845 if (!l.locked) return null;
1846 console.warn('[AP] geweigerd, dit account is verhuisd:', wat, '→', l.movedTo);
1847 return { error: 'moved', movedTo: l.movedTo };
1848}
1849
1850// Deliver a new post as Create(Note) to all followers' inboxes (fire-and-forget).
1851// Needs PUBLIC_BASE_URL (absolute URLs); no-op without followers or base.
1852export async function deliverCreate(site, post) {
1853 if (movedLock(site).locked) { console.warn('[AP] Create niet bezorgd, account verhuisd:', site && site.slug); return; }
1854 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
1855 if (!base || !site || !site.slug) return;
1856 // Resolve inline @user@host mentions → link them in the note + collect their inboxes, so a
1857 // mentioned person is notified even if they don't follow us (Mastodon-standard mention).
1858 const mres = await resolveMentionsInText(base, post.content || '');
1859 let post2 = mres.inboxes.length ? { ...post, content: mres.html } : post;
1860 // FEP-044f: does this post quote a fediverse object? Resolve it once, here,
1861 // and remember it on the post, so buildNote (sync, also used by the outbox)
1862 // never has to fetch. The quoted author's inbox joins the delivery set: that
1863 // IS the notification.
1864 const quoteInboxes = [];
1865 // EERST BAKKEN, dan pas linken zoeken (shaer-k3f, gevonden op het toestel):
1866 // firstExternalUrl leest <a href>-ankers, en de web-editor bakt die er bij
1867 // het opslaan al in -- maar een post uit de APP is platte tekst waarin de
1868 // URL nog geen anker is. Zonder deze bak zag het C2S-pad dus nooit een link
1869 // en kreeg een app-post nooit een kaart, terwijl de preview hem net wel
1870 // beloofd had.
1871 const gebakken = bakePostContent(post2.content || '');
1872 if (post2.quote_uri === undefined || post2.quote_uri === null) {
1873 const q = await resolveOwnQuote(gebakken);
1874 if (q) {
1875 try { db.prepare('UPDATE posts SET quote_uri = ?, quote_actor = ? WHERE id = ?').run(q.uri, q.actor || null, post.id); } catch { /* ignore */ }
1876 post2 = { ...post2, quote_uri: q.uri, quote_actor: q.actor || null };
1877 }
1878 }
1879 // De kaart op de eigen post (shaer-k3f), langs dezelfde pijplijn als een
1880 // binnenkomende: een fediverse-quote wordt een quote-snapshot, anders
1881 // probeert de link een externe kaart. VOOR de vroege return hieronder, want
1882 // ook een post zonder volgers hoort zijn kaart te krijgen -- de app leest
1883 // hem uit de outbox, niet uit een bezorging. Best-effort en eenmalig: wat
1884 // hier niet lukt blijft een kale link, precies wat het was.
1885 if (!post2.quote_json && !post2.embed_json) {
1886 try {
1887 if (post2.quote_uri) {
1888 const qj = await resolveQuoteByUri(post2.quote_uri);
1889 if (qj) { db.prepare('UPDATE posts SET quote_json = ? WHERE id = ?').run(qj, post.id); post2 = { ...post2, quote_json: qj }; }
1890 } else {
1891 const ej = await resolveExternalEmbed(gebakken);
1892 if (ej) { db.prepare('UPDATE posts SET embed_json = ? WHERE id = ?').run(ej, post.id); post2 = { ...post2, embed_json: ej }; }
1893 }
1894 } catch { /* een kaart is nooit een blokkade voor de post zelf */ }
1895 }
1896 if (post2.quote_actor) {
1897 const a = await fetchActor(post2.quote_actor).catch(() => null);
1898 const inbox = a && ((a.endpoints && a.endpoints.sharedInbox) || a.inbox);
1899 if (inbox) quoteInboxes.push(inbox);
1900 }
1901 const followers = fStmts().list.all(site.slug);
1902 const inboxes = [...new Set([...followers.map((f) => f.shared_inbox || f.inbox), ...mres.inboxes, ...quoteInboxes].filter(Boolean))];
1903 if (!inboxes.length) return; // no followers, no one mentioned, no one quoted
1904 const keys = getOrCreateKeys(site.slug);
1905 const keyId = `${actorId(base, site.slug)}#main-key`;
1906 const create = buildCreate(base, site, post2);
1907 for (const inbox of inboxes) deliverWithRetry(site.slug, inbox, create, keyId, keys.private_pem);
1908}
1909
1910// On a new Follow, send that follower our most recent posts as Create so their
1911// timeline shows our history (Mastodon does not backfill on follow). Oldest-first
1912// so they sort into the follower's timeline at their original dates.
1913async function backfillNewFollower(base, slug, inbox) {
1914 if (!base || !slug || !inbox) return;
1915 const site = db.prepare('SELECT * FROM sites WHERE slug = ?').get(slug);
1916 if (!site) return;
1917 // Deze lijst filterde op fan_only maar NIET op paid, en haalde `paid` ook niet
1918 // op -- dus stond post.paid op undefined, sloeg buildNote zijn redactie over,
1919 // en duwden we bij ELKE nieuwe volger twintig posts de deur uit met de
1920 // volledige tekst van de betaalde erbij. Een push, dus onherroepelijk: het
1921 // staat daarna in hun inbox. Zelfde reden voor ap_visibility, dat hier
1922 // helemaal ontbrak: een friends- of direct-post hoort niet in een backfill.
1923 // (Barts melding, 15 augustus 2026.)
1924 const recent = db.prepare(
1925 `SELECT id, slug, title, excerpt, content, cover_image_url, cover_video_url, nsfw, content_warning,
1926 c2s_attachments, published_at, created_at, fan_only, ap_visibility, paid, paid_min_cents
1927 FROM posts WHERE site_id = ? AND status = 'published' AND (fan_only IS NULL OR fan_only = 0)
1928 AND IFNULL(ap_visibility, 'public') = 'public'
1929 ORDER BY COALESCE(published_at, created_at) DESC LIMIT 20`
1930 ).all(site.id).reverse();
1931 if (!recent.length) return;
1932 const keys = getOrCreateKeys(slug);
1933 const keyId = `${actorId(base, slug)}#main-key`;
1934 for (const p of recent) {
1935 try { await deliver(inbox, buildCreate(base, site, p), keyId, keys.private_pem); } catch { /* best-effort */ }
1936 await new Promise((r) => setTimeout(r, 150));
1937 }
1938 console.log('[AP] backfilled', recent.length, 'posts to new follower of', slug);
1939}
1940
1941// Tell followers a post is gone (Delete + Tombstone) so it's removed from their feeds.
1942/**
1943 * Delete(Tombstone) voor een van onze EIGEN objecten, naar alle volgers.
1944 *
1945 * De romp staat apart omdat een post niet het enige is dat wij de draad op
1946 * sturen. Een track is een eersterangs Audio-object met een eigen id
1947 * (shaer-0nh), en die werd bij verwijderen nergens aangekondigd: de rij ging
1948 * weg, het object ging 404 en elke server die hem had geindexeerd hield hem
1949 * voor altijd. Op de hub kwam dat op 21-8 aan het licht als een track die naar
1950 * een dode URL wees.
1951 *
1952 * Het object-id komt van de aanroeper. Dat moet ook wel: bij verwijderen is de
1953 * rij vaak al weg, dus er valt niets meer op te zoeken.
1954 */
1955export async function deliverObjectDelete(site, objectId) {
1956 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
1957 if (!base || !site || !site.slug || !objectId) return;
1958 const followers = fStmts().list.all(site.slug);
1959 if (!followers.length) return;
1960 const inboxes = [...new Set(followers.map((f) => f.shared_inbox || f.inbox).filter(Boolean))];
1961 const keys = getOrCreateKeys(site.slug);
1962 const me = actorId(base, site.slug);
1963 const del = {
1964 '@context': AP_CONTEXT,
1965 id: `${objectId}#delete-${Date.now()}-${rid()}`,
1966 type: 'Delete',
1967 actor: me,
1968 to: [PUBLIC],
1969 object: { id: objectId, type: 'Tombstone' },
1970 };
1971 for (const inbox of inboxes) deliverWithRetry(site.slug, inbox, del, `${me}#main-key`, keys.private_pem);
1972}
1973
1974export async function deliverDelete(site, post) {
1975 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
1976 if (!base || !post || !post.id) return;
1977 return deliverObjectDelete(site, noteId(base, post.id));
1978}
1979
1980/**
1981 * Zelfde voor een track. Roep dit aan VOOR het verwijderen van de rij, net als
1982 * bij een post: daarna is `id` er nog wel maar de context niet meer.
1983 */
1984export async function deliverTrackDelete(site, trackId) {
1985 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
1986 if (!base || !site || !site.slug || !trackId) return;
1987 return deliverObjectDelete(site, trackUri(base, site, trackId));
1988}
1989
1990// Tell followers an already-published post changed (Update + edited Note) so
1991// Mastodon refreshes the cached copy (e.g. after fixing content).
1992export async function deliverUpdate(site, post) {
1993 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
1994 if (!base || !site || !site.slug || !post || !post.id) return;
1995 const mres = await resolveMentionsInText(base, post.content || ''); // link mentions + collect inboxes
1996 const post2 = mres.inboxes.length ? { ...post, content: mres.html } : post;
1997 const followers = fStmts().list.all(site.slug);
1998 const inboxes = [...new Set([...followers.map((f) => f.shared_inbox || f.inbox), ...mres.inboxes].filter(Boolean))];
1999 if (!inboxes.length) return;
2000 const keys = getOrCreateKeys(site.slug);
2001 const me = actorId(base, site.slug);
2002 const note = buildNote(base, site, post2);
2003 note.updated = new Date().toISOString();
2004 const update = {
2005 '@context': AP_CONTEXT,
2006 id: `${noteId(base, post.id)}#update-${Date.now()}-${rid()}`,
2007 type: 'Update', actor: me, to: [PUBLIC], cc: note.cc,
2008 object: note,
2009 };
2010 for (const inbox of inboxes) deliverWithRetry(site.slug, inbox, update, `${me}#main-key`, keys.private_pem);
2011}
2012
2013// Tell followers the ACTOR changed (Update + Person) so Mastodon re-processes the
2014// account AND re-fetches the featured (pinned) collection — there is no standard
2015// "featured changed" activity, so this is how a pin/unpin propagates promptly.
2016export async function deliverActorUpdate(site) {
2017 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
2018 if (!base || !site || !site.slug) return;
2019 const followers = fStmts().list.all(site.slug);
2020 if (!followers.length) return;
2021 const inboxes = [...new Set(followers.map((f) => f.shared_inbox || f.inbox).filter(Boolean))];
2022 const keys = getOrCreateKeys(site.slug);
2023 const me = actorId(base, site.slug);
2024 const update = {
2025 '@context': AP_CONTEXT,
2026 id: `${me}#update-${Date.now()}-${rid()}`,
2027 type: 'Update', actor: me, to: [PUBLIC], cc: [`${me}/followers`],
2028 object: buildActor(base, site),
2029 };
2030 for (const inbox of inboxes) deliverWithRetry(site.slug, inbox, update, `${me}#main-key`, keys.private_pem);
2031}
2032
2033// Reliably set the pinned order on followers' instances via Add/Remove activities
2034// (how Mastodon itself federates pins) — pushed to the inbox + processed immediately,
2035// unlike the featured COLLECTION which Mastodon caches with sticky StatusPins.
2036// Mastodon's Add skips an already-pinned status, so we REMOVE every pin first, wait,
2037// then ADD in rank-DESCENDING order (rank 1 added LAST → newest StatusPin → shown first,
2038// because Mastodon displays pins newest-first). `alsoRemove` = ids to unpin too.
2039// Serialize pin-resyncs per site: two concurrent /save calls would otherwise interleave
2040// their Remove -> wait -> Add sequences and scramble the StatusPin order on Mastodon. A
2041// resync already in flight for a site coalesces later requests into ONE rerun after it
2042// finishes (accumulating their extra unpins), so rapid saves don't pile up N full resyncs.
2043const _pinResync = new Map(); // slug -> { promise, pending, pendingRemove:Set, site }
2044export function resyncFeaturedPins(site, alsoRemove = []) {
2045 if (!site || !site.slug) return Promise.resolve();
2046 const slug = site.slug;
2047 const running = _pinResync.get(slug);
2048 if (running) {
2049 running.pending = true;
2050 running.site = site; // use the latest site object on the rerun
2051 for (const id of alsoRemove) running.pendingRemove.add(id);
2052 return running.promise;
2053 }
2054 const state = { promise: null, pending: false, pendingRemove: new Set(), site };
2055 state.promise = (async () => {
2056 let extra = alsoRemove;
2057 for (;;) {
2058 try { await doResyncFeaturedPins(state.site, extra); }
2059 catch (e) { console.warn('[AP] pin resync failed:', e.message); }
2060 if (!state.pending) break;
2061 state.pending = false;
2062 extra = [...state.pendingRemove];
2063 state.pendingRemove = new Set();
2064 }
2065 _pinResync.delete(slug);
2066 })();
2067 _pinResync.set(slug, state);
2068 return state.promise;
2069}
2070
2071// The actual resync work — do NOT call directly; go through resyncFeaturedPins() above so
2072// it stays serialized per site.
2073async function doResyncFeaturedPins(site, alsoRemove = []) {
2074 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
2075 if (!base || !site || !site.slug) return;
2076 const followers = fStmts().list.all(site.slug);
2077 if (!followers.length) return;
2078 const inboxes = [...new Set(followers.map((f) => f.shared_inbox || f.inbox).filter(Boolean))];
2079 const keys = getOrCreateKeys(site.slug);
2080 const me = actorId(base, site.slug);
2081 const keyId = `${me}#main-key`;
2082 const featured = `${me}/featured`;
2083 const note = (id) => noteId(base, id);
2084 const pinned = db.prepare(
2085 `SELECT id FROM posts WHERE site_id = ? AND status = 'published' AND (fan_only IS NULL OR fan_only = 0)
2086 AND pinned IS NOT NULL AND pinned > 0
2087 ORDER BY pinned DESC, COALESCE(published_at, created_at) ASC LIMIT 20`
2088 ).all(site.id);
2089 const removeIds = [...new Set([...pinned.map((p) => p.id), ...alsoRemove])];
2090 // 1. Remove every current pin so Mastodon can recreate them in order.
2091 for (const id of removeIds) {
2092 const rm = { '@context': AP_CONTEXT, id: `${me}#rm-${id}-${Date.now()}-${rid()}`, type: 'Remove', actor: me, object: note(id), target: featured, to: [PUBLIC] };
2093 for (const inbox of inboxes) deliver(inbox, rm, keyId, keys.private_pem).catch(() => { /* best-effort */ });
2094 }
2095 if (!pinned.length) { console.log('[AP] unpinned all featured for', site.slug); return; }
2096 await new Promise((r) => setTimeout(r, 5000)); // let the Removes land first
2097 // 2. Add in rank-DESC order, gaps so each StatusPin gets an increasing created_at.
2098 for (const p of pinned) {
2099 const add = { '@context': AP_CONTEXT, id: `${me}#add-${p.id}-${Date.now()}-${rid()}`, type: 'Add', actor: me, object: note(p.id), target: featured, to: [PUBLIC], cc: [`${me}/followers`] };
2100 for (const inbox of inboxes) deliver(inbox, add, keyId, keys.private_pem).catch(() => { /* best-effort */ });
2101 await new Promise((r) => setTimeout(r, 2000));
2102 }
2103 console.log('[AP] resynced', pinned.length, 'featured pins for', site.slug);
2104}
2105
2106// ── outbound replies (Klonkt → fediverse) ─────────────────────────
2107const escHtml = (s) => String(s || '').replace(/[<>&]/g, (c) => ({ '<': '&lt;', '>': '&gt;', '&': '&amp;' }[c]));
2108const toISO = (v) => { if (!v) return new Date().toISOString(); const s = String(v); const d = new Date(/[TZ]/.test(s) ? s : s.replace(' ', 'T') + 'Z'); return isNaN(d) ? new Date().toISOString() : d.toISOString(); };
2109
2110// Build one of OUR outbound reply Notes from an ap_outbox row.
2111// Turn #hashtags in reply text into Mastodon-style hashtag links (clickable + federated).
2112function linkHashtags(base, html) {
2113 // Prefix: start / whitespace / '>' / opening bracket — "(#tag" is a tag too. NO quote
2114 // chars in this class: a quote precedes attribute values (alt="#…"), which must not match.
2115 return String(html || '').replace(/(^|[\s>([{])#([\p{L}\p{M}\p{N}_]+)/gu, (m, pre, tag) =>
2116 `${pre}<a href="${base}/tag/${encodeURIComponent(tag.toLowerCase())}" class="mention hashtag" rel="tag">#${tag}</a>`);
2117}
2118// Auto-link bare http(s) URLs in already-safe HTML (federated copies). Splits on existing
2119// <a>…</a> so a linked URL is never wrapped twice; requires start/whitespace/'>' before the
2120// URL so attribute values (src="https://…") never match. Trailing sentence punctuation stays
2121// outside the link (Mastodon-style).
2122function linkUrls(html) {
2123 const parts = String(html || '').split(/(<a\b[^>]*>[\s\S]*?<\/a>)/gi);
2124 for (let i = 0; i < parts.length; i++) {
2125 if (/^<a\b/i.test(parts[i])) continue; // already a link → leave as-is
2126 parts[i] = parts[i].replace(/(^|[\s>([{])(https?:\/\/[^\s<]+?)([.,;:!?)\]»]*)(?=$|[\s<])/g,
2127 (m, pre, url, trail) => `${pre}<a href="${url.replace(/"/g, '%22')}" rel="nofollow noopener" target="_blank">${url}</a>${trail}`);
2128 }
2129 return parts.join('');
2130}
2131// Linkify inline #hashtags and bare URLs in BODY html for on-site DISPLAY, using the
2132// EXACT same rules as the federated copy (linkHashtags/linkUrls), so the website and the
2133// Mastodon copy agree instead of the website showing raw text. Idempotent: existing
2134// <a>…</a> (editor links, embeds, shortcode buttons) are split out and left untouched, so
2135// nothing is double-wrapped. Pass base='' → root-relative /tag/<slug> links.
2136export function linkifyBody(base, html) {
2137 const withTags = String(html || '')
2138 .split(/(<a\b[^>]*>[\s\S]*?<\/a>)/gi)
2139 .map((seg) => (/^<a\b/i.test(seg) ? seg : linkHashtags(base, seg)))
2140 .join('');
2141 return linkUrls(withTags);
2142}
2143
2144// Bake a post's raw source into its display HTML (the ActivityPub `source` model): done ONCE
2145// at save and cached in posts.content_rendered, so page views serve it statically instead of
2146// re-linkifying every render. Step 1 = #hashtags + bare URLs (cheap, no network). Step 2 will
2147// resolve @mentions here too (webfinger once at save instead of per page view).
2148export function bakePostContent(source) {
2149 return linkifyBody('', source || '');
2150}
2151
2152// Step 2: the full bake, incl. @mention links. Resolves @user@host via webfinger ONCE (the
2153// same resolver the federated copy uses) and bakes the profile links into content_rendered,
2154// so page views never do a per-view lookup. Unresolvable handles stay plain text; on any
2155// failure it degrades to the sync #hashtag/URL bake. Async (webfinger) → callers run it off
2156// the save response so the request never blocks on a slow/dead remote server.
2157export async function bakePostContentWithMentions(source) {
2158 const withHashUrls = bakePostContent(source);
2159 try { const m = await resolveMentionsInText('', withHashUrls); return m.html; }
2160 catch { return withHashUrls; }
2161}
2162
2163// Extract the AP Hashtag tag objects from already-linked reply content.
2164
2165// Normalise a post's tags field (array, JSON-string, or comma-string) to an array.
2166// normalizeTags en tagParts staan sinds shaer-38y in ap-core: music/ heeft ze
2167// ook nodig en mag hier niet uit importeren.
2168// A tag → { label, slug }. Multi-word tags become CamelCase (#LiveMusic) for the display
2169// name (Mastodon hashtags can't contain spaces; CamelCase is the accessibility norm); the
2170// slug/href stays lowercase ("livemusic").
2171// Merge a post's tags field + the #hashtags linked inline in its body into one deduped
2172// Hashtag tag list (with hrefs to our /tag page).
2173// hashtagTags en buildHashtagList staan sinds shaer-38y in ap-core: music/
2174// heeft dezelfde lijst nodig en mag hier niet uit importeren.
2175
2176// Extract Mention tag objects from already-linked content (class="u-url mention").
2177function mentionTags(content) {
2178 const tags = [], seen = new Set();
2179 // The link href is the human profile URL; the actor URI (for the Mention tag) is in data-actor.
2180 const re = /<a href="[^"]*" class="u-url mention" data-actor="([^"]+)">@([^<]+)<\/a>/gi;
2181 let m;
2182 while ((m = re.exec(content || ''))) {
2183 const href = m[1];
2184 if (seen.has(href)) continue; seen.add(href);
2185 tags.push({ type: 'Mention', href, name: '@' + m[2] });
2186 }
2187 return tags;
2188}
2189// Resolve inline @user@domain mentions in reply/post text → link them (href = actor URI)
2190// and collect the mentioned actors' inboxes so they get notified. Best-effort per mention.
2191async function resolveMentionsInText(base, html) {
2192 const inboxes = [];
2193 const handles = new Set();
2194 // Prefix also allows opening brackets — "(@user@host + me)" is a mention too (real-world
2195 // miss: a bracketed mention federated as plain text and its target was never notified).
2196 const re = /(^|[\s>([{])@([\p{L}\p{M}\p{N}_.-]+@[\p{L}\p{M}\p{N}.-]+)/gu;
2197 let m;
2198 while ((m = re.exec(html || ''))) handles.add(m[2]);
2199 let out = String(html || '');
2200 for (const h of handles) {
2201 let actorUri = null;
2202 try { actorUri = await webfingerResolve('@' + h); } catch { actorUri = null; }
2203 if (!actorUri) continue;
2204 const actor = await fetchActor(actorUri).catch(() => null);
2205 const inbox = actor && ((actor.endpoints && actor.endpoints.sharedInbox) || actor.inbox);
2206 if (inbox) inboxes.push(inbox);
2207 const profileUrl = actorInfo(actor, actorUri).url || actorUri; // human profile page → the link href
2208 const esc = h.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
2209 out = out.replace(new RegExp('(^|[\\s>([{])@' + esc + '(?![\\p{L}\\p{M}\\p{N}_.-])', 'gu'),
2210 (full, pre) => `${pre}<a href="${profileUrl}" class="u-url mention" data-actor="${actorUri}">@${h}</a>`);
2211 }
2212 return { html: out, inboxes };
2213}
2214
2215export function buildReplyNote(base, site, row) {
2216 // Thin delegate: replies are built by buildNote (the single Note entry point) in reply mode.
2217 return buildNote(base, site, row, { isReply: true });
2218}
2219
2220// The account's own outbound notes (replies and direct messages) as AS2
2221// Notes, newest first. The C2S inbox read serves these alongside the
2222// timeline: without them your own reply existed everywhere EXCEPT in your
2223// own app (Robins melding, 30-7: "replyen werkt nog niet"; het antwoord
2224// stond op de server maar de app kreeg het nooit terug, dus je probeerde
2225// het opnieuw en liep in de duplicate-guard).
2226export function getSentNotes(base, site, limit = 60) {
2227 return db.prepare('SELECT * FROM ap_outbox WHERE site_slug = ? ORDER BY created_at DESC LIMIT ?')
2228 .all(site.slug, limit)
2229 .map((row) => buildReplyNote(base, site, row));
2230}
2231
2232// Resolve one of our outbound reply Notes by id (for /ap/notes/:id fallback).
2233export function getOutboxNote(base, id) {
2234 const row = iStmts().getO.get(id);
2235 if (!row) return null;
2236 const site = db.prepare('SELECT * FROM sites WHERE slug = ?').get(row.site_slug);
2237 if (!site) return null;
2238 return buildReplyNote(base, site, row);
2239}
2240
2241// The direct-note leg (ward call-for-help) lives in the guardianship module
2242// (src/services/guardianship/delivery.js); wired with our AP helpers at the
2243// bottom of this file. Re-exported so every existing caller keeps working.
2244export const c2sVisibility = Guardianship.c2sVisibility;
2245export const deliverDirectNote = Guardianship.deliverDirectNote;
2246
2247// Send a reply FROM this site to a remote actor (in reply to their inbound reply).
2248// `parent` = an ap_interactions row (actor_uri, actor_url, actor_handle, object_uri).
2249/**
2250 * Een gate-voorstel de deur uit (FEP-633c 5.6, shaer-8ru).
2251 *
2252 * STOND IN routes/guardian.js en kon daar alleen door de PWA aangeroepen worden.
2253 * De apps moeten hetzelfde kunnen, en een tweede implementatie ernaast zou een
2254 * tweede weg naar hetzelfde besluit zijn -- precies de fout die we vandaag bij
2255 * de antwoordpoort hebben rechtgezet, toen de innamepoort alleen in C2S bleek te
2256 * zitten en het webpad eromheen liep. Een pad dus.
2257 *
2258 * EEN WEG, waar de ward ook woont (Robins regel, 29-7): voorstellen over de
2259 * lijn en de server van de ward laat tellen. Co-locatie verandert alleen het
2260 * transport -- deliverToActor lust een lokale ontvanger terug door dezelfde
2261 * inbox. De oude kortsluiting boekte de stem hier meteen, en zo bleef het
2262 * remote-pad een maand stuk zonder dat iemand het merkte.
2263 */
2264export function proposeGate(site, wardUri, feature, allow) {
2265 const uri = String(wardUri || '').trim();
2266 if (!uri) return { status: 400, error: 'empty_uri' };
2267 if (!Guardianship.gated.featureColumn(feature)) return { status: 400, error: 'unknown_feature' };
2268 // Alleen een guardian van dit kind. Zonder deze regel zou iedereen met een
2269 // token een instelling van een vreemd kind kunnen aanvragen.
2270 if (!Guardianship.listWards(site.slug).some((w) => w.other_uri === uri)) {
2271 return { status: 403, error: 'not_your_ward' };
2272 }
2273 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
2274 const me = actorId(base, site.slug);
2275 const offerId = `${me}/gated/${Date.now().toString(36)}${Math.floor(Math.random() * 1e4).toString(36)}`;
2276 const offer = Guardianship.gated.buildGatedOffer(offerId, me, uri, feature, allow);
2277 // Ons eigen spoor van wat we stuurden: de server van de ward antwoordt op deze
2278 // Offer zodra het besluit valt, en dat antwoord heeft een rij nodig om in te
2279 // landen. Het is ook het enige waardoor het scherm van de voorsteller meer kan
2280 // zeggen dan een knoptekst.
2281 Guardianship.gated.recordSent(offerId, site.slug, uri, feature, allow);
2282 deliverToActor(site, uri, offer).catch(() => { /* queued, best-effort */ });
2283 const localSlug = (base && uri.startsWith(`${base}/`)) ? uri.replace(/\/+$/, '').split('/').pop() : null;
2284 const progress = localSlug ? Guardianship.gated.gatedProgress(localSlug, feature) : null;
2285 return { status: 200, ok: true, allow, state: 'open', offerId, ...(progress || { federated: true }) };
2286}
2287
2288export async function deliverReply(site, { postId, postSlug, parent, text, html, language, attachments, mentions, visibility }) {
2289 const _mv = movedRefusal(site, 'reply'); if (_mv) return _mv;
2290 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
2291 // Rich replies: `html` is the reply editor's HTML (sanitized here); `text` is
2292 // the plain-text fallback (no-JS path, C2S `source`). Either may carry the reply.
2293 const richClean = html ? HtmlSanitizerService.sanitize(String(html)) : '';
2294 const rich = richClean && HtmlSanitizerService.toPlainText(richClean).trim() ? richClean : '';
2295 // Attachments: only OUR OWN uploads (/media/... paths, no remote URLs — the
2296 // upload route is the sole producer), image/audio/video only, max 4.
2297 const media = (Array.isArray(attachments) ? attachments : [])
2298 .filter((a) => a && typeof a.url === 'string' && /^\/media\/[\w./-]+$/.test(a.url)
2299 && /^(image|audio|video)\//.test(String(a.mediaType || '')))
2300 .slice(0, 4)
2301 .map((a) => ({ url: a.url, mediaType: String(a.mediaType), name: String(a.name || '').slice(0, 120) }));
2302 // A media-only reply (no text) is a valid reply.
2303 if (!base || !site || !site.slug || !parent || (!String(text || '').trim() && !rich && !media.length)) return null;
2304 // DE POORT STAAT HIER en niet alleen in de outbox (shaer-r4c). routes/posts.js
2305 // roept deliverReply op drie plekken rechtstreeks aan -- de eigen webinterface
2306 // van Klonkt gaat dus nooit langs ingestOutboxActivity. Een poort die alleen in
2307 // C2S staat is een poort met een deur ernaast.
2308 //
2309 // Dit is het knooppunt dat beide paden delen. De reddingsboei komt hier niet
2310 // langs: een hulpvraag is altijd direct en loopt via deliverDirectNote, dus de
2311 // boei blijft open zonder dat daar een uitzondering voor nodig is.
2312 {
2313 const isWard = (() => { try { return Guardianship.listGuardians(site.slug).length > 0; } catch { return false; } })();
2314 if (!Guardianship.wardGateAllowed(site.gate_replies, isWard)) return null;
2315 }
2316 const me = actorId(base, site.slug);
2317 // u02, the mentions bar: `mentions` undefined = legacy behavior (mention the
2318 // parent author). An ARRAY (possibly empty) = the kept conversation partners
2319 // exactly as the bar shows them; the mention prefix, the Mention tags (via
2320 // mentionTags over the content) and the delivery targets all follow it.
2321 const kept = Array.isArray(mentions)
2322 ? mentions
2323 .filter((m) => m && typeof m.uri === 'string' && /^https?:\/\//i.test(m.uri))
2324 .slice(0, 8)
2325 .map((m) => ({
2326 uri: m.uri,
2327 url: (typeof m.url === 'string' && /^https?:\/\//i.test(m.url)) ? m.url : m.uri,
2328 handle: String(m.handle || deriveHandle(m.uri)).slice(0, 120),
2329 }))
2330 : null;
2331 const mentionAnchor = (uri, url, h) => {
2332 const disp = h && h[0] === '@' ? h : '@' + (h || '');
2333 return `<a href="${escHtml(url || uri)}" class="u-url mention" data-actor="${escHtml(uri)}">${escHtml(disp)}</a> `;
2334 };
2335 const handle = parent.actor_handle || deriveHandle(parent.actor_uri);
2336 const mention = kept
2337 ? kept.map((k) => mentionAnchor(k.uri, k.url, k.handle)).join('')
2338 : (parent.actor_uri ? mentionAnchor(parent.actor_uri, parent.actor_url, handle) : '');
2339 // Who the stored reply is "to": the parent when kept, else the first kept chip.
2340 const parentKept = !kept || kept.some((k) => k.uri === parent.actor_uri);
2341 const toActorUri = parentKept ? (parent.actor_uri || null) : (kept[0] ? kept[0].uri : null);
2342 const toHandle = parentKept ? handle : (kept[0] ? kept[0].handle : null);
2343 let content;
2344 let mres;
2345 if (rich) {
2346 // Same enrichment pipeline as the plain path (mentions/hashtags/URLs), on
2347 // sanitized editor HTML. The parent mention goes inline into the first
2348 // paragraph (Mastodon convention), or becomes its own leading one.
2349 mres = await resolveMentionsInText(base, rich);
2350 const processed = linkUrls(linkHashtags(base, mres.html));
2351 if (processed.startsWith('<p>')) {
2352 content = processed.replace('<p>', `<p>${mention}`); // inline in the first paragraph
2353 } else if (/^<(blockquote|ul|ol|pre|h[1-6]|div|hr)\b/i.test(processed)) {
2354 content = `<p>${mention}</p>${processed}`; // block content: own leading paragraph
2355 } else {
2356 content = `<p>${mention}${processed}</p>`; // bare inline text: one paragraph together
2357 }
2358 } else {
2359 const body = escHtml(String(text).trim()).replace(/\r?\n/g, '<br>');
2360 mres = await resolveMentionsInText(base, body); // link inline @mentions + collect their inboxes
2361 content = `<p>${mention}${linkUrls(linkHashtags(base, mres.html))}</p>`;
2362 }
2363 const replyLang = /^[a-z]{2,3}(-[A-Za-z0-9-]+)?$/.test(String(language || '')) ? language : null;
2364 // Dedup: skip if the exact same reply was already sent (double-submit guard).
2365 // Attachments count toward "the same": two media-only replies share content.
2366 const mediaJson = media.length ? JSON.stringify(media) : null;
2367 // A duplicate is idempotent success, not an error: it answers with the
2368 // EXISTING id. Returning without one made the C2S ingest say 502
2369 // reply_failed on a double-submit (Robins schermafdruk, 30-7), so a retry
2370 // of a reply the app never showed looked like the reply itself failing.
2371 const dup = db.prepare('SELECT id FROM ap_outbox WHERE site_slug = ? AND IFNULL(in_reply_to, \'\') = ? AND content = ? AND IFNULL(attachments, \'\') = IFNULL(?, \'\') LIMIT 1')
2372 .get(site.slug, parent.object_uri || '', content, mediaJson);
2373 if (dup) { console.log('[AP] outreply skipped (duplicate)'); return { duplicate: true, id: dup.id, delivered: 0 }; }
2374 const id = crypto.randomUUID();
2375 iStmts().insO.run(id, site.slug, postId, postSlug || null, parent.object_uri || null, toActorUri, toHandle, content, replyLang, mediaJson);
2376 // Followers-only reply (shaer detail-view): mark the row so buildNote drops
2377 // Public from cc. Default (undefined/'public'/'quiet') stays quiet-public.
2378 if (visibility === 'friends') { try { db.prepare('UPDATE ap_outbox SET visibility = ? WHERE id = ?').run('friends', id); } catch { /* ignore */ } }
2379 const row = iStmts().getO.get(id);
2380 const note = buildReplyNote(base, site, row);
2381 const create = {
2382 '@context': AP_CONTEXT,
2383 id: note.id + '#create', type: 'Create', actor: me,
2384 published: note.published, to: note.to, cc: note.cc, object: note,
2385 };
2386 const keys = getOrCreateKeys(site.slug);
2387 const keyId = `${me}#main-key`;
2388 const inboxes = new Set();
2389 // Everyone the mentions bar kept gets pinged; legacy path = the parent only.
2390 const mentionTargets = kept ? kept.map((k) => k.uri) : (parent.actor_uri ? [parent.actor_uri] : []);
2391 for (const uri of mentionTargets) {
2392 const a = await fetchActor(uri).catch(() => null);
2393 if (a) inboxes.add((a.endpoints && a.endpoints.sharedInbox) || a.inbox);
2394 }
2395 if (parent.threadInbox) inboxes.add(parent.threadInbox); // back-compat (single)
2396 (parent.threadInboxes || []).forEach((i) => inboxes.add(i)); // whole ancestor chain
2397 for (const f of fStmts().list.all(site.slug)) inboxes.add(f.shared_inbox || f.inbox);
2398 mres.inboxes.forEach((i) => inboxes.add(i)); // people @mentioned inline in the reply
2399 inboxes.delete(`${me}/inbox`); // never deliver to ourselves (already in ap_outbox)
2400 inboxes.delete(`${base}/ap/inbox`); // (our own shared inbox) → avoids a self-duplicate
2401 let delivered = 0;
2402 for (const inbox of [...inboxes].filter(Boolean)) {
2403 let ok = false;
2404 try { const st = await deliver(inbox, create, keyId, keys.private_pem); ok = st >= 200 && st < 300; } catch { ok = false; }
2405 if (ok) delivered++;
2406 else enqueueDelivery(site.slug, inbox, create); // durable: retry a briefly-offline recipient (was silently dropped)
2407 }
2408 console.log('[AP] outreply', site.slug, '→', parent.actor_uri, 'delivered', delivered);
2409 return { id, content, delivered };
2410}
2411
2412// attributedTo may be a string, an object {id}, or an ARRAY — e.g. a PeerTube Video is
2413// attributed to [Person (account), Group (channel)]. Pick a usable actor URI (prefer Person).
2414function actorUriOf(att) {
2415 if (!att) return null;
2416 if (typeof att === 'string') return att;
2417 if (Array.isArray(att)) {
2418 const person = att.find((a) => a && typeof a === 'object' && a.type === 'Person' && a.id);
2419 if (person) return person.id;
2420 for (const a of att) { if (typeof a === 'string') return a; if (a && a.id) return a.id; }
2421 return null;
2422 }
2423 return att.id || null;
2424}
2425
2426// Resolve a remote post URL (any fediverse/Klonkt post) into a reply target.
2427// Returns a parent-shaped object usable by deliverReply(), or null.
2428// The server's own note, built straight from the DB. resolveRemoteNote used
2429// to fetch EVERYTHING over HTTPS, including notes living right here: a
2430// hairpin fetch fails on home setups (a Klonkt on a Mac behind a tunnel), the
2431// /ap/notes route rightly hides friends-only posts, and a punycode-spelled
2432// own URL read as remote on a byte comparison. For the authenticated C2S
2433// caller none of those walls apply; the DB is one prepare() away.
2434// `forSlug` is that caller: only the post's own site gets its non-public
2435// notes on this shortcut (public ones anyone, same as the route serves).
2436function localNoteObject(url, forSlug) {
2437 if (!isOwnUrl(url)) return null;
2438 const m = String(url).match(/\/ap\/notes\/([^/?#]+)/);
2439 if (!m) return null;
2440 const id = decodeURIComponent(m[1]);
2441 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
2442 const post = db.prepare("SELECT * FROM posts WHERE id = ? AND status = 'published'").get(id);
2443 if (post) {
2444 const site = db.prepare('SELECT * FROM sites WHERE id = ?').get(post.site_id);
2445 if (!site) return null;
2446 const nonPublic = post.fan_only || post.ap_visibility === 'friends' || post.ap_visibility === 'direct';
2447 if (nonPublic && (!forSlug || forSlug !== site.slug)) return null;
2448 return buildNote(base, site, post);
2449 }
2450 return getOutboxNote(base, id); // our own outbound replies
2451}
2452// The own actor document, same shortcut, same reason.
2453function localActorObject(uri) {
2454 if (!isOwnUrl(uri)) return null;
2455 const m = String(uri).match(/\/ap\/users\/([^/?#]+)/);
2456 const site = m ? db.prepare('SELECT * FROM sites WHERE slug = ?').get(decodeURIComponent(m[1])) : null;
2457 return site ? buildActor((process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, ''), site) : null;
2458}
2459
2460// ── De thread onder een post (shaer-tqz) ───────────────────────────
2461//
2462// Klonkt is hier een TOLK, geen archief (Barts besluit, 7-8): de antwoorden
2463// worden opgehaald op het moment dat iemand kijkt en daarna weer vergeten.
2464// Geen tabel, geen migratie -- wie replies bewaart van elke post die iemand
2465// tegenkomt, laat de omvang van zijn database bepalen door surfgedrag. Dat is
2466// de AFWIJKING, niet de norm: Mastodon serveert /context uit zijn eigen
2467// database, en dat verdient zich daar terug omdat honderden mensen de cache
2468// delen. Een Klonkt-instance is de server van één persoon.
2469//
2470// Waarom dit niet in de app kan: de replies-collectie van een vreemde server
2471// eist in secure mode een ONDERTEKEND verzoek, en de sleutel staat hier en kan
2472// hier niet weg. Voor de opgaande inReplyTo-keten komt de app weg met een
2473// ongetekende GET (mist er een, jammer); voor een thread van dertig is "de
2474// helft doet het niet" geen resultaat.
2475//
2476// Je krijgt hier NOOIT de hele thread: een replies-collectie bevat alleen wat
2477// die ene server gezien heeft. De UI hoort "wat de bron weet" te tonen en geen
2478// volledigheid te suggereren.
2479// NIET hetzelfde als maybeCrawlThread verderop: die kruipt de thread onder je
2480// EIGEN posts af en bewaart de antwoorden in ap_interactions (dat zijn de
2481// jouwe, die horen te blijven). Dit hier is voor een post van een ANDER die je
2482// tegenkomt, en bewaart niets.
2483const THREAD_VIEW_LIMIT = 30;
2484const THREAD_VIEW_TTL_MS = 120_000;
2485const THREAD_VIEW_CACHE_MAX = 200;
2486const threadViewCache = new Map(); // `${slug}|${uri}` -> { at, out } -- geheugen, weg bij herstart
2487
2488/** Eén pagina items uit een AS2-collectie, welke spelling hij ook koos. */
2489function collectionItems(coll) {
2490 if (!coll || typeof coll !== 'object') return [];
2491 const arr = coll.orderedItems || coll.items;
2492 return Array.isArray(arr) ? arr : [];
2493}
2494
2495/**
2496 * De directe antwoorden op één note, genormaliseerd voor de C2S-lezer.
2497 *
2498 * ALLEEN ophalen en normaliseren; de poorten zitten in de route. De
2499 * kringfilter (de dichte stand van shaer:externalThreads) woont in
2500 * filterThreadToCircle en de beeld/muziek/emoji-poorten in
2501 * gateAttachments/stripEmojiTags -- per verzoek, buiten deze cache om, want de
2502 * stand van een poort mag hier niet twee minuten bevriezen. Geblokkeerde
2503 * actors zijn een andere categorie en verdwijnen WEL hier, zonder telling:
2504 * een blokkade is onzichtbaar, ook als getal.
2505 */
2506export async function getThread(slug, objectUri) {
2507 const key = `${slug}|${objectUri}`;
2508 const hit = threadViewCache.get(key);
2509 if (hit && Date.now() - hit.at < THREAD_VIEW_TTL_MS) return hit.out;
2510
2511 // De status waarmee de BRON antwoordde op de note zelf. 401/403/404/410 is
2512 // een besluit van die server (niet gedeeld, of weg); alles daarbuiten -- ook
2513 // een stuk netwerk dat wegviel -- is een storing. De route moet dat verschil
2514 // kunnen zeggen, anders wijst de melding naar de verkeerde partij.
2515 let sourceStatus = 0;
2516 const get = (u) => localNoteObject(u, slug) || signedGetJson(slug, u, (st) => { sourceStatus = st; });
2517 const note = await get(objectUri);
2518 const repliesRef = note && note.replies;
2519 let coll = null;
2520 if (typeof repliesRef === 'string') coll = await signedGetJson(slug, repliesRef);
2521 else if (repliesRef && typeof repliesRef === 'object') {
2522 coll = collectionItems(repliesRef).length || repliesRef.first ? repliesRef
2523 : (repliesRef.id ? await signedGetJson(slug, repliesRef.id) : repliesRef);
2524 }
2525 // De pagina-wandeling van collectReplyItems, maar met behoud van INLINE
2526 // objecten (die niet opnieuw opgehaald hoeven). Niet "de eerste pagina":
2527 // Mastodon serveert `first` als inline-pagina met LEGE items en een `next`
2528 // waar de antwoorden echt staan -- wie alleen de eerste pagina leest, ziet
2529 // op elke Mastodon-post een leeg gesprek. Dat was precies Barts melding
2530 // (8-8, reacties op een vreemde post). Eigen posts maskeerden het: die
2531 // gaan door de lokale kortsluiting en hebben orderedItems meteen vol.
2532 let items = [];
2533 let node = coll;
2534 if (node && node.first && !collectionItems(node).length) {
2535 node = typeof node.first === 'string' ? await signedGetJson(slug, node.first) : node.first;
2536 }
2537 let pages = 0;
2538 while (node && pages++ < 3 && items.length < THREAD_VIEW_LIMIT) {
2539 items.push(...collectionItems(node));
2540 if (!node.next) break;
2541 node = typeof node.next === 'string' ? await signedGetJson(slug, node.next) : node.next;
2542 }
2543 items = items.slice(0, THREAD_VIEW_LIMIT);
2544
2545 // Alles tegelijk in plaats van om de beurt: dertig vreemde servers na elkaar
2546 // afwachten is een halve minuut kijken naar een spinner.
2547 const objs = await Promise.all(items.map(async (it) => {
2548 const o = typeof it === 'string' ? await get(it) : (it && it.object && typeof it.object === 'object' ? it.object : it);
2549 return (o && o.id && o.attributedTo) ? o : null;
2550 }));
2551
2552 const kept = [];
2553 for (const o of objs) {
2554 if (!o) continue;
2555 const actorUri = actorUriOf(o.attributedTo);
2556 if (!actorUri || isBlockedAny(actorUri)) continue; // een blokkade telt niet mee
2557 kept.push({ o, actorUri });
2558 }
2559
2560 // Bylines: één fetch per unieke auteur, niet één per antwoord.
2561 const authors = new Map();
2562 await Promise.all([...new Set(kept.map((k) => k.actorUri))].map(async (uri) => {
2563 authors.set(uri, localActorObject(uri) || await signedGetJson(slug, uri).catch(() => null));
2564 }));
2565
2566 const notes = kept.map(({ o, actorUri }) => ({
2567 id: o.id,
2568 type: 'Note',
2569 // De ingesloten actor (shaer-nmw): de byline hoort in attributedTo, waar
2570 // elke AP-lezer hem zoekt, en niet in een eigen property ernaast.
2571 attributedTo: actorObject(actorUri, actorInfo(authors.get(actorUri), actorUri)),
2572 inReplyTo: (typeof o.inReplyTo === 'string' ? o.inReplyTo : (o.inReplyTo && o.inReplyTo.id)) || objectUri,
2573 content: HtmlSanitizerService.sanitize(String(o.content || '').slice(0, 50_000)),
2574 url: safeUrl(typeof o.url === 'string' ? o.url : (o.url && o.url.href)) || undefined,
2575 published: typeof o.published === 'string' ? o.published : undefined,
2576 sensitive: !!o.sensitive,
2577 summary: (contentWarning(o) || '').slice(0, 500) || undefined,
2578 attachment: (() => {
2579 const arr = Array.isArray(o.attachment) ? o.attachment : (o.attachment ? [o.attachment] : []);
2580 const out = arr.map((a) => ({ type: 'Document', mediaType: (a && a.mediaType) || undefined, url: safeUrl(a && a.url), name: (a && typeof a.name === 'string') ? a.name.slice(0, 1500) : undefined }))
2581 .filter((a) => a.url);
2582 return out.length ? out.slice(0, 8) : undefined;
2583 })(),
2584 // FEP-9098: de custom emoji van het antwoord (":shortcode:" -> plaatje).
2585 // Zonder deze tags rendert een reply van een Mastodon-account zijn emoji
2586 // als kale tekst (Barts punt, 8-8). Alleen naam + geschoond icoon-adres
2587 // gaan door; de rest van de vreemde tag-array blijft achter.
2588 tag: (() => {
2589 const j = extractEmojiTags(o.tag);
2590 if (!j) return undefined;
2591 const out = JSON.parse(j)
2592 .map((t) => ({ type: 'Emoji', name: t.name, icon: { type: 'Image', url: safeUrl(t.icon && (t.icon.url || (Array.isArray(t.icon) && t.icon[0] && t.icon[0].url))) } }))
2593 .filter((t) => t.icon.url)
2594 .slice(0, 30);
2595 return out.length ? out : undefined;
2596 })(),
2597 })).sort((a, b) => String(a.published || '').localeCompare(String(b.published || '')));
2598
2599 const out = { notes, found: !!note, sourceStatus };
2600 threadViewCache.set(key, { at: Date.now(), out });
2601 if (threadViewCache.size > THREAD_VIEW_CACHE_MAX) {
2602 const oldest = [...threadViewCache.entries()].sort((a, b) => a[1].at - b[1].at)[0];
2603 if (oldest) threadViewCache.delete(oldest[0]);
2604 }
2605 return out;
2606}
2607
2608/**
2609 * De thread gefilterd op de kring die de guardians al kennen (gevolgd of
2610 * volgend) -- de dichte stand van shaer:externalThreads. PER VERZOEK, buiten de
2611 * threadcache om: een poort die de guardians net dichtzetten mag niet nog twee
2612 * minuten open nawerken uit een cache. Wat er buiten valt wordt GETELD, nooit
2613 * stil weggelaten.
2614 */
2615export function filterThreadToCircle(slug, notes) {
2616 const circle = new Set();
2617 try { for (const r of db.prepare("SELECT actor_uri FROM ap_following WHERE slug = ? AND status = 'accepted'").all(slug)) circle.add(r.actor_uri); } catch { /* geen tabel */ }
2618 try { for (const r of db.prepare('SELECT actor_uri FROM ap_followers WHERE slug = ?').all(slug)) circle.add(r.actor_uri); } catch { /* geen tabel */ }
2619 const kept = [], out = { hidden: 0 };
2620 for (const n of notes) {
2621 // actorUriOf, niet n.attributedTo: sinds de byline ingesloten meegaat is
2622 // dat een OBJECT en zou een kale vergelijking hier stil alles wegfilteren
2623 // -- een ward met een lege thread en nergens een foutmelding.
2624 if (circle.has(actorUriOf(n.attributedTo))) kept.push(n);
2625 else out.hidden += 1;
2626 }
2627 out.notes = kept;
2628 return out;
2629}
2630
2631export async function resolveRemoteNote(url, opts = {}) {
2632 if (!/^https?:\/\//i.test(String(url || ''))) return null;
2633 // With `asSlug` the fetches are SIGNED as that local actor. An anonymous
2634 // GET can only read public notes; a friends-only note (Shaer's default!)
2635 // rightly refuses it, which made every reply to a friend's post fail while
2636 // a reply to your own public post worked (Robins melding, 30-7). Signed,
2637 // the other server sees WHO asks and serves what the friendship earns.
2638 const get = (u) => (opts.asSlug ? signedGetJson(opts.asSlug, u) : fetchActor(u).catch(() => null));
2639 const note = localNoteObject(url, opts.asSlug) || await get(url); // own DB first, then AP GET
2640 if (!note || !note.id) return null;
2641 const att = note.attributedTo;
2642 const actorUri = actorUriOf(att);
2643 if (!actorUri) return null;
2644 const actor = localActorObject(actorUri) || await get(actorUri);
2645 const ai = actorInfo(actor, actorUri);
2646 // Is what we're replying to a post (or a comment) on one of OUR posts? If so,
2647 // link our reply to that local post so it shows nested in the post thread.
2648 const localTgt = findThreadTarget(note.id, (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, ''));
2649 // Walk the WHOLE reply chain upward (comment → parent comment → … → root post)
2650 // and collect every ancestor author's inbox, so each participant's server —
2651 // including the original post's author — receives + threads our reply.
2652 const threadInboxes = [];
2653 const seenInbox = new Set();
2654 let cursor = note.inReplyTo, guard = 0;
2655 while (cursor && guard++ < 6) {
2656 const url = typeof cursor === 'string' ? cursor : (cursor && cursor.id);
2657 if (!url) break;
2658 const pn = localNoteObject(url, opts.asSlug) || await get(url);
2659 if (!pn) break;
2660 const pa = actorUriOf(pn.attributedTo);
2661 if (pa && pa !== actorUri) {
2662 const paDoc = await get(pa);
2663 const inbox = paDoc && ((paDoc.endpoints && paDoc.endpoints.sharedInbox) || paDoc.inbox);
2664 if (inbox && !seenInbox.has(inbox)) { seenInbox.add(inbox); threadInboxes.push(inbox); }
2665 }
2666 cursor = pn.inReplyTo; // climb to the next ancestor
2667 }
2668 // For non-Note objects (PeerTube Video, Article, …) the meaningful label is `name` (the
2669 // title); prepend it so the reply page shows what you're replying to (sanitize cleans it).
2670 let rawHtml = String(note.content || '').replace(/\[\[(track|album|playlist):[^\]]+\]\]/gi, '');
2671 if (note.name && note.type && note.type !== 'Note') rawHtml = `<p><strong>${note.name}</strong></p>` + rawHtml;
2672 const images = (Array.isArray(note.attachment) ? note.attachment : [])
2673 .filter((a) => a && a.url && (!a.mediaType || /^image\//i.test(a.mediaType)))
2674 .map((a) => safeUrl(a.url)).filter(Boolean);
2675 // A Klonkt hosted-audio post strips its cover from `attachment` (so Mastodon
2676 // shows the player card, not a loose image) and puts it in `image` instead.
2677 // Same fallback as mediaFromNote() so a boosted music post keeps its cover.
2678 if (!images.length && note.image) {
2679 const im = Array.isArray(note.image) ? note.image[0] : note.image;
2680 const iu = safeUrl(typeof im === 'string' ? im : (im && im.url));
2681 if (iu) images.push(iu);
2682 }
2683 return {
2684 object_uri: safeUrl(note.id) || note.id,
2685 actor_uri: actorUri,
2686 actor_url: ai.url,
2687 actor_handle: ai.handle,
2688 actor_name: ai.name,
2689 actor_icon: ai.icon,
2690 url: note.url || url,
2691 content: HtmlSanitizerService.sanitize(rawHtml), // full, sanitized
2692 sensitive: !!note.sensitive, // remote CW → blur in the Cirkel
2693 cw: contentWarning(note) || '',
2694 images,
2695 // Full typed media (incl. video/mp4) for the timeline cache. `images` above is
2696 // image-only for the interact page preview; a boosted video-only post (Loops)
2697 // lost its media entirely because upsertBoostedNote only saw `images`.
2698 media: mediaFromNote(note),
2699 threadInboxes, // every ancestor author's inbox
2700 localPostId: localTgt ? localTgt.post_id : '', // our post this belongs to (if any)
2701 poll: parsePoll(note), // a Question → its options/counts (else null)
2702 preview: HtmlSanitizerService.toPlainText(note.content || '').slice(0, 240),
2703 };
2704}
2705
2706// List a site's own outbound fediverse replies (for the manage/delete view).
2707// The plain editable text of a stored reply (unwrap links → their text, <br> → newline)
2708// so the manage view can prefill an edit box; the mention is re-added on save.
2709function outboxEditableText(content) {
2710 return String(content || '')
2711 .replace(/<br\s*\/?>/gi, '\n')
2712 .replace(/<a\b[^>]*>([\s\S]*?)<\/a>/gi, '$1')
2713 .replace(/<[^>]+>/g, '')
2714 .replace(/&lt;/g, '<').replace(/&gt;/g, '>').replace(/&amp;/g, '&')
2715 .trim();
2716}
2717export function listOutbox(siteSlug) {
2718 // post_slug reist mee sinds Berichten gesprekken toont: het is de sleutel
2719 // waarop een verzonden antwoord bij de ontvangen antwoorden op dezelfde post
2720 // gaat staan (zie threadKey). Zonder die kolom viel een uitwisseling uit
2721 // elkaar in "Verzonden" en "Gesprekken".
2722 return db.prepare('SELECT id, content, to_handle, to_actor, to_actors, post_slug, in_reply_to, attachments, language, created_at FROM ap_outbox WHERE site_slug = ? ORDER BY created_at DESC')
2723 .all(siteSlug).map((r) => { const c = stripLeadingMentions(r.content); return { ...r, content: c, editable: outboxEditableText(c) }; });
2724}
2725
2726// Delete one of our outbound replies: send Delete(Tombstone) to recipients + remove it.
2727export async function deliverOutboxDelete(site, outboxId) {
2728 const row = iStmts().getO.get(outboxId);
2729 if (!row || row.site_slug !== site.slug) return false;
2730 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
2731 if (base) {
2732 const me = actorId(base, site.slug);
2733 const nid = noteId(base, row.id);
2734 const del = { '@context': AP_CONTEXT, id: `${nid}#delete-${Date.now()}-${rid()}`, type: 'Delete', actor: me, to: [PUBLIC], object: { id: nid, type: 'Tombstone' } };
2735 const keys = getOrCreateKeys(site.slug);
2736 const inboxes = new Set();
2737 if (row.to_actor) { const a = await fetchActor(row.to_actor).catch(() => null); if (a) inboxes.add((a.endpoints && a.endpoints.sharedInbox) || a.inbox); }
2738 for (const f of fStmts().list.all(site.slug)) inboxes.add(f.shared_inbox || f.inbox);
2739 for (const inbox of [...inboxes].filter(Boolean)) {
2740 try { const st = await deliver(inbox, del, `${me}#main-key`, keys.private_pem); if (st >= 200 && st < 300) continue; } catch { /* queue below */ }
2741 enqueueDelivery(site.slug, inbox, del); // durable: a failed comment-delete now retries (was silently dropped)
2742 }
2743 }
2744 db.prepare('DELETE FROM ap_outbox WHERE id = ?').run(outboxId);
2745 return true;
2746}
2747
2748// Edit one of our outbound replies: rewrite the stored content (mention re-added + #tags
2749// re-linked) and send an Update(Note) so recipients refresh their cached copy.
2750export async function deliverOutboxUpdate(site, outboxId, newText, opts = {}) {
2751 const row = iStmts().getO.get(outboxId);
2752 if (!row || row.site_slug !== site.slug) return false;
2753 const text = String(newText || '').trim();
2754 // Rich edit: same sanitize + enrichment pipeline as deliverReply.
2755 const richClean = opts.html ? HtmlSanitizerService.sanitize(String(opts.html)) : '';
2756 const rich = richClean && HtmlSanitizerService.toPlainText(richClean).trim() ? richClean : '';
2757 if (!text && !rich) return false;
2758 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
2759 if (!base) return false;
2760 const me = actorId(base, site.slug);
2761 const toActor = row.to_actor ? await fetchActor(row.to_actor).catch(() => null) : null;
2762 const toProfile = row.to_actor ? (actorInfo(toActor, row.to_actor).url || row.to_actor) : '';
2763 const _h = row.to_handle || deriveHandle(row.to_actor);
2764 const toHandle = _h && _h[0] === '@' ? _h : '@' + (_h || '');
2765 // An edit must not drop co-mentions (u02): reuse the OLD content's leading
2766 // mention anchors (the bar's kept list at send time) when present; only fall
2767 // back to rebuilding the single to_actor mention for legacy rows.
2768 const oldPrefix = (String(row.content || '')
2769 .match(/^\s*(?:<p[^>]*>)?\s*((?:<a\b[^>]*class="u-url mention"[^>]*>\s*@[^<]+<\/a>[\s ]*)+)/i) || [])[1] || '';
2770 const mention = oldPrefix || (row.to_actor
2771 ? `<a href="${escHtml(toProfile)}" class="u-url mention" data-actor="${escHtml(row.to_actor)}">${escHtml(toHandle)}</a> ` : '');
2772 let content;
2773 let mres;
2774 if (rich) {
2775 mres = await resolveMentionsInText(base, rich);
2776 const processed = linkUrls(linkHashtags(base, mres.html));
2777 if (processed.startsWith('<p>')) content = processed.replace('<p>', `<p>${mention}`);
2778 else if (/^<(blockquote|ul|ol|pre|h[1-6]|div|hr)\b/i.test(processed)) content = `<p>${mention}</p>${processed}`;
2779 else content = `<p>${mention}${processed}</p>`;
2780 } else {
2781 mres = await resolveMentionsInText(base, escHtml(text).replace(/\r?\n/g, '<br>'));
2782 content = `<p>${mention}${linkUrls(linkHashtags(base, mres.html))}</p>`;
2783 }
2784 // Language may be updated with the edit; attachments always survive untouched.
2785 const newLang = /^[a-z]{2,3}(-[A-Za-z0-9-]+)?$/.test(String(opts.language || '')) ? opts.language : null;
2786 db.prepare('UPDATE ap_outbox SET content = ?, language = COALESCE(?, language) WHERE id = ?').run(content, newLang, outboxId);
2787 const note = buildReplyNote(base, site, iStmts().getO.get(outboxId));
2788 note.updated = new Date().toISOString();
2789 const update = {
2790 '@context': AP_CONTEXT,
2791 id: `${note.id}#update-${Date.now()}-${rid()}`, type: 'Update', actor: me,
2792 published: note.published, updated: note.updated, to: note.to, cc: note.cc, object: note,
2793 };
2794 const keys = getOrCreateKeys(site.slug);
2795 const inboxes = new Set();
2796 if (toActor) inboxes.add((toActor.endpoints && toActor.endpoints.sharedInbox) || toActor.inbox);
2797 for (const f of fStmts().list.all(site.slug)) inboxes.add(f.shared_inbox || f.inbox);
2798 mres.inboxes.forEach((i) => inboxes.add(i)); // people @mentioned inline in the edit
2799 inboxes.delete(`${me}/inbox`); inboxes.delete(`${base}/ap/inbox`);
2800 let delivered = 0;
2801 for (const inbox of [...inboxes].filter(Boolean)) {
2802 let ok = false;
2803 try { const st = await deliver(inbox, update, `${me}#main-key`, keys.private_pem); ok = st >= 200 && st < 300; } catch { ok = false; }
2804 if (ok) delivered++;
2805 else enqueueDelivery(site.slug, inbox, update); // durable: retry the edit later (was silently dropped)
2806 }
2807 console.log('[AP] outreply edit', site.slug, 'delivered', delivered);
2808 return { ok: true, content, delivered };
2809}
2810
2811
2812
2813// Store the author's display-name emoji map (from actorInfo().emojis) on a
2814// timeline row, so the byline can render a ":shortcode:" name. No-op when the
2815// name has no custom emoji (the common case).
2816function storeAuthorEmoji(id, slug, ai) {
2817 if (!ai || !ai.emojis || !Object.keys(ai.emojis).length) return;
2818 try { db.prepare('UPDATE ap_timeline SET author_emoji_json = ? WHERE id = ? AND slug = ?').run(JSON.stringify(ai.emojis), id, slug); } catch { /* ignore */ }
2819}
2820
2821// A display-name emoji map (actorInfo().emojis) → JSON to store, or null.
2822function emojiJsonOf(map) { return (map && Object.keys(map).length) ? JSON.stringify(map) : null; }
2823
2824
2825
2826// ── Self-heal: re-sync the fediverse cache (ap_timeline) after a DRASTIC update ──
2827// Runs ONCE per SELFHEAL_VERSION bump — NOT on every boot. Re-fetches each cached
2828// note and refreshes content + media (recovers covers/edits that were delivered
2829// during a flux window, e.g. a fleet-wide update), and drops notes that are gone
2830// (404/410). Bump SELFHEAL_VERSION only on a release that warrants a re-sync.
2831const SELFHEAL_VERSION = 22; // v22: summary is pas een waarschuwing MET sensitive, en een artikel houdt zijn titel
2832async function fetchNoteAP(url) {
2833 try {
2834 const r = await fetch(url, { headers: { Accept: 'application/activity+json' } });
2835 if (r.status === 404 || r.status === 410) return 404;
2836 if (r.ok) return await r.json();
2837 } catch { /* unreachable */ }
2838 return null;
2839}
2840function mediaFromNote(note) {
2841 const atts = (Array.isArray(note.attachment) ? note.attachment : []).map((a) => {
2842 const m = { url: safeUrl(a && a.url), type: (a && a.mediaType) || '' };
2843 // A federated video may carry its poster as an AS2 icon (shaer-zowq).
2844 const iconUrl = a && a.icon && safeUrl(typeof a.icon === 'string' ? a.icon : a.icon.url);
2845 if (iconUrl && /^video\//i.test(m.type)) m.poster = iconUrl;
2846 return m;
2847 }).filter((m) => m.url);
2848 if (!atts.some((m) => !m.type || /image/i.test(m.type)) && note.image) {
2849 const im = Array.isArray(note.image) ? note.image[0] : note.image;
2850 const iu = safeUrl(typeof im === 'string' ? im : (im && im.url));
2851 if (iu) atts.push({ url: iu, type: (im && im.mediaType) || 'image/jpeg' });
2852 }
2853 return JSON.stringify(atts);
2854}
2855
2856// FEP-044f, emit side. The mirror of extractQuoteUrl (ingest): when one of our
2857// own posts quotes a fediverse object, say so in the shapes the network really
2858// reads. `quote` is the FEP property; quoteUrl / _misskey_quote are the de-facto
2859// ones Mastodon and Misskey look at, and the FEP-e232 `Link` in `tag` is the
2860// third form. All three point at the same object, which is what every reader
2861// expects. The quoted author goes in `cc`, because being quoted without being
2862// told is exactly the rudeness this FEP is trying to design away.
2863export function applyQuoteProps(note, quoteUri, quoteActor) {
2864 if (!note || typeof quoteUri !== 'string' || !/^https?:\/\//i.test(quoteUri)) return note;
2865 note.quote = quoteUri;
2866 note.quoteUrl = quoteUri;
2867 note['_misskey_quote'] = quoteUri;
2868 note.tag = [...(note.tag || []), {
2869 type: 'Link',
2870 mediaType: 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"',
2871 href: quoteUri,
2872 rel: ['https://misskey-hub.net/ns#_misskey_quote'],
2873 name: quoteUri,
2874 }];
2875 if (typeof quoteActor === 'string' && /^https?:\/\//i.test(quoteActor)) {
2876 note.cc = [...new Set([...(note.cc || []), quoteActor])];
2877 }
2878 return note;
2879}
2880
2881// The first external (non-fediverse) link in a note, resolved to the same card
2882// shape as a quote: THUMBNAIL ONLY, never the provider's iframe. An arbitrary
2883// third-party frame inside a kid-safe app is a hole you cannot close again, so
2884// the embed carries an image and a title and nothing executable.
2885// Returns the JSON to store, or null when there is nothing worth showing.
2886export async function resolveExternalEmbed(html) {
2887 const first = firstExternalUrl(html);
2888 if (!first) return null;
2889 const io = EmbedResolver.liveIO({
2890 safeFetch,
2891 detectProvider: (u) => AudioEmbedService.detectProvider(u),
2892 fetchActor,
2893 actorInfo,
2894 });
2895 const card = await EmbedResolver.resolveEmbed(first, io).catch(() => null);
2896 // 'ap' is handled by the quote path; a bare 'link' is not worth a card.
2897 if (!card || card.kind === 'ap' || card.kind === 'link') return null;
2898 const thumb = (card.media || []).find((m) => m && m.url);
2899 if (!thumb && !card.title) return null;
2900 // Title, provider and author name come from a third party. Store them as
2901 // PLAIN TEXT (tags stripped, length-capped), so no renderer downstream has to
2902 // be the one that remembers to escape. A card is a card, not an essay.
2903 const plain = (v) => (v ? HtmlSanitizerService.toPlainText(String(v)).trim().slice(0, 200) : null);
2904 return JSON.stringify({
2905 url: card.url,
2906 kind: card.kind, // 'provider' | 'oembed'
2907 provider: plain(card.provider),
2908 title: plain(card.title),
2909 author: card.author ? { ...card.author, name: plain(card.author.name), handle: plain(card.author.handle) } : null,
2910 media: thumb ? [thumb] : [], // thumbnail only, no html/iframe
2911 });
2912}
2913
2914/**
2915 * Does our own post link to a fediverse object? Returns { uri, actor } when the
2916 * first external link resolves to a quotable AP object, else null. Runs once at
2917 * publish time; the answer is stored on the post.
2918 */
2919export async function resolveOwnQuote(html) {
2920 const first = firstExternalUrl(html);
2921 if (!first) return null;
2922 const io = EmbedResolver.liveIO({ safeFetch, detectProvider: () => null, fetchActor, actorInfo });
2923 const card = await EmbedResolver.resolveEmbed(first, io).catch(() => null);
2924 if (!card || card.kind !== 'ap' || !card.id) return null;
2925 return { uri: card.id, actor: card.attributedTo || null };
2926}
2927
2928/**
2929 * De composer-preview (shaer-k3f): één URL langs exact dezelfde pijplijn als
2930 * publiceren, zodat wat de preview toont ook is wat de post krijgt. Twee
2931 * uitkomsten, hoogstens een gevuld: een AP-object wordt een quote-snapshot,
2932 * een externe link probeert een kaart. Beide als JSON-string, dezelfde vorm
2933 * als de kolommen -- de route serveert ze door timelineQuote/timelineEmbed en
2934 * de gate, net als de tijdlijn.
2935 */
2936export async function previewCard(url) {
2937 if (!/^https?:\/\//i.test(String(url || ''))) return {};
2938 const html = `<a href="${String(url).replace(/"/g, '&quot;')}">x</a>`;
2939 const q = await resolveOwnQuote(html);
2940 if (q && q.uri) {
2941 const quoteJson = await resolveQuoteByUri(q.uri).catch(() => null);
2942 if (quoteJson) return { quoteJson };
2943 } else {
2944 const embedJson = await resolveExternalEmbed(html).catch(() => null);
2945 if (embedJson) return { embedJson };
2946 }
2947 return {};
2948}
2949
2950/** The first http(s) link in sanitized note HTML that is not a mention/hashtag. */
2951export function firstExternalUrl(html) {
2952 if (!html || typeof html !== 'string') return null;
2953 for (const m of html.matchAll(/<a\b[^>]*href=["']([^"']+)["'][^>]*>/gi)) {
2954 const tag = m[0];
2955 if (/\b(mention|hashtag|u-url)\b/i.test(tag) && /mention|hashtag/i.test(tag)) continue;
2956 const href = m[1];
2957 if (/^https?:\/\//i.test(href)) return href;
2958 }
2959 return null;
2960}
2961
2962/** The stored external-embed card, for the C2S read. */
2963// ── Standaardvormen in plaats van eigen dialect (shaer-nmw) ───────
2964//
2965// Robins waarschuwing: geen Klonkt/Shaer-dialect schrijven waar AS2 of een FEP
2966// het al regelt. Vier eigen properties hadden een standaard naast zich staan,
2967// en deze helpers zijn die standaard -- een definitie per vorm, zodat de tien
2968// plekken die ze emitten niet elk hun eigen variant krijgen.
2969//
2970// De oude shaer:-velden blijven er voorlopig NAAST staan. Een app in het veld
2971// leest ze nog, en een leeg scherm is een duurdere fout dan een dubbel veld;
2972// ze gaan eruit als de clients om zijn (tweede helft van shaer-nmw).
2973
2974/** FEP-9098 Emoji-tags uit een {shortcode: url}-kaart. */
2975function emojiTagsFromMap(emojis) {
2976 const uit = Object.entries(emojis || {})
2977 .filter(([naam, url]) => naam && url)
2978 .map(([naam, url]) => ({ type: 'Emoji', name: naam, icon: { type: 'Image', url } }));
2979 return uit.length ? uit : undefined;
2980}
2981
2982/**
2983 * Een actor als INGESLOTEN OBJECT voor `attributedTo` / `actor`.
2984 *
2985 * AS2 staat toe dat attributedTo een object is in plaats van een URI, en dan
2986 * heeft ELKE client er wat aan -- niet alleen de onze, die er shaer:author
2987 * naast kreeg. `preferredUsername` is de lokale naam; een lezer leidt de handle
2988 * af uit die naam plus de host van de id, precies zoals wij serverkant ook
2989 * doen. Weten we niets van de persoon, dan blijft het de kale URI: een leeg
2990 * object zou beweren dat we hem kennen.
2991 */
2992export function actorObject(uri, info) {
2993 if (!uri) return undefined;
2994 const iets = info && (info.name || info.handle || info.icon || info.url);
2995 if (!iets) return uri;
2996 const o = { id: uri, type: 'Person' };
2997 if (info.name) o.name = info.name;
2998 const lokaal = String(info.handle || '').replace(/^@/, '').split('@')[0];
2999 if (lokaal) o.preferredUsername = lokaal;
3000 if (info.icon) o.icon = { type: 'Image', url: info.icon };
3001 if (info.url) o.url = info.url;
3002 const tags = emojiTagsFromMap(info.emojis);
3003 if (tags) o.tag = tags;
3004 return o;
3005}
3006
3007/**
3008 * De linkkaart als AS2 `preview` (core: "identifies an entity that provides a
3009 * preview of this object"). Een Page met url, name en image IS een kaart; daar
3010 * hoefde shaer:embed nooit voor te bestaan.
3011 *
3012 * Wat WEL van ons blijft is de spelerpagina: dat die alleen meegaat als de
3013 * guardians de poort openden is FEP-633c-gedrag en heeft geen AS2-tegenhanger.
3014 */
3015export function previewObject(embedJson, { playback = false } = {}) {
3016 const e = timelineEmbed(embedJson, { playback });
3017 if (!e) return undefined;
3018 const thumb = (e.media || []).find((m) => m && m.url);
3019 const p = { type: 'Page', url: e.url };
3020 if (e.title) p.name = e.title;
3021 if (thumb) p.image = { type: 'Image', url: thumb.url };
3022 if (e.author && (e.author.name || e.author.handle)) {
3023 p.attributedTo = { type: 'Person', name: e.author.name || e.author.handle };
3024 }
3025 if (e['shaer:playerUrl']) p['shaer:playerUrl'] = e['shaer:playerUrl'];
3026 if (e['shaer:playable']) p['shaer:playable'] = e['shaer:playable'];
3027 return p;
3028}
3029
3030/**
3031 * De geciteerde post als OBJECT in `quote` (FEP-044f staat toe dat quote het
3032 * object zelf is, niet alleen een URI). De opgeslagen momentopname wordt hier
3033 * een echte Note, met de auteur als ingesloten actor -- dus geen tweede eigen
3034 * property voor iets dat de FEP al kan.
3035 */
3036export function quoteObject(quoteJson) {
3037 const q = timelineQuote(quoteJson);
3038 if (!q) return undefined;
3039 const note = { type: 'Note', id: q.url, url: q.url };
3040 if (q.content) note.content = q.content;
3041 if (q.published) note.published = q.published;
3042 if (q.author) {
3043 note.attributedTo = actorObject(q.author.url || q.url, {
3044 name: q.author.name, handle: q.author.handle, icon: q.author.icon,
3045 });
3046 }
3047 const media = (q.media || []).filter((m) => m && m.url)
3048 .map((m) => ({ type: 'Document', mediaType: m.type || undefined, url: m.url }));
3049 if (media.length) note.attachment = media;
3050 const tags = emojiTagsFromMap(q.emojis);
3051 if (tags) note.tag = tags;
3052 return note;
3053}
3054
3055export function timelineEmbed(embedJson, { playback = false } = {}) {
3056 try {
3057 const e = embedJson ? JSON.parse(embedJson) : null;
3058 if (!e || typeof e !== 'object' || !e.url) return undefined;
3059 // The player URL is served ONLY when the playback gate is open (FEP-633c
3060 // 5.6). Deciding it here keeps the provider knowledge in one place: the
3061 // client never needs a list of hosts, it just plays what it is handed.
3062 // Privacy-enhanced variants only: nocookie for YouTube, the instance's own
3063 // player for PeerTube. Without one the card stays a thumbnail.
3064 const player = playback ? playerUrlFor(e.url) : null;
3065 if (player) return { ...e, 'shaer:playerUrl': player };
3066 // The gate is shut and there IS something behind it. Saying so costs
3067 // nothing (the card already shows a video thumbnail) and saves the child
3068 // from tapping a card that will never answer: the app can explain instead
3069 // of doing nothing. It stays a statement of fact, never a way in.
3070 return playerUrlFor(e.url) ? { ...e, 'shaer:playable': true } : e;
3071 } catch { return undefined; }
3072}
3073
3074/** The embeddable player for a URL, or null when we will not frame it. */
3075export function playerUrlFor(url) {
3076 if (typeof url !== 'string') return null;
3077 let p = null;
3078 try { p = AudioEmbedService.detectProvider(url); } catch { p = null; }
3079 if (p && p.provider === 'youtube' && p.id) return `https://www.youtube-nocookie.com/embed/${p.id}?rel=0&modestbranding=1&playsinline=1`;
3080 if (p && p.provider === 'vimeo' && p.id) return `https://player.vimeo.com/video/${p.id}`;
3081 // PeerTube is decentralised, so it is matched by its watch-URL shape rather
3082 // than a provider list. Host chars are validated before it is inlined.
3083 const pt = url.match(/^https?:\/\/([\w.-]+(?::\d+)?)\/(?:w|videos\/watch)\/([\w-]{6,})/i);
3084 if (pt) return `https://${pt[1]}/videos/embed/${pt[2]}`;
3085 return null;
3086}
3087
3088// FEP-044f embedded quote card: resolve the quoted post to a compact, sanitised
3089// snapshot { url, author{name,handle,icon}, content, published, media } so the
3090// client can render it as a nested card instead of a bare link. Best-effort and
3091// SSRF-safe (apGetJson): returns null on any failure, and the client falls back
3092// to the object-link chip. The content goes through the same sanitiser as every
3093// other note, so the kid-safe guarantees hold.
3094async function resolveQuote(note) {
3095 const url = quoteHrefOf(note);
3096 if (!url) return null;
3097 return resolveQuoteByUri(url);
3098}
3099
3100/** Hetzelfde snapshot, maar vanaf een kale URI: eigen posts en de
3101 * composer-preview (shaer-k3f) kennen alleen de link, niet de tag-vorm. */
3102async function resolveQuoteByUri(url) {
3103 const q = await apGetJson(url);
3104 if (!q || typeof q !== 'object') return null;
3105 const authorUri = typeof q.attributedTo === 'string' ? q.attributedTo
3106 : (q.attributedTo && typeof q.attributedTo.id === 'string' ? q.attributedTo.id : null);
3107 const ai = authorUri ? actorInfo(await fetchActor(authorUri), authorUri) : null;
3108 // The quoted post's own FEP-9098 emojis, so :shortcode: renders in the card.
3109 const emojis = {};
3110 try {
3111 for (const e of JSON.parse(extractEmojiTags(q.tag) || '[]')) {
3112 const u = e.icon && (e.icon.url || (Array.isArray(e.icon) && e.icon[0] && e.icon[0].url));
3113 if (typeof e.name === 'string' && u) emojis[e.name] = u;
3114 }
3115 } catch { /* ignore */ }
3116 let media = []; try { media = JSON.parse(mediaFromNote(q)); } catch { /* ignore */ }
3117 const snapshot = {
3118 url: safeUrl(q.url || q.id || url) || url,
3119 author: ai ? { name: ai.name, handle: ai.handle, icon: ai.icon } : null,
3120 content: HtmlSanitizerService.sanitize(q.content || ''),
3121 published: q.published || null,
3122 media,
3123 emojis: Object.keys(emojis).length ? emojis : undefined,
3124 };
3125 return JSON.stringify(snapshot);
3126}
3127
3128/**
3129 * The card under a post: a fediverse quote (FEP-044f) when the note has one,
3130 * otherwise an external link preview. Both render as the SAME card, so only one
3131 * of the two is ever stored. Returns {column, json} or null.
3132 *
3133 * Both halves reach out over the network, which is why every caller runs this
3134 * out of band: an inbox answer must never wait on a third party.
3135 */
3136async function resolveCard(o) {
3137 if (quoteHrefOf(o)) {
3138 const qj = await resolveQuote(o);
3139 return qj ? { column: 'quote_json', json: qj } : null;
3140 }
3141 const ej = await resolveExternalEmbed(o && o.content);
3142 return ej ? { column: 'embed_json', json: ej } : null;
3143}
3144
3145// AP-native catch-up: pull an actor's standard `outbox` collection and merge their recent
3146// top-level posts into the timeline for `slug`. Push (Create delivery) cannot backfill
3147// history-from-before-you-followed or a delivery that was missed while you were down;
3148// reading the outbox is the spec-conform way to catch up. PULL ONLY — sends nothing.
3149export async function backfillFromOutbox(slug, actorUri, limit = 20) {
3150 try {
3151 if (!slug || !actorUri) return 0;
3152 const actor = await fetchActor(actorUri);
3153 if (!actor || !actor.outbox) return 0;
3154 // Signed as the follower (30-7): the serving side recognises an accepted
3155 // friend and hands the friends-only history along; an anonymous GET only
3156 // ever sees the public set. A server that ignores the signature behaves
3157 // exactly as before.
3158 let page = await signedGetJson(slug, typeof actor.outbox === 'string' ? actor.outbox : actor.outbox.id);
3159 let items = (page && (page.orderedItems || page.items)) || [];
3160 if (!items.length && page && page.first) {
3161 page = await signedGetJson(slug, typeof page.first === 'string' ? page.first : page.first.id);
3162 items = (page && (page.orderedItems || page.items)) || [];
3163 }
3164 if (!Array.isArray(items) || !items.length) return 0;
3165 const ai = actorInfo(actor, actorUri);
3166 let added = 0;
3167 for (const it of items.slice(0, limit)) {
3168 // Each item is usually a Create wrapping a Note, or sometimes the Note itself.
3169 const o = (it && typeof it.object === 'object' && it.object) ? it.object : it;
3170 if (!o || !o.id) continue;
3171 if (o.type && o.type !== 'Note' && o.type !== 'Article' && o.type !== 'Question') continue; // skip boosts/other
3172 if (o.inReplyTo) continue; // top-level only
3173 const auth = actorUriOf(o.attributedTo);
3174 if (auth && auth !== actorUri) continue; // their OWN posts only
3175 const html = HtmlSanitizerService.sanitize(o.content || '');
3176 const poll = parsePoll(o); // a Question (poll) → carry its options/counts on backfill too
3177 try {
3178 const r = tlStmts().ins.run(o.id, slug, actorUri, ai.name, ai.handle, ai.icon, ai.url, html, o.url || null, o.published || null, mediaFromNote(o), o.sensitive ? 1 : 0, contentWarning(o));
3179 if (r && r.changes > 0) added++;
3180 // FEP-9098: keep custom-emoji tags from backfilled posts too.
3181 { const ej = extractEmojiTags(o.tag); if (ej) { try { db.prepare('UPDATE ap_timeline SET emoji_json = ? WHERE id = ? AND slug = ?').run(ej, o.id, slug); } catch { /* ignore */ } } }
3182 storeAuthorEmoji(o.id, slug, ai); // custom-emoji display name for the byline
3183 // FEP-e232 + FEP-044f: keep object-link/quote tags from backfilled posts too.
3184 { const lj = extractLinkJson(o); if (lj) { try { db.prepare('UPDATE ap_timeline SET link_json = ? WHERE id = ? AND slug = ?').run(lj, o.id, slug); } catch { /* ignore */ } } }
3185 // FEP-044f: resolve the embedded quote card for backfilled posts too.
3186 if (quoteHrefOf(o)) { const qj = await resolveQuote(o); if (qj) { try { db.prepare('UPDATE ap_timeline SET quote_json = ? WHERE id = ? AND slug = ?').run(qj, o.id, slug); } catch { /* ignore */ } } }
3187 // Set poll_json if this is a poll and we don't already have it (COALESCE preserves a vote).
3188 if (poll) { try { db.prepare('UPDATE ap_timeline SET poll_json = COALESCE(poll_json, ?) WHERE id = ? AND slug = ?').run(JSON.stringify(poll), o.id, slug); } catch { /* ignore */ } }
3189 } catch { /* ignore */ }
3190 }
3191 if (added) console.log('[AP] outbox backfill', actorUri, '→', slug, '+' + added);
3192 return added;
3193 } catch { return 0; }
3194}
3195
3196// ── Remote thread crawl (fill the gaps in a local post's conversation) ────────────
3197// Most replies reach us by delivery, but replies-to-replies that live on other servers and
3198// aren't addressed to us are missed. This pulls the AS2 `replies` collections of the replies
3199// we DO have, caching any newly-found ones in ap_interactions.
3200//
3201// Matches Mastodon's behaviour: ONE level per crawl (like its FetchRepliesService), not a deep
3202// recursive walk. Deeper levels fill in incrementally across crawls — once a fetched reply is
3203// cached it becomes a seed itself, so its own replies are pulled on a later view (Mastodon's
3204// per-status cascade). Bounded + polite (serial), PULL only, and stale-while-revalidate: it
3205// never runs in a page request — the view renders from cache; a stale post kicks off a
3206// background refresh for the NEXT view.
3207const THREAD_TTL_MS = 15 * 60 * 1000; // don't re-crawl a post more than ~4×/hour
3208const THREAD_MAX_DEPTH = 1; // one hop per crawl (like Mastodon); deeper fills in over crawls
3209const THREAD_MAX_FETCHES = 30; // hard cap on remote GETs per crawl (be a good peer)
3210const _crawlingThreads = new Set(); // per-post in-flight lock (no stampede across views)
3211
3212function threadCrawlTs(postId) {
3213 try { const r = db.prepare('SELECT value FROM app_settings WHERE key = ?').get('thread_crawl:' + postId); return r ? (Number(r.value) || 0) : 0; }
3214 catch { return 0; }
3215}
3216function setThreadCrawlTs(postId, ts) {
3217 try { db.prepare('INSERT INTO app_settings (key, value) VALUES (?, ?) ON CONFLICT(key) DO UPDATE SET value = excluded.value').run('thread_crawl:' + postId, String(ts)); }
3218 catch { /* ignore */ }
3219}
3220
3221// Read a note's `replies` (string ref / Collection with `first` / paged CollectionPages) →
3222// child note URIs. Every remote GET goes through `budget` so the whole crawl stays capped.
3223async function collectReplyItems(repliesRef, maxPages, budget) {
3224 const uris = [];
3225 let node = typeof repliesRef === 'string' ? await budget.get(repliesRef) : repliesRef;
3226 if (node && node.first) node = typeof node.first === 'string' ? await budget.get(node.first) : node.first;
3227 let pages = 0;
3228 while (node && pages++ < maxPages) {
3229 for (const it of (node.items || node.orderedItems || [])) {
3230 const u = typeof it === 'string' ? it : (it && it.id);
3231 if (u && /^https?:\/\//i.test(u)) uris.push(u);
3232 }
3233 if (!node.next) break;
3234 node = typeof node.next === 'string' ? await budget.get(node.next) : node.next;
3235 }
3236 return uris;
3237}
3238
3239async function crawlThread(postId) {
3240 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
3241 if (!base) return;
3242 // Seed frontier = the remote reply note URIs we already have; also the dedup set.
3243 let known;
3244 try { known = new Set(db.prepare("SELECT object_uri FROM ap_interactions WHERE post_id = ? AND kind = 'reply' AND object_uri != ''").all(postId).map((r) => r.object_uri)); }
3245 catch { return; }
3246 const seeds = [...known].filter((u) => /^https?:\/\//i.test(u));
3247 if (!seeds.length) return; // nothing remote to expand
3248 // Owner-removed replies (tombstones) join the dedup set AFTER seeding, so the
3249 // crawler never re-adds them via thread-filling (they're gone from the seeds
3250 // already because rejectInteraction deleted their ap_interactions row).
3251 try { for (const r of db.prepare('SELECT object_uri FROM ap_rejected_objects WHERE post_id = ?').all(postId)) known.add(r.object_uri); }
3252 catch { /* table always exists after boot migration */ }
3253
3254 let fetches = 0;
3255 const budget = { get: async (u) => { if (fetches >= THREAD_MAX_FETCHES) return null; fetches++; return apGetJson(u); } };
3256 const visited = new Set(); // notes whose replies collection we've already expanded
3257 let frontier = seeds.slice();
3258 let added = 0;
3259
3260 for (let depth = 0; depth < THREAD_MAX_DEPTH && frontier.length && fetches < THREAD_MAX_FETCHES; depth++) {
3261 const nextFrontier = [];
3262 for (const noteUri of frontier) {
3263 if (visited.has(noteUri) || fetches >= THREAD_MAX_FETCHES) continue;
3264 visited.add(noteUri);
3265 const note = await budget.get(noteUri);
3266 if (!note || !note.replies) continue;
3267 const childUris = await collectReplyItems(note.replies, 2, budget);
3268 for (const cu of childUris) {
3269 if (known.has(cu) || fetches >= THREAD_MAX_FETCHES) continue;
3270 known.add(cu);
3271 const child = await budget.get(cu);
3272 if (!child || !child.id || (child.type !== 'Note' && child.type !== 'Article')) continue;
3273 if (isRejectedObject(child.id)) continue; // note id can differ from the collection URI (redirects)
3274 const actorUri = actorUriOf(child.attributedTo);
3275 if (!actorUri || isBlockedAny(actorUri)) continue; // skip blocked authors
3276 const actor = await budget.get(actorUri); // may be null if budget spent → fallback handle
3277 const ai = actorInfo(actor, actorUri);
3278 const html = HtmlSanitizerService.sanitize(child.content || '');
3279 // The child replies to `note` by construction (it's in note's replies collection).
3280 try { iStmts().ins.run('reply', postId, child.id, actorUri, ai.name, ai.handle, ai.url, ai.icon, html, child.published || null, note.id || noteUri, noteVisibility(child), extractEmojiTags(child.tag), emojiJsonOf(ai.emojis)); added++; } catch { /* ignore */ }
3281 nextFrontier.push(child.id); // expand this reply's own replies next depth
3282 }
3283 }
3284 frontier = nextFrontier;
3285 }
3286 if (added) console.log('[AP] thread crawl', postId, '+' + added, 'remote replies (' + fetches + ' fetches)');
3287}
3288
3289// Stale-while-revalidate entry point: call from the post view. Renders nothing, blocks nothing —
3290// fires a background crawl only if this post hasn't been crawled within the TTL.
3291export function maybeCrawlThread(postId) {
3292 if (!postId || _crawlingThreads.has(postId)) return;
3293 if (Date.now() - threadCrawlTs(postId) < THREAD_TTL_MS) return;
3294 _crawlingThreads.add(postId);
3295 setThreadCrawlTs(postId, Date.now()); // optimistic mark so concurrent/next views don't re-fire
3296 crawlThread(postId).catch((e) => console.warn('[AP] thread crawl failed:', e && e.message)).finally(() => _crawlingThreads.delete(postId));
3297}
3298
3299let _selfHealing = false;
3300export async function selfHealTimeline() {
3301 if (_selfHealing) return; _selfHealing = true;
3302 try {
3303 let cur = 0;
3304 try { const r = db.prepare('SELECT value FROM app_settings WHERE key = ?').get('selfheal_version'); cur = r ? (parseInt(r.value, 10) || 0) : 0; } catch { return; }
3305 if (cur >= SELFHEAL_VERSION) return; // already healed for this version — skip on normal boots
3306 // v21: direct notes used to land in the timeline as if they were posts, so a
3307 // ward's 🛟 help request showed up in the guardian's Krant. The insert now
3308 // refuses them; drop the ones already cached. Scoped to the two kinds we can
3309 // still recognise afterwards (help request, wave) — a plain public mention
3310 // from someone you follow IS a timeline post and must stay.
3311 try {
3312 const r = db.prepare(`DELETE FROM ap_timeline WHERE EXISTS (
3313 SELECT 1 FROM ap_mentions m
3314 WHERE m.object_uri = ap_timeline.id AND m.slug = ap_timeline.slug
3315 AND (m.help_request = 1 OR m.wave = 1))`).run();
3316 if (r.changes) console.log(`[AP] self-heal v21: ${r.changes} direct note(s) removed from the timeline`);
3317 } catch { /* table may predate the columns */ }
3318 let rows = [];
3319 try { rows = db.prepare('SELECT id, slug, content, media_json, nsfw, cw, url, emoji_json, link_json, quote_json, author_uri, author_name, author_emoji_json, reblog_name, reblog_handle, reblog_emoji_json, embed_json FROM ap_timeline ORDER BY rowid DESC LIMIT 200').all(); } catch { /* no table */ }
3320 let healed = 0, failed = 0;
3321 for (const r of rows) {
3322 // Link previews first, and deliberately BEFORE the note re-fetch. A
3323 // preview is resolved from the content we already hold, so hanging it
3324 // behind a remote fetch meant one unreachable origin skipped the whole
3325 // row (`continue` below) and the card never appeared. It needs nothing
3326 // from the origin, so it must not depend on it.
3327 if (!r.quote_json && !r.embed_json) {
3328 try {
3329 const ej = await resolveExternalEmbed(r.content);
3330 if (ej) db.prepare('UPDATE ap_timeline SET embed_json = ? WHERE id = ?').run(ej, r.id);
3331 } catch { /* best-effort, never blocks the heal */ }
3332 }
3333 try {
3334 const note = await fetchNoteAP(r.id);
3335 if (note === 404) { db.prepare('DELETE FROM ap_timeline WHERE id = ?').run(r.id); healed++; continue; }
3336 if (!note || typeof note !== 'object') { failed++; continue; } // origin unreachable right now
3337 // Door DEZELFDE bouwer als de innamekant (v22). Hij bouwde de inhoud
3338 // hier zelf op, en daardoor miste een gerepareerde rij precies wat de
3339 // inname wel doet -- de titel van een artikel bijvoorbeeld. Een
3340 // zelfherstel dat een andere vorm oplevert dan de inname repareert naar
3341 // een derde toestand.
3342 const velden = timelineFields(note);
3343 const html = velden.html;
3344 const media = velden.atts.length ? JSON.stringify(velden.atts) : mediaFromNote(note);
3345 const nsfw = note.sensitive ? 1 : 0; // re-sync NSFW/sensitive + CW onto already-cached posts
3346 const cw = contentWarning(note);
3347 const url = note.url || null; // re-sync the human url (catches a remote slug rename)
3348 const emoji = extractEmojiTags(note.tag); // FEP-9098: re-capture custom-emoji tags (v8)
3349 const link = extractLinkJson(note); // FEP-e232 + FEP-044f: re-capture object-link/quote tags (v9)
3350 // FEP-044f: resolve the embedded quote card (v11). COALESCE-style: keep a
3351 // cached snapshot if the quoted post is momentarily unreachable now.
3352 const quote = quoteHrefOf(note) ? (await resolveQuote(note)) || r.quote_json || null : null;
3353 if ((html && html !== r.content) || media !== (r.media_json || '[]') || nsfw !== (r.nsfw || 0) || (cw || '') !== (r.cw || '') || (url && url !== r.url) || (emoji || '') !== (r.emoji_json || '') || (link || '') !== (r.link_json || '') || (quote || '') !== (r.quote_json || '')) {
3354 db.prepare('UPDATE ap_timeline SET content = ?, media_json = ?, nsfw = ?, cw = ?, url = COALESCE(?, url), emoji_json = ?, link_json = ?, quote_json = ? WHERE id = ?').run(html || r.content, media, nsfw, cw, url, emoji, link, quote, r.id);
3355 healed++;
3356 }
3357 // v13: a custom-emoji display name needs the author's emoji map. Fetch
3358 // the actor once, only for rows whose name has a shortcode and no map yet.
3359 if (/:[A-Za-z0-9_+-]+:/.test(r.author_name || '') && !r.author_emoji_json && r.author_uri) {
3360 const ai = actorInfo(await fetchActor(r.author_uri), r.author_uri);
3361 if (ai.emojis) { try { db.prepare('UPDATE ap_timeline SET author_emoji_json = ? WHERE id = ?').run(JSON.stringify(ai.emojis), r.id); } catch { /* ignore */ } }
3362 }
3363 // v14: same for the booster's display name ("X boosted"). The row stores
3364 // no booster URI, so resolve it from the handle via webfinger. Scoped to
3365 // this exact row (slug) since a note can be boosted by different people.
3366 if (/:[A-Za-z0-9_+-]+:/.test(r.reblog_name || '') && !r.reblog_emoji_json && r.reblog_handle) {
3367 const bUri = await webfingerResolve(r.reblog_handle);
3368 const em = bUri ? actorNameEmojis(await fetchActor(bUri)) : undefined;
3369 if (em) { try { db.prepare('UPDATE ap_timeline SET reblog_emoji_json = ? WHERE id = ? AND slug = ?').run(JSON.stringify(em), r.id, r.slug); } catch { /* ignore */ } }
3370 }
3371 } catch { failed++; /* per-note best-effort */ }
3372 }
3373 // Only mark this version DONE after a clean pass. Some origins are briefly
3374 // offline exactly when we heal (phone-hosted instances!): skipping them and
3375 // consuming the version would leave those rows stale forever. Instead retry
3376 // on the next boots, giving up after a few attempts (permanently-dead
3377 // origins answer 404/410 and are deleted above, so they don't loop).
3378 const setSetting = (k, v) => { try { db.prepare('INSERT OR REPLACE INTO app_settings (key, value) VALUES (?, ?)').run(k, String(v)); } catch { /* ignore */ } };
3379 let attempts = 0;
3380 try { const a = db.prepare('SELECT value FROM app_settings WHERE key = ?').get('selfheal_attempts'); attempts = a ? (parseInt(a.value, 10) || 0) : 0; } catch { /* ignore */ }
3381 if (failed === 0 || attempts >= 4) {
3382 setSetting('selfheal_version', SELFHEAL_VERSION);
3383 setSetting('selfheal_attempts', 0);
3384 } else {
3385 setSetting('selfheal_attempts', attempts + 1);
3386 }
3387 if (rows.length) console.log(`[AP] self-heal v${SELFHEAL_VERSION}: ${healed}/${rows.length} timeline notes${failed ? ` (${failed} unreachable — will retry next boot)` : ''}`);
3388 } catch { /* never block boot */ } finally { _selfHealing = false; }
3389}
3390
3391// Follow a fediverse account by @handle (WebFinger → actor → signed Follow).
3392
3393/**
3394 * FEP-7628 (DRAFT status — the shape is Mastodon's since 2019, but the FEP can
3395 * still change): an account our sites follow says it moved to a new home.
3396 *
3397 * Validity has two independent legs, and both must hold:
3398 * 1. The SIGNER is a party to the move: the old actor announcing its own move
3399 * (push mode) or the new actor doing it (pull mode). A third party
3400 * narrating someone else's move is refused — without this, any signed
3401 * stranger could re-point our follows.
3402 * 2. The NEW actor claims the old identity in its `alsoKnownAs`. That is the
3403 * cross-side proof: the mover controls both ends. Without it, whoever
3404 * holds ONE end could hijack the other end's followers.
3405 *
3406 * Effect: every local site following the old actor unfollows it and follows
3407 * the new one, keeping its auto-boost choice. Deliberately NOT retargeted:
3408 * guardianship relations (FEP-633c) — a guardian is a security anchor, not a
3409 * feed subscription, and moving one is shaer-tge's gated decision, not a
3410 * side effect of an inbox event. We only log when a move touches one.
3411 *
3412 * Deps are injectable for tests (no network in node:test).
3413 */
3414export async function handleMoveInbox(act, { verifiedActor = null, fetchActorFn = null, followFn = null, unfollowFn = null } = {}) {
3415 const oldUri = typeof act.object === 'string' ? act.object : (act.object && act.object.id);
3416 const newUri = typeof act.target === 'string' ? act.target : (act.target && act.target.id);
3417 if (!oldUri || !newUri || oldUri === newUri) return 400;
3418 if (!verifiedActor || (verifiedActor !== oldUri && verifiedActor !== newUri)) {
3419 console.warn('[AP] Move refused: signer is not a party to the move', verifiedActor || '(unsigned)', oldUri, '→', newUri);
3420 return 401;
3421 }
3422 // Nobody here follows the old actor → nothing to move. This also makes
3423 // redelivery idempotent: after the first swap the rows are gone.
3424 let rows = [];
3425 try { rows = db.prepare('SELECT * FROM ap_following WHERE actor_uri = ?').all(oldUri); } catch { /* fresh init */ }
3426 if (!rows.length) return 202;
3427 // A blocked destination is declined outright: the old follow stays (it goes
3428 // stale on its own), and we will not open a door to a blocked house.
3429 if (isBlockedAny(newUri)) { console.log('[AP] Move dropped: target is blocked', newUri); return 202; }
3430 const target = await (fetchActorFn || fetchActor)(newUri);
3431 const aka = [].concat((target && target.alsoKnownAs) || [])
3432 .map((a) => (typeof a === 'string' ? a : (a && a.id))).filter(Boolean);
3433 if (!target || !target.id || !aka.includes(oldUri)) {
3434 console.warn('[AP] Move refused: target does not claim the old actor in alsoKnownAs', oldUri, '→', newUri);
3435 return 202; // decline to act; no 4xx, the sender may be a well-meaning retrying server
3436 }
3437 // EERST de guardianship, DAARNA pas de follows. Die volgorde is geen netheid
3438 // maar de hele werking, en hij is met bloed geschreven: bij Robins verhuizing
3439 // op 13-8 stond het andersom en het log liet precies zien wat er dan gebeurt.
3440 //
3441 // [AP] outgoing Follow beta → .../robo (gated, awaiting guardians)
3442 //
3443 // Beta is zelf een ward. Zijn UITGAANDE follow naar de verhuisde guardian werd
3444 // gepoort (§5.3), want op dat moment stond het nieuwe adres nog niet in zijn
3445 // guardian-lijst: de code hieronder had de relatie nog niet bijgewerkt. En de
3446 // INKOMENDE kant heeft hetzelfde probleem, want de ward gate't een Follow van
3447 // een onbekende. Dus beide richtingen bleven hangen op goedkeuring die niemand
3448 // hoefde te geven, omdat het om een guardian ging die er al was.
3449 //
3450 // Met de relatie eerst is de verhuisde actor al een erkende guardian als de
3451 // follows langskomen, en gaat de auto-acceptatie gewoon door.
3452 //
3453 // Een Move is een Move: de guardian is dezelfde guardian, het kind is hetzelfde
3454 // kind, alleen het adres is nieuw. Zelfde bescherming als de re-follow: alleen
3455 // na een geverifieerde Move, en niet naar een geblokkeerde bestemming (daar
3456 // zijn we hierboven al uitgestapt). De twee harde randen van shaer-tge staan
3457 // hier LOS van: weigeren te verhuizen naar een instance die shaer:guardians
3458 // niet kan dragen is een controle aan de UITGAANDE kant, en het
3459 // terugkeren-zonder-set is een alsoKnownAs-kwestie.
3460 try {
3461 const g = db.prepare('SELECT slug, role FROM ap_guardianships WHERE other_uri = ? AND status = ?').all(oldUri, 'accepted');
3462 if (g.length) {
3463 const r = db.prepare('UPDATE ap_guardianships SET other_uri = ? WHERE other_uri = ? AND status = ?').run(newUri, oldUri, 'accepted');
3464 console.log('[AP] guardianship moved:', oldUri, '→', newUri, `(${r.changes}x)`, g.map((x) => `${x.role}:${x.slug}`).join(', '));
3465 }
3466 } catch (e) { console.warn('[AP] guardianship move failed:', e && e.message); }
3467
3468 for (const row of rows) {
3469 const site = db.prepare('SELECT * FROM sites WHERE slug = ?').get(row.slug);
3470 if (!site) continue;
3471 try {
3472 await (unfollowFn || unfollowActor)(site, oldUri);
3473 const already = fwStmts().one.get(row.slug, newUri);
3474 if (!already) await (followFn || followActor)(site, newUri, !!row.auto_boost);
3475 console.log('[AP] follow moved', row.slug, ':', oldUri, '→', newUri);
3476 } catch (e) {
3477 console.warn('[AP] move re-follow failed for', row.slug, e && e.message);
3478 }
3479 }
3480 return 202;
3481}
3482
3483/**
3484 * Slice 2 van shaer-0j2 (FEP-7628, DRAFT): de UITGAANDE helft — deze Klonkt
3485 * is het oude huis en kondigt het vertrek aan. Twee eisen voordat er iets
3486 * de deur uit gaat:
3487 * 1. Geen guardians: een warded account verhuizen zonder de guardianship
3488 * te hertargeten zou het vangnet van het kind stil breken; dat is
3489 * shaer-tge's gated beslissing, dus tot die er is weigert een bewaakt
3490 * account de verhuizing.
3491 * 2. De NIEUWE actor claimt ons in alsoKnownAs — dezelfde back-reference
3492 * die elke ontvangende server (onze eigen slice 1 incluis) eist. Zonder
3493 * die claim is de Move overal dood bij aankomst.
3494 * De Move gaat duurzaam naar elke volger-inbox; hun servers doen de
3495 * re-follow. `moved_to` wordt hier vastgelegd; het SERVEREN ervan op de
3496 * actor (en het beleid van de oude site) is slice 3.
3497 * Deps injecteerbaar voor tests (geen netwerk in node:test).
3498 */
3499export async function moveAccount(site, targetRaw, { fetchActorFn = null, deliverFn = null } = {}) {
3500 // Al verhuisd? Dan eerst het slot eraf (moved_to leegmaken). Anders stapel je
3501 // wegwijzers op elkaar en weet niemand meer waar de keten eindigt.
3502 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
3503 if (!base || !site || !site.slug) return { error: 'config' };
3504 if (movedLock(site).locked) return { error: 'already_moved', movedTo: movedLock(site).movedTo };
3505 try {
3506 // Was een harde weigering voor elk bewaakt account (shaer-tge); sinds 8-8
3507 // een GATE met dezelfde standaard: de automatiek weigert voor een ward,
3508 // maar de guardians kunnen shaer:accountMove expliciet openzetten -- en
3509 // expliciet dichtzetten geldt dan ook voor een account dat net geen ward
3510 // meer is, net als bij de embeds.
3511 const isWard = Guardianship.listGuardians(site.slug).length > 0;
3512 if (!Guardianship.wardGateAllowed(site.gate_account_move, isWard)) {
3513 console.warn('[AP] move refused: gated (shaer-tge):', site.slug, '→', String(targetRaw || ''));
3514 return { error: 'guarded_account' };
3515 }
3516 } catch { /* geen guardianship-tabellen = geen guardians */ }
3517 const s = String(targetRaw || '').trim();
3518 let targetUri = null;
3519 if (/^https?:\/\//i.test(s)) targetUri = safeUrl(s);
3520 else if (s.includes('@')) targetUri = await webfingerResolve(s);
3521 if (!targetUri) return { error: 'not_found' };
3522 const me = actorId(base, site.slug);
3523 if (targetUri === me) return { error: 'self' };
3524 const target = await (fetchActorFn ? fetchActorFn(targetUri) : signedGetJson(site.slug, targetUri));
3525 if (!target || !target.id || !target.inbox) return { error: 'unreachable' };
3526 const aka = [].concat(target.alsoKnownAs || [])
3527 .map((a) => (typeof a === 'string' ? a : (a && a.id))).filter(Boolean);
3528 if (!aka.includes(me)) return { error: 'no_backreference' };
3529 db.prepare('UPDATE sites SET moved_to = ? WHERE slug = ?').run(target.id, site.slug);
3530 const keys = getOrCreateKeys(site.slug);
3531 const move = {
3532 '@context': AP_CONTEXT,
3533 id: `${me}#move-${Date.now()}-${rid()}`,
3534 type: 'Move',
3535 actor: me,
3536 object: me,
3537 target: target.id,
3538 to: [`${me}/followers`],
3539 };
3540 // FEP-7628: after setting movedTo, notify the followers with an Update of
3541 // the actor, so their servers hold the signpost even if the Move itself is
3542 // lost. Built from the FRESH row: `site` still carries the pre-move values.
3543 const movedSite = db.prepare('SELECT * FROM sites WHERE slug = ?').get(site.slug) || { ...site, moved_to: target.id };
3544 const update = {
3545 '@context': AP_CONTEXT,
3546 id: `${me}#update-${Date.now()}-${rid()}`,
3547 type: 'Update', actor: me, to: [PUBLIC], cc: [`${me}/followers`],
3548 object: buildActor(base, movedSite),
3549 published: new Date().toISOString(),
3550 };
3551 const inboxes = [...new Set(fStmts().list.all(site.slug).map((f) => f.shared_inbox || f.inbox).filter(Boolean))];
3552 const send = deliverFn || deliverWithRetry;
3553 for (const inbox of inboxes) {
3554 await send(site.slug, inbox, update, `${me}#main-key`, keys.private_pem);
3555 await send(site.slug, inbox, move, `${me}#main-key`, keys.private_pem);
3556 }
3557 console.log('[AP] MOVE announced:', site.slug, '→', target.id, 'to', inboxes.length, 'inbox(es)');
3558 return { ok: true, target: target.id, inboxes: inboxes.length };
3559}
3560
3561// FEP-633c §5.3 note (authorized fetch): true when `actorUri` is a committed
3562/**
3563 * Who is reading this outbox, and what may they see (30-7)?
3564 * - 'blocked': a verified caller this instance blocks. They get an EMPTY
3565 * collection, not even the public set (Robins eis): a block is a closed
3566 * door, and a signed fetch is the caller knocking with their name on it.
3567 * - 'friend': the owner (bearer) or a verified accepted follower or
3568 * guardian: the fan-only history rides along.
3569 * - 'public': everyone else: the public set.
3570 */
3571export function outboxAudience(slug, { bearerSlug = null, verifiedActor = null } = {}) {
3572 if (bearerSlug && bearerSlug === slug) return 'friend';
3573 if (!verifiedActor) return 'public';
3574 if (isBlockedAny(verifiedActor)) return 'blocked';
3575 // FEP-1580, Source Instance: wie ondertekend vraagt namens de actor waar wij
3576 // NAARTOE verhuisd zijn, moet behandeld worden alsof wij het zelf vragen.
3577 // Anders kan de nieuwe instantie alleen het publieke deel ophalen en verhuist
3578 // je fan-only geschiedenis niet mee.
3579 if (isMoveTarget(slug, verifiedActor)) return 'friend';
3580 try {
3581 if (db.prepare('SELECT 1 FROM ap_followers WHERE slug = ? AND actor_uri = ?').get(slug, verifiedActor)) return 'friend';
3582 } catch { /* table absent on fresh init */ }
3583 if (isWardGuardian(slug, verifiedActor)) return 'friend';
3584 return 'public';
3585}
3586
3587/**
3588 * FEP-1580, de hele autorisatie van de bronkant in één predicaat.
3589 *
3590 * De spec zegt: behandel een verzoek dat namens de DOEL-actor getekend is alsof
3591 * de BRON-actor het deed, voor zichtbaarheid en toegang. Wij hangen dat aan
3592 * `moved_to`, en dat mag omdat moveAccount() `no_backreference` weigert: het
3593 * veld komt er alleen te staan als de doel-actor ons al in `alsoKnownAs` had.
3594 * Dus staat er iets, dan heeft iemand met beheer op BEIDE kanten dat gewild.
3595 * Een typefout kan hier niet binnenkomen, want die haalt de move zelf niet.
3596 *
3597 * Dat dit veilig is leunt op de keyId-binding in verifyRequest (shaer-xd8i):
3598 * zonder die controle kon een actor tekenen met de sleutel van een buurman op
3599 * dezelfde host, en dan is "wie tekende dit" te zacht om je hele geschiedenis
3600 * aan af te geven.
3601 */
3602export function isMoveTarget(slug, actorUri) {
3603 if (!slug || !actorUri) return false;
3604 try {
3605 const row = db.prepare('SELECT moved_to FROM sites WHERE slug = ?').get(slug);
3606 return !!(row && row.moved_to && row.moved_to === actorUri);
3607 } catch { return false; }
3608}
3609
3610// guardian of the local ward `wardSlug` — so a signed GET from it may read the
3611// ward's non-public history without the guardian appearing as a follower.
3612export function isWardGuardian(wardSlug, actorUri) {
3613 try { return !!Guardianship.getRelation(wardSlug, 'ward', actorUri); } catch { return false; }
3614}
3615
3616// FEP-633c §5.3: the guardians approved a gated follow of their ward. Send the
3617// Accept to the follower and record them, so delivery (incl. followers-only)
3618// begins. `pending` is a row from ap_pending_follows.
3619/**
3620 * FEP-633c §5.3, the direction that was never gated (bead shaer-p729).
3621 *
3622 * A ward's OWN follow waited for nobody: it went straight out and the guardians
3623 * got a note afterwards (1a2f206). That is informing, not gating — the door is
3624 * already open when the message lands. Now it waits, with two exceptions that
3625 * are not favours but the same decision already taken:
3626 *
3627 * - the target is one of the ward's own guardians. Following the adult who
3628 * watches over you is not a question anyone needs to answer.
3629 * - the target already follows the ward THROUGH THE GATE. A guardian
3630 * approved that person by name; asking again about the same person only
3631 * teaches everyone to stop reading the question.
3632 *
3633 * Returns the held request, or null when the follow may go out now.
3634 * Deliberately not a boolean: a held follow must be distinguishable from a sent
3635 * one all the way up to the app, which is the lesson the error path already
3636 * learned (Robins melding, 31-7).
3637 */
3638export async function gateOutgoingFollow(site, targetUri) {
3639 const slug = site && site.slug;
3640 if (!slug || !targetUri) return null;
3641 const guardians = Guardianship.listGuardians(slug).map((g) => g.other_uri);
3642 if (!guardians.length) return null; // not a ward: nothing to gate
3643 // shaer:following (shaer-p729) — its own gate, apart from shaer:follows,
3644 // which governs the OTHER direction. §5.3 fixes the inbound one on: a Follow
3645 // aimed at a ward MUST pass the guardians. About this direction the FEP says
3646 // nothing, so it is ours to set and ours to let go of, and the guardians can
3647 // relax it for a child who has grown into it. Undecided means gated for a
3648 // ward, the same automatiek as the rest of the family.
3649 const gateRow = db.prepare('SELECT gate_following FROM sites WHERE slug = ?').get(slug);
3650 if (Guardianship.wardGateAllowed(gateRow && gateRow.gate_following, true)) return null;
3651 if (guardians.includes(targetUri)) return null; // your own guardian
3652 if (Guardianship.outgoing.isMutual(slug, targetUri)) return null; // already vetted by name
3653
3654 const seen = Guardianship.outgoing.findFor(slug, targetUri);
3655 if (seen && seen.status === 'approved') return null; // the guardians said yes already
3656 if (seen && (seen.status === 'pending' || seen.status === 'denied')) return seen;
3657
3658 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
3659 const wardActor = actorId(base, slug);
3660 const target = await fetchActor(targetUri).catch(() => null);
3661 const ti = actorInfo(target, targetUri);
3662 const id = `${wardActor}#outfollow-${Date.now()}-${rid()}`;
3663 const held = Guardianship.outgoing.recordPending(slug, {
3664 id, target: targetUri,
3665 inbox: target && ((target.endpoints && target.endpoints.sharedInbox) || target.inbox),
3666 name: ti.name, handle: ti.handle, icon: ti.icon,
3667 });
3668
3669 // Same routing as the inbound gate: a guardian on this instance gets a push
3670 // and reads /guardian; one elsewhere gets an Offer delivered so its own
3671 // server holds a copy to answer from.
3672 const wardKeys = getOrCreateKeys(slug);
3673 const followObj = { id, type: 'Follow', actor: wardActor, object: targetUri };
3674 for (const g of guardians) {
3675 try { Guardianship.availability.recordRequest(slug, g, id, Date.now()); } catch { /* never load-bearing */ }
3676 }
3677 for (const g of guardians) {
3678 const gslug = g.startsWith(`${base}/`) ? slugFromActorUrl(g) : null;
3679 const isLocal = gslug && db.prepare('SELECT 1 FROM sites WHERE slug = ?').get(gslug);
3680 if (isLocal) {
3681 const L = pushLang(gslug);
3682 // De andere richting, en dus andere woorden: hier vraagt het kind of het
3683 // iemand mag volgen. Met dezelfde tekst als hierboven kon een guardian
3684 // op zijn telefoon niet zien wie er nu eigenlijk om wie vroeg.
3685 pushEvent(gslug, { type: 'guardian', title: i18nT(L, 'push.n_guard_folout_t'), body: i18nT(L, 'push.n_guard_folout_b', { who: ti.name || ti.handle || i18nT(L, 'notif.someone'), ward: slug }), url: `${pushPrefix(gslug)}/guardian` });
3686 } else {
3687 fetchActor(g).then((ga) => {
3688 const inbox = ga && ((ga.endpoints && ga.endpoints.sharedInbox) || ga.inbox);
3689 if (!inbox) return;
3690 // Zou DIT antwoord het besluit afmaken (shaer-8vt)? Bij twee guardians is de
3691 // drempel 1, dus de EERSTE ja beslist -- en dat is precies wat de
3692 // beantwoorder niet kon weten.
3693 const beslissend = Guardianship.gated.isDecisive(0, Guardianship.follows.followThreshold(guardians.length));
3694 const offer = { '@context': AP_CONTEXT, id: `${wardActor}#outfollowoffer-${Date.now()}-${rid()}`, type: 'Offer', actor: wardActor, to: [g], object: followObj, 'shaer:followApproval': true, 'shaer:direction': 'outgoing', 'shaer:decisive': beslissend };
3695 deliverWithRetry(slug, inbox, offer, `${wardActor}#main-key`, wardKeys.private_pem).catch(() => {});
3696 }).catch(() => {});
3697 }
3698 }
3699 console.log('[AP] outgoing Follow', slug, '→', targetUri, '(gated, awaiting guardians)');
3700 return held || { id, ward_slug: slug, target_uri: targetUri, status: 'pending' };
3701}
3702
3703/**
3704 * The guardians said yes: send the ward's Follow for real (§5.3, shaer-p729).
3705 *
3706 * The row stays behind as `approved` rather than being deleted. It is the
3707 * record that these guardians vetted this target, so an unfollow-and-refollow
3708 * later does not put the same question in front of them again.
3709 */
3710export async function performApprovedFollow(pending) {
3711 const site = db.prepare('SELECT * FROM sites WHERE slug = ?').get(pending.ward_slug);
3712 if (!site) return { error: 'no_such_ward' };
3713 const r = await followActor(site, pending.target_uri, false, { approved: true });
3714 if (r && r.error) return { error: r.error };
3715 console.log('[AP] outgoing Follow approved', pending.ward_slug, '→', pending.target_uri);
3716 return { ok: true };
3717}
3718
3719export async function acceptGatedFollow(pending) {
3720 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
3721 const slug = pending.ward_slug;
3722 const me = actorId(base, slug);
3723 const keys = getOrCreateKeys(slug);
3724 fStmts().ins.run(slug, pending.follower_uri, pending.follower_inbox, pending.follower_shared_inbox, pending.follower_name, pending.follower_handle, pending.follower_icon);
3725 // This follower came through the §5.3 gate: a guardian said yes to this
3726 // person by name. That is precisely what lets the ward follow them back later
3727 // without asking the same guardians the same question twice (shaer-p729).
3728 db.prepare('UPDATE ap_followers SET gate_approved = 1 WHERE slug = ? AND actor_uri = ?').run(slug, pending.follower_uri);
3729 const original = pending.activity_json ? JSON.parse(pending.activity_json) : { type: 'Follow', actor: pending.follower_uri, object: me };
3730 const accept = { '@context': AP_CONTEXT, id: `${me}#accept-${Date.now()}-${rid()}`, type: 'Accept', actor: me, object: original };
3731 await deliverWithRetry(slug, pending.follower_inbox, accept, `${me}#main-key`, keys.private_pem);
3732 const filled = pending.follower_shared_inbox &&
3733 db.prepare('SELECT 1 FROM ap_followers WHERE slug = ? AND shared_inbox = ? AND actor_uri != ? LIMIT 1').get(slug, pending.follower_shared_inbox, pending.follower_uri);
3734 if (!filled) backfillNewFollower(base, slug, pending.follower_shared_inbox || pending.follower_inbox).catch(() => {});
3735 console.log('[AP] gated Follow accepted', pending.follower_uri, '→ ward', slug);
3736 return { ok: true };
3737}
3738
3739// The guardians denied the follow: send a Reject so the follower's server clears
3740// its pending state, then the caller drops the record.
3741export async function rejectGatedFollow(pending) {
3742 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
3743 const slug = pending.ward_slug;
3744 const me = actorId(base, slug);
3745 const keys = getOrCreateKeys(slug);
3746 const original = pending.activity_json ? JSON.parse(pending.activity_json) : { type: 'Follow', actor: pending.follower_uri, object: me };
3747 const reject = { '@context': AP_CONTEXT, id: `${me}#reject-${Date.now()}-${rid()}`, type: 'Reject', actor: me, object: original };
3748 if (pending.follower_inbox) await deliverWithRetry(slug, pending.follower_inbox, reject, `${me}#main-key`, keys.private_pem).catch(() => {});
3749 console.log('[AP] gated Follow rejected', pending.follower_uri, '→ ward', slug);
3750 return { ok: true };
3751}
3752
3753// ── Cross-instance follow-approval (FEP-633c §5.3, modelled on the guardian
3754// offer). Inbound: an Offer(Follow) forwarded by a ward to a guardian (leg
3755// 2), or a guardian's Accept/Reject coming back to the ward (leg 4). ──────
3756async function handleFollowApprovalInbox(act, slugParam) {
3757 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
3758 const type = Array.isArray(act.type) ? act.type[0] : act.type;
3759 const actorUri = typeof act.actor === 'string' ? act.actor : (act.actor && act.actor.id);
3760
3761 // Leg 2: I am a guardian; the object is the Follow to approve. The Offer is
3762 // signed by the ward, so act.actor is the ward.
3763 if (type === 'Offer') {
3764 const fo = (act.object && typeof act.object === 'object') ? act.object : null;
3765 const foType = fo && (Array.isArray(fo.type) ? fo.type[0] : fo.type);
3766 if (!fo || foType !== 'Follow') return false;
3767 const followId = fo.id;
3768 const follower = typeof fo.actor === 'string' ? fo.actor : (fo.actor && fo.actor.id);
3769 const wardUri = actorUri;
3770 if (!followId || !follower || !wardUri) return false;
3771 const recips = (Array.isArray(act.to) ? act.to : (act.to ? [act.to] : [])).filter((x) => typeof x === 'string');
3772 if (slugParam) recips.push(actorId(base, slugParam));
3773 let stored = false;
3774 for (const r of new Set(recips)) {
3775 const gslug = slugFromActorUrl(r);
3776 if (!gslug) continue;
3777 if (!Guardianship.getRelation(gslug, 'guardian', wardUri)) continue; // must actually guard this ward
3778 const wardDoc = await fetchActor(wardUri).catch(() => null);
3779 const fai = actorInfo(await fetchActor(follower).catch(() => null), follower);
3780 // De RICHTING bewaren (shaer-jdb). shaer:direction wordt sinds de uitgaande
3781 // gate meegestuurd maar werd nergens gelezen, dus een uitgaande belandde
3782 // hier als "deze ward wil deze ward volgen" met het doel weggegooid.
3783 // Terugval voor oudere afzenders: is de volger de ward zelf, dan is het
3784 // uitgaand -- dat volgt uit de vorm en hoeft niet geloofd te worden.
3785 const uitgaand = act['shaer:direction'] === 'outgoing' || follower === wardUri;
3786 const doel = uitgaand ? (typeof fo.object === 'string' ? fo.object : (fo.object && fo.object.id)) : null;
3787 const dai = uitgaand ? actorInfo(await fetchActor(doel).catch(() => null), doel) : null;
3788 Guardianship.follows.recordReview(gslug, {
3789 id: followId, wardUri, wardInbox: wardDoc && wardDoc.inbox,
3790 follower, followerHandle: fai.handle, followerIcon: fai.icon, followJson: JSON.stringify(fo),
3791 direction: uitgaand ? 'outgoing' : 'incoming',
3792 target: doel || null, targetHandle: dai ? dai.handle : null,
3793 });
3794 const L = pushLang(gslug);
3795 // `uitgaand` staat hier al, drie regels hoger, en werd voor de melding
3796 // weer weggegooid: elke richting kreeg dezelfde tekst, geleend van
3797 // offer_for_ward. Op de telefoon las een volgverzoek dus als een
3798 // adoptie-aanvraag, en beide richtingen als elkaar.
3799 const wardNaam = (wardDoc && (wardDoc.preferredUsername || wardDoc.name)) || slugFromActorUrl(wardUri) || wardUri;
3800 const anderNaam = uitgaand
3801 ? ((dai && (dai.name || dai.handle)) || i18nT(L, 'notif.someone'))
3802 : (fai.name || fai.handle || i18nT(L, 'notif.someone'));
3803 pushEvent(gslug, {
3804 type: 'guardian',
3805 title: i18nT(L, uitgaand ? 'push.n_guard_folout_t' : 'push.n_guard_folin_t'),
3806 body: i18nT(L, uitgaand ? 'push.n_guard_folout_b' : 'push.n_guard_folin_b', { who: anderNaam, ward: wardNaam }),
3807 url: `${pushPrefix(gslug)}/guardian`,
3808 });
3809 stored = true;
3810 }
3811 return stored;
3812 }
3813
3814 // Leg 4: I am the ward; a guardian decided. object is the Follow (id).
3815 const fo = act.object;
3816 const followId = typeof fo === 'string' ? fo : (fo && fo.id);
3817 if (!followId) return false;
3818 const pending = Guardianship.follows.getPending(followId);
3819 if (!pending) return false;
3820 const allGuardians = Guardianship.listGuardians(pending.ward_slug).map((g) => g.other_uri);
3821 if (!allGuardians.includes(actorUri)) return false; // only a real guardian of this ward decides
3822 const decision = type === 'Reject' ? 'reject' : 'approve';
3823 // §3.5: the quorum runs over the AVAILABLE set. The voter itself was
3824 // restored by the one-answer rule when its activity arrived, so answering
3825 // is exactly what counts a guardian back in.
3826 const guardians = Guardianship.availability.availableSet(pending.ward_slug, allGuardians, Date.now());
3827 const r = Guardianship.follows.decide(followId, actorUri, decision, guardians);
3828 try {
3829 if (r.outcome === 'approved') { await acceptGatedFollow(r.follow); Guardianship.follows.remove(followId); }
3830 else if (r.outcome === 'rejected') { await rejectGatedFollow(r.follow); Guardianship.follows.remove(followId); }
3831 } catch { /* delivery is retried */ }
3832 return true;
3833}
3834
3835// Leg 3: a guardian in /guardian decides on a forwarded follow; send the
3836// Accept/Reject back to the ward's inbox (signed by the guardian).
3837export async function sendFollowDecision(guardianSite, review, decision) {
3838 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
3839 const me = actorId(base, guardianSite.slug);
3840 const keys = getOrCreateKeys(guardianSite.slug);
3841 const fo = review.follow_json ? JSON.parse(review.follow_json) : { id: review.id, type: 'Follow', actor: review.follower_uri, object: review.ward_uri };
3842 const activity = { '@context': AP_CONTEXT, id: `${me}#followdec-${Date.now()}-${rid()}`, type: decision === 'reject' ? 'Reject' : 'Accept', actor: me, to: [review.ward_uri], object: fo, 'shaer:followApproval': true };
3843 if (review.ward_inbox) await deliverWithRetry(guardianSite.slug, review.ward_inbox, activity, `${me}#main-key`, keys.private_pem);
3844 return { ok: true };
3845}
3846
3847// Send a Like or Announce (boost) on a remote note FROM this site.
3848export async function sendInteraction(site, kind, targetNoteId, authorUri) {
3849 const _mv = movedRefusal(site, `interaction:${kind}`); if (_mv) return _mv;
3850 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
3851 if (!base || !site || !site.slug || !targetNoteId) return { error: 'config' };
3852 const me = actorId(base, site.slug);
3853 const keys = getOrCreateKeys(site.slug);
3854 // 'unboost' = Undo(Announce): retracts a boost so followers' servers remove the
3855 // reblog (matched on actor+object — no record of the original Announce needed).
3856 const fanout = (kind === 'boost' || kind === 'unboost'); // also goes to our followers
3857 const followersCol = `${me}/followers`;
3858 // Address the original author in cc so their server (Mastodon, WordPress/ActivityPub, …)
3859 // attributes the boost to their post and notifies them — without this, a shared-inbox
3860 // receiver has nothing to route the Announce to. Non-fragment activity ids + a `published`
3861 // stamp keep us aligned with what Mastodon emits.
3862 const audience = authorUri ? [followersCol, authorUri] : [followersCol];
3863 let act;
3864 if (kind === 'unboost' || kind === 'unlike') {
3865 // Undo(Announce) retracts a boost; Undo(Like) un-favourites (matched on actor+object,
3866 // no record of the original activity needed — Mastodon honours both).
3867 const inner = kind === 'unboost' ? 'Announce' : 'Like';
3868 act = {
3869 '@context': AP_CONTEXT,
3870 id: `${me}/undo/${Date.now()}-${rid()}`, type: 'Undo', actor: me,
3871 object: { id: `${me}/${inner.toLowerCase()}/${Date.now()}-${rid()}`, type: inner, actor: me, object: targetNoteId },
3872 };
3873 if (kind === 'unboost') { act.to = [PUBLIC]; act.cc = audience; }
3874 } else {
3875 const type = kind === 'boost' ? 'Announce' : 'Like';
3876 act = {
3877 '@context': AP_CONTEXT,
3878 id: `${me}/${type.toLowerCase()}/${Date.now()}-${rid()}`,
3879 type, actor: me, object: targetNoteId,
3880 };
3881 if (type === 'Announce') { act.published = new Date().toISOString(); act.to = [PUBLIC]; act.cc = audience; }
3882 }
3883 const inboxes = new Set();
3884 // Author first, via their PERSONAL inbox (not the shared one) so a multi-user receiver
3885 // routes the Announce/Like to the right post unambiguously.
3886 if (authorUri) { const a = await fetchActor(authorUri).catch(() => null); if (a) inboxes.add(a.inbox || (a.endpoints && a.endpoints.sharedInbox)); }
3887 if (fanout) { for (const f of fStmts().list.all(site.slug)) inboxes.add(f.shared_inbox || f.inbox); }
3888 // Queue each delivery (immediate attempt + backoff retries on failure via ap_delivery)
3889 // instead of a single fire-and-forget POST, so a transient hiccup at the receiver doesn't
3890 // silently lose the boost — same durability a new post (deliverCreate) already gets.
3891 let queued = 0;
3892 for (const inbox of [...inboxes].filter(Boolean)) { deliverWithRetry(site.slug, inbox, act, `${me}#main-key`, keys.private_pem); queued++; }
3893 console.log('[AP]', kind, site.slug, '→', targetNoteId, 'queued', queued, 'inbox(es)');
3894 return { ok: true, delivered: queued };
3895}
3896
3897// Notifications inbox: new followers + replies/likes/boosts on this site's posts.
3898export function getNotifications(slug, limit) {
3899 // Per-source cap scales with the requested limit so Messages can page deep
3900 // (Load more). Bounded so a huge offset can't ask for unbounded rows.
3901 const L = Math.min(1000, Math.max(80, limit || 60));
3902 const out = [];
3903 try {
3904 for (const f of db.prepare('SELECT actor_uri, created_at FROM ap_followers WHERE slug = ? ORDER BY created_at DESC LIMIT ?').all(slug, L)) {
3905 out.push({ type: 'follow', handle: deriveHandle(f.actor_uri), url: f.actor_uri, created_at: f.created_at });
3906 }
3907 } catch { /* ignore */ }
3908 try {
3909 const rows = db.prepare(`
3910 SELECT i.id AS interaction_id, i.kind, i.actor_uri, i.actor_name, i.actor_handle, i.actor_url, i.actor_icon, i.content, i.created_at, i.published, i.visibility,
3911 i.emoji_json, i.actor_emoji_json, i.media_json, i.quote_json, i.embed_json,
3912 p.slug AS post_slug, p.title AS post_title
3913 FROM ap_interactions i LEFT JOIN posts p ON p.id = i.post_id
3914 WHERE p.site_id = (SELECT id FROM sites WHERE slug = ?)
3915 ORDER BY i.created_at DESC LIMIT ?
3916 `).all(slug, L);
3917 for (const r of rows) out.push({
3918 type: r.kind, name: r.actor_name, handle: r.actor_handle, url: r.actor_url, icon: r.actor_icon,
3919 // Waar een antwoord uit de draad heen moet: het id is de parent voor
3920 // deliverReply, de uri het adres voor een direct bericht.
3921 interactionId: r.interaction_id, actorUri: r.actor_uri,
3922 content: stripLeadingMentions(r.content), post_slug: r.post_slug, post_title: r.post_title, created_at: r.created_at,
3923 // When the post was written, for display. created_at (when it reached us)
3924 // stays the sort key and the unread watermark: a note that federated late
3925 // is still new to you.
3926 published: r.published,
3927 emoji_json: r.emoji_json, actor_emoji_json: r.actor_emoji_json, // FEP-9098 (messages render)
3928 media_json: r.media_json, quote_json: r.quote_json, embed_json: r.embed_json, // rendered like a Krant post
3929 // followers/direct = a private message to the owner (not on the public thread) → 🔒 in Messages
3930 visibility: r.visibility || 'public',
3931 });
3932 } catch { /* ignore */ }
3933 try {
3934 for (const r of db.prepare('SELECT actor_uri, actor_name, actor_handle, actor_icon, content, objects, created_at FROM ap_reports WHERE slug = ? ORDER BY created_at DESC LIMIT ?').all(slug, L)) {
3935 // The reported objects: our own notes resolve to post links so the owner
3936 // sees WHICH post the report is about; other URIs (e.g. the actor itself)
3937 // are skipped — the report row already names the account.
3938 const about = [];
3939 try {
3940 for (const u of JSON.parse(r.objects || '[]')) {
3941 const m = String(u).match(/\/ap\/notes\/([^/?#]+)/);
3942 if (!m) continue;
3943 const p = db.prepare('SELECT slug, title FROM posts WHERE id = ?').get(decodeURIComponent(m[1]));
3944 if (p) about.push({ slug: p.slug, title: p.title || p.slug });
3945 }
3946 } catch { /* malformed objects json → no links */ }
3947 out.push({ type: 'report', name: r.actor_name, handle: r.actor_handle, url: r.actor_uri, icon: r.actor_icon, content: r.content, objects: about, created_at: r.created_at });
3948 }
3949 } catch { /* ignore */ }
3950 try {
3951 for (const r of db.prepare(`SELECT object_uri, note_url, actor_uri, actor_name, actor_handle, actor_icon, actor_url, content, wave, help_request, created_at, published,
3952 emoji_json, actor_emoji_json, media_json, quote_json, embed_json
3953 FROM ap_mentions WHERE slug = ? ORDER BY created_at DESC LIMIT ?`).all(slug, L)) {
3954 out.push({ type: 'mention', name: r.actor_name, handle: r.actor_handle, url: r.actor_url || r.actor_uri, icon: r.actor_icon, content: stripLeadingMentions(r.content), note_url: r.note_url || r.object_uri, wave: r.wave ? 1 : 0, help_request: r.help_request ? 1 : 0, actorUri: r.actor_uri, created_at: r.created_at, published: r.published,
3955 // Same trimmings a Krant row has, so Berichten renders the post identically.
3956 emoji_json: r.emoji_json, actor_emoji_json: r.actor_emoji_json, media_json: r.media_json, quote_json: r.quote_json, embed_json: r.embed_json });
3957 }
3958 } catch { /* ignore */ }
3959 // Your own polls that have closed → a "results are in" item, derived read-time
3960 // from poll_json (Scheduler marks closed=1) with the tally via ownPollView.
3961 try {
3962 const site = db.prepare('SELECT id FROM sites WHERE slug = ?').get(slug);
3963 if (site) {
3964 const polls = db.prepare(`
3965 SELECT id, slug, title, poll_json FROM posts
3966 WHERE site_id = ? AND poll_json IS NOT NULL
3967 AND json_extract(poll_json, '$.closed') = 1
3968 AND json_extract(poll_json, '$.endTime') IS NOT NULL
3969 ORDER BY json_extract(poll_json, '$.endTime') DESC LIMIT 20`).all(site.id);
3970 for (const p of polls) {
3971 const view = ownPollView(p);
3972 if (!view) continue;
3973 let endTime = null; try { endTime = JSON.parse(p.poll_json).endTime; } catch { /* keep null */ }
3974 out.push({ type: 'poll_done', post_slug: p.slug, post_title: p.title, poll: view, created_at: endTime || null });
3975 }
3976 }
3977 } catch { /* ignore */ }
3978 // NaN-safe sort: one row with a missing/garbled created_at would otherwise make the
3979 // comparator return NaN and scramble the WHOLE ordering (seen live: follow rows landing
3980 // between likes, which also broke Messages' like-grouping).
3981 out.sort((a, b) => _msgTs(b) - _msgTs(a));
3982 return out.slice(0, limit || 60);
3983}
3984function _msgTs(x) { const t = Date.parse((x && x.created_at) || ''); return Number.isFinite(t) ? t : 0; }
3985
3986// ── Blocking / defederation ───────────────────────────────────────
3987// Extracted to BlocklistService (shared: Klonkt's Block tab + Shaer's "in
3988// Orbit"). Thin delegations keep every existing caller working.
3989export function listBlocks(slug) { return Blocklist.listBlocks(slug); }
3990
3991// True if an actor (or its whole domain) is blocked anywhere on this instance.
3992
3993// Report a remote post or account to its home instance (moderation). Sends the Mastodon-standard
3994// AS2 `Flag`: object = [reported account, reported status?], content = the reason, delivered to the
3995// reported account's inbox so their instance's moderators receive it. objectUri = a post URL (its
3996// author is resolved + included) OR pass actorUri to report an account directly.
3997export async function sendReport(site, { objectUri, actorUri, reason }) {
3998 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
3999 if (!base || !site || !site.slug) return { error: 'config' };
4000 let targetActor = actorUri || null;
4001 let noteUri = null;
4002 if (objectUri && /^https?:\/\//i.test(objectUri)) {
4003 const note = await apGetJson(objectUri).catch(() => null);
4004 if (note && note.id) { noteUri = note.id; if (!targetActor) targetActor = actorUriOf(note.attributedTo); }
4005 else if (!targetActor) return { error: 'not_found' };
4006 }
4007 if (!targetActor || !/^https?:\/\//i.test(targetActor)) return { error: 'not_found' };
4008 const actor = await fetchActor(targetActor).catch(() => null);
4009 const inbox = actor && (actor.inbox || (actor.endpoints && actor.endpoints.sharedInbox)); // personal inbox → their moderators
4010 if (!inbox) return { error: 'unreachable' };
4011 const me = actorId(base, site.slug);
4012 const keys = getOrCreateKeys(site.slug);
4013 const object = [targetActor];
4014 if (noteUri && noteUri !== targetActor) object.push(noteUri);
4015 const flag = {
4016 '@context': AP_CONTEXT,
4017 id: `${me}#report-${Date.now()}-${rid()}`,
4018 type: 'Flag',
4019 actor: me,
4020 content: String(reason == null ? '' : reason).slice(0, 3000),
4021 object, // [account, status?] — Mastodon's Flag shape
4022 to: [targetActor],
4023 };
4024 deliverWithRetry(site.slug, inbox, flag, `${me}#main-key`, keys.private_pem);
4025 return { ok: true };
4026}
4027
4028export function isBlockedAny(actorUri) { return Blocklist.isBlockedAny(actorUri); }
4029
4030// Block an actor (@handle or actor URL) or a whole domain; purges their content.
4031// The handle resolver is ours; the storage/purge lives in BlocklistService.
4032//
4033// De BEZORGING hoort ook hier: BlocklistService kent de database, niet het
4034// afleveren. Een Block gaat naar de inbox van wie je blokkeert, een
4035// Undo(Block) bij het opheffen -- zonder retry-wachtrij, want een blokkade
4036// wacht niet op een server die even plat ligt (en bij opheffen komt de ander
4037// vanzelf weer langs).
4038async function bezorgBlokkade(site, target, undo) {
4039 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
4040 const me = actorId(base, site.slug);
4041 const blok = { id: `${me}#block-${Date.now()}-${rid()}`, type: 'Block', actor: me, object: target, to: [target] };
4042 const activiteit = undo
4043 ? { '@context': AP_CONTEXT, id: `${me}#unblock-${Date.now()}-${rid()}`, type: 'Undo', actor: me, object: blok, to: [target] }
4044 : { '@context': AP_CONTEXT, ...blok };
4045 const r = await deliverToActor(site, target, activiteit);
4046 console.log('[AP]', undo ? 'Undo(Block)' : 'Block', site.slug, '→', target, r && r.delivered ? 'bezorgd' : 'niet bezorgd');
4047}
4048
4049export async function blockTarget(site, input) { return Blocklist.blockTarget(site, input, webfingerResolve, bezorgBlokkade); }
4050
4051export function unblock(site, target) { return Blocklist.unblock(site, target, bezorgBlokkade); }
4052
4053// ── Guardianship module wiring (src/services/guardianship/) ────────
4054// The module owns FEP-633c (context, relations, handshake, queues, the
4055// direct-note leg); we hand it our AP helpers ONCE and delegate. It never
4056// imports us back.
4057function selfActorId(slug) {
4058 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
4059 return actorId(base, slug);
4060}
4061// Deliver one activity to one actor's inbox, signed; queued + retried on any
4062// hiccup so a slow or briefly-down ward server never loses the offer. Returns
4063// { delivered, inbox }: delivered=false means the account could not be
4064// resolved at all (a bad handle) — the offer stays recorded regardless.
4065export async function deliverToActor(site, actorUri, activity) {
4066 const me = selfActorId(site.slug);
4067 const keys = getOrCreateKeys(site.slug);
4068 const payload = { '@context': AP_CONTEXT, ...activity };
4069 // Co-location is a TRANSPORT detail, never a decision path (Robins regel,
4070 // 29-7). An inbox on this machine is not reachable over HTTP from this
4071 // machine, and should not be, so a local recipient is handed the activity
4072 // straight into the same inbox handler the wire would reach. Everything
4073 // above this line therefore behaves as if every Klonkt were remote: one code
4074 // path, exercised by every deployment, including the checks. Two bugs in one
4075 // day came from having a second, local-only path that hid a broken remote
4076 // one.
4077 const localSlug = localSlugOf(actorUri);
4078 if (localSlug && db.prepare('SELECT 1 FROM sites WHERE slug = ?').get(localSlug)) {
4079 const host = (() => { try { return new URL(selfActorId(site.slug)).host; } catch { return ''; } })();
4080 const req = { body: payload, ip: 'loopback', protocol: 'https', get: () => host, headers: {} };
4081 // The signer is us, and we say so: the actor-versus-signer check runs
4082 // exactly as it does over the wire, so a mismatch fails here too.
4083 const status = await handleInbox(req, localSlug, { id: me }).catch(() => 500);
4084 const ok = status >= 200 && status < 300;
4085 console.log('[AP]', activity.type, ok ? 'delivered (loopback) →' : `got ${status} (loopback) from`, actorUri);
4086 return { delivered: ok, inbox: `${actorUri}/inbox`, loopback: true, status };
4087 }
4088 const a = await fetchActor(actorUri).catch(() => null);
4089 const inbox = a && (a.inbox || (a.endpoints && a.endpoints.sharedInbox));
4090 if (!inbox) {
4091 console.warn('[AP] guardianship: could not resolve an inbox for', actorUri, '(offer recorded, not sent)');
4092 return { delivered: false, inbox: null };
4093 }
4094 try {
4095 const st = await deliver(inbox, payload, `${me}#main-key`, keys.private_pem);
4096 if (st >= 200 && st < 300) { console.log('[AP] guardianship', activity.type, 'delivered →', inbox, st); return { delivered: true, inbox }; }
4097 console.warn('[AP] guardianship', activity.type, 'got', st, 'from', inbox, '→ queued for retry');
4098 } catch (e) { console.warn('[AP] guardianship', activity.type, 'to', inbox, 'failed:', e.message, '→ queued for retry'); }
4099 enqueueDelivery(site.slug, inbox, payload);
4100 return { delivered: true, inbox }; // queued: the retry worker gets it there
4101}
4102Guardianship.wireDelivery({
4103 actorId, fetchActor, localActor, deliverTo: deliverToActor, deriveHandle, escHtml, linkUrls, linkHashtags,
4104 getOutboxRow: (id) => iStmts().getO.get(id),
4105 buildReplyNote, AP_CONTEXT, getOrCreateKeys, deliver, enqueueDelivery,
4106 // Rijke directe berichten: dezelfde sanitizer als deliverReply gebruikt, zodat
4107 // een antwoord uit Berichten door precies één poort gaat.
4108 sanitizeHtml: (h) => HtmlSanitizerService.sanitize(h),
4109 htmlToPlainText: (h) => HtmlSanitizerService.toPlainText(h),
4110});
4111/**
4112 * The actor document of a site WE host, read straight from the database.
4113 * Same shape fetchActor returns for anyone else, plus `local: true` so the
4114 * caller can take the loopback instead of a POST to our own hostname.
4115 * Null for an actor we do not host: that one really is fetched.
4116 */
4117function localActor(actorUri) {
4118 const slug = localSlugOf(actorUri);
4119 if (!slug) return null;
4120 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
4121 const site = db.prepare('SELECT * FROM sites WHERE slug = ?').get(slug);
4122 if (!site) return null;
4123 // primary_slug is what buildActor uses to pick '/' over '/user/<slug>'; the
4124 // actor route sets it the same way before building.
4125 const p = db.prepare('SELECT slug FROM sites WHERE is_primary = 1').get();
4126 try { return { ...buildActor(base, { ...site, primary_slug: p && p.slug }), local: true }; } catch { return null; }
4127}
4128// Which local site (if any) hosts this actor URI — used by the handshake to
4129// apply the local side of a commit and to derive a ward's existing guardians.
4130export function localSlugOf(actorUri) {
4131 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
4132 if (!actorUri || !actorUri.startsWith(`${base}/ap/users/`)) return null;
4133 const slug = slugFromActorUrl(actorUri);
4134 if (!slug) return null;
4135 try { return db.prepare('SELECT slug FROM sites WHERE slug = ?').get(slug) ? slug : null; }
4136 catch { return null; }
4137}
4138Guardianship.wireHandshake({
4139 selfId: selfActorId,
4140 localSlug: localSlugOf,
4141 deliverTo: deliverToActor,
4142 deriveHandle,
4143 fetchActor,
4144 // Guardian PWA / Berichten push. The kid answers an incoming offer in its
4145 // own Berichten; an existing guardian and a commit land in the PWA.
4146 //
4147 // De labels hangen aan dezelfde sleutels als het Guardian-paneel, zodat een
4148 // melding en het scherm waar hij heen wijst hetzelfde woord gebruiken.
4149 onEvent: (slug, ev) => onGuardianshipEvent(slug, ev),
4150});
4151
4152/**
4153 * Wat er gebeurt als de guardianship-module iets uitzendt.
4154 *
4155 * TWEE VERSCHILLENDE VRAGEN, en ze horen niet dezelfde te zijn: wie maak je
4156 * WAKKER (push kiest bewust een handvol soorten), en wat moet een scherm dat
4157 * openstaat WETEN (alles). Het paneel werd daarom voorheen niet gewekt door de
4158 * tien soorten zonder pushtekst -- die zag je pas bij de volgende tik.
4159 *
4160 * Apart en met een naam, zodat een toets erbij kan. Verstopt in de deps-literal
4161 * was hij onbereikbaar, en een mutatie die het wekken weghaalde bleef groen.
4162 */
4163/**
4164 * Hoeveel er van bewaard blijft. Een logboek dat oneindig groeit is een
4165 * logboek dat niemand meer opent, en dit is geschiedenis, geen archief: wat
4166 * ertoe doet staat vooraan.
4167 */
4168export const GUARDIAN_EVENT_KEEP = 200;
4169
4170/**
4171 * Leg de gebeurtenis vast VOOR de melding.
4172 *
4173 * De meldingstabel beslist wie er wakker van wordt, en dat is terecht een korte
4174 * lijst -- maar hij besliste daarmee ook wat er onthouden werd, en dat was niet
4175 * de bedoeling. Elf van de achttien soorten verdwenen spoorloos, met hun inhoud:
4176 * een geweigerd aanbod droeg de REDEN mee tot hier en niet verder, terwijl §4.2
4177 * eist dat de ward en zijn guardians die te horen krijgen.
4178 *
4179 * Vastleggen en melden zijn nu twee dingen. Alles komt in het logboek; alleen
4180 * wat een mens moet wekken gaat ook als push de deur uit.
4181 */
4182export function recordGuardianEvent(slug, ev) {
4183 if (!slug || !ev || !ev.kind) return;
4184 try {
4185 db.prepare('INSERT INTO ap_guardian_events (slug, kind, payload, created_at) VALUES (?,?,?,CURRENT_TIMESTAMP)')
4186 .run(slug, String(ev.kind), JSON.stringify(ev));
4187 db.prepare(`DELETE FROM ap_guardian_events WHERE slug = ? AND id NOT IN
4188 (SELECT id FROM ap_guardian_events WHERE slug = ? ORDER BY id DESC LIMIT ?)`)
4189 .run(slug, slug, GUARDIAN_EVENT_KEEP);
4190 } catch { /* een logboek mag nooit de gebeurtenis zelf breken */ }
4191}
4192
4193/** De laatste gebeurtenissen voor dit account, nieuwste eerst. */
4194export function listGuardianEvents(slug, limit = 50) {
4195 try {
4196 return db.prepare('SELECT id, kind, payload, created_at FROM ap_guardian_events WHERE slug = ? ORDER BY id DESC LIMIT ?')
4197 .all(slug, Math.max(1, Math.min(Number(limit) || 50, GUARDIAN_EVENT_KEEP)))
4198 .map((r) => ({ id: r.id, kind: r.kind, created: r.created_at, ...safeJson(r.payload) }));
4199 } catch { return []; }
4200}
4201
4202function safeJson(s) { try { return JSON.parse(s) || {}; } catch { return {}; } }
4203
4204export function onGuardianshipEvent(slug, ev) {
4205 recordGuardianEvent(slug, ev);
4206 wakeGuardian(slug);
4207 const p = guardianEventPush(slug, ev);
4208 if (p) pushEvent(slug, p);
4209 return p;
4210}
4211
4212/**
4213 * Welke melding hoort bij een guardianship-gebeurtenis, of geen.
4214 *
4215 * Apart en puur, omdat dit een BESLISSING is en geen bezorging: de
4216 * guardianship-module zendt veertien soorten uit en deze tabel bepaalt welke
4217 * daarvan een mens wakker maken. Dat hoort toetsbaar te zijn zonder web-push
4218 * erbij te halen.
4219 */
4220export function guardianEventPush(slug, ev) {
4221 const L = pushLang(slug);
4222 const texts = {
4223 offer_received: ['push.n_guard_offer_t', 'push.n_guard_offer_b'], // I am the ward
4224 offer_for_ward: ['push.n_guard_cog_t', 'push.n_guard_cog_b'], // I co-guard this ward
4225 committed: ['push.n_guard_ward_t', 'push.n_guard_ward_b'],
4226 // §3.2: a guardian ended the relation. The ward hears that someone who
4227 // was looking after them has gone; a co-guardian hears they are one fewer.
4228 guardian_left: ['push.n_guard_left_t', 'push.n_guard_left_b'],
4229 coguardian_left: ['push.n_guard_cogleft_t', 'push.n_guard_cogleft_b'],
4230 // 5.6 gated settings. Zonder deze twee is de hele tally stil: een guardian
4231 // hoort niet dat er een antwoord van hem gewenst is, en dus loopt het
4232 // venster leeg en verloopt het voorstel. Een drempel die niemand ziet is
4233 // geen drempel.
4234 gated_review: ['push.n_gate_ask_t', 'push.n_gate_ask_b'], // jij moet antwoorden
4235 gated_outcome: ['push.n_gate_done_t', 'push.n_gate_done_b'], // er is besloten
4236 }[ev.kind];
4237 if (!texts) return null;
4238 const who = deriveHandle(ev.candidate || ev.guardian || ev.ward || '') || '?';
4239 // Een gate-melding zonder te zeggen WELKE instelling is nutteloos: er zijn er
4240 // meer dan een, en ze betekenen heel verschillende dingen voor een kind.
4241 const wat = i18nT(L, GATE_LABEL[ev.feature] || 'guardian.prop_embeds');
4242 const stand = i18nT(L, ev.value ? 'guardian.prop_on' : 'guardian.prop_off');
4243 const uitkomst = i18nT(L, GATE_OUTCOME[ev.outcome] || 'guardian.prop_st_open');
4244 const url = (ev.kind === 'offer_received' || ev.kind === 'guardian_left') ? `${pushPrefix(slug)}/messages` : '/guardian';
4245 return { type: 'guardian', title: i18nT(L, texts[0]), body: i18nT(L, texts[1], { who, wat, stand, uitkomst }), url };
4246}
4247
4248// Van een gated feature naar het woord dat het Guardian-paneel er al voor
4249// gebruikt. Een onbekende feature valt terug op het algemene woord in plaats van
4250// de melding te laten vervallen: liever een iets vager bericht dan geen bericht.
4251const GATE_LABEL = {
4252 'shaer:externalEmbeds': 'guardian.prop_embeds',
4253 'shaer:externalPlayback': 'guardian.prop_play',
4254};
4255const GATE_OUTCOME = {
4256 accepted: 'guardian.prop_st_accepted',
4257 rejected: 'guardian.prop_st_rejected',
4258 expired: 'guardian.prop_st_expired',
4259};
4260
4261// The notification duty of FEP-633c 3.6.2, wired once for every place a
4262// dormancy promotion can happen (queue reads, fan-outs, tallies): marking a
4263// guardian dormant MUST notify it, in protocol AND over the §6 handle. The
4264// one-answer rule is worthless to someone who does not know an answer is
4265// wanted. The handle of a committed guardian is its inbox (§6 minimum), which
4266// is the same door this delivery knocks on; both attempts are logged.
4267Guardianship.wireAvailability({
4268 onDormant: (wardSlug, guardianUri) => {
4269 const base = (process.env.PUBLIC_BASE_URL || '').replace(/\/+$/, '');
4270 const site = db.prepare('SELECT * FROM sites WHERE slug = ?').get(wardSlug);
4271 if (!base || !site) return;
4272 const me = selfActorId(wardSlug);
4273 const note = {
4274 id: `${me}/dormant/${Date.now().toString(36)}${rid()}`,
4275 type: 'Note', attributedTo: me, to: [guardianUri],
4276 'shaer:dormant': true,
4277 content: '<p>You have been observed dormant as a guardian. Nothing is wrong and nothing is held against you: one answer restores everything (FEP-633c 3.6.2).</p>',
4278 };
4279 deliverToActor(site, guardianUri, { id: `${note.id}#create`, type: 'Create', actor: me, to: [guardianUri], object: note })
4280 .catch(() => { /* retried by the queue */ });
4281 console.log('[AP] guardian observed dormant (3.6.2):', guardianUri, 'ward', wardSlug, '(notified in protocol; the §6 handle is the same inbox)');
4282 },
4283});
4284
4285// De C2S-inname zijn werktuigen geven (stap 4, shaer-drc). Onderaan, zodat
4286// elke const hierboven al bestaat; een verzoek kan pas na deze evaluatie
4287// binnenkomen, dus de koppeling is altijd eerder dan de eerste aanroep.
4288wireC2S({
4289 proposeGate, deriveHandle, resolveRemoteNote, deliverReply, markRead,
4290 postIdFromNoteUrl, sendInteraction, setReaction, gateOutgoingFollow,
4291 followActor, unfollowActor, blockTarget, unblock, deliverDelete,
4292 deliverOutboxDelete, bakePostContent, bakePostContentWithMentions,
4293 deliverCreate,
4294});
4295// En de tijdlijn-leeskant zijn ene werktuig (stap 5): liked/boosted komen
4296// sinds stap 6 uit ap-reactions, maar de koppeling blijft HIER lopen -- twee
4297// zustermodules die elkaar importeren zou een kring zijn.
4298wireTimeline({ getReactionsFor });
4299// Het reactiecluster zijn ene werktuig (stap 6): de verhuisgrendel (FEP-7628).
4300wireReactions({ movedLock });
4301// De volgwinkel zijn zes werktuigen (stap 7): de verhuisweigering, de
4302// §5.3-poortwachter, de actorlezer, de id-staart en de twee bezorgers.
4303wireFollowing({ movedRefusal, gateOutgoingFollow, actorInfo, rid, backfillFromOutbox, deliverToActor });
4304// De peilingen hun vier werktuigen (stap 8): de Update-bezorging voor de
4305// telling, de id-staart, de verhuisweigering en de attributedTo-lezer.
4306wirePolls({ deliverUpdate, rid, movedRefusal, actorUriOf });
4307// De schakelkast (stap 9): de lijst is bewust lang -- hij is de kaart van wat
4308// de inbox aanraakt, en elke naam die eraf gaat is een cluster dat zelf
4309// verhuisd is.
4310wireInbox({
4311 actorInfo, actorUriOf, backfillFromOutbox, backfillNewFollower,
4312 belongsInTimeline, contentWarning, emojiJsonOf, fetchNoteAP,
4313 findThreadTarget, fStmts, handleFollowApprovalInbox, handleMoveInbox,
4314 isBlockedAny, isRejectedObject, iStmts, libraryOwnerSlug, localMentionSlugs,
4315 localPostExists, localSlugOf, mediaFromNote, noteVisibility,
4316 postIdFromNoteUrl, pushEvent, pushLang, pushPostCtx, pushPrefix,
4317 resolveCard, resolveExternalEmbed, resolveQuote, rid, slugFromActorUrl,
4318 storeAuthorEmoji, timelineFields, wakeGuardian,
4319});
4320
4321export default {
4322 movedLock,
4323 // FEP-1580 bronkant. Vergeet je hem hier, dan werpt elke route die hem
4324 // aanroept een 500 en lijkt het alsof de poort dicht staat terwijl hij
4325 // ontbreekt (precies hoe movedLock zich een dag eerder verstopte).
4326 isMoveTarget, signedGetJson, signedGetHeaders,
4327 AP_CONTEXT, getOrCreateKeys, apWants, sendAP, actorId, noteId, stripLeadingMentions, pagedCollection,
4328 deriveHandle, localSlugOf, outboxSlice, PAGINA_GROOTTE,
4329 buildActor, buildNote, buildCreate, buildOutbox, buildFollowers, buildFollowing, buildFeatured,
4330 channelUrls, channelCategory, timelineFields, guessMediaType,
4331 siteOpenTracks, openTrack, buildTrackAudio, buildTrackCollection, buildTrackCreate, trackHostPosts,
4332 buildPlaylistCollection, playlistOpenTracks, listPlaylistsAP, playlistLinkTags,
4333 buildPostTrackCollection, uitgavePost,
4334 buildLibrary, libraryId,
4335 followerCount, deliver, fetchActor, verifyRequest, handleInbox, deliverCreate, deliverDelete, deliverObjectDelete, deliverTrackDelete, deliverUpdate, deliverActorUpdate, resyncFeaturedPins,
4336 feedCursor, feedChangesSince, waitForFeedChange,
4337 getInteractions, getInteractionById, setInteractionBoosted, setInteractionLiked, buildReplyNote, getOutboxNote, getSentNotes, deliverReply, resolveRemoteNote, noteAudience, mayReadNote,
4338 listOutbox, deliverOutboxDelete, deliverOutboxUpdate, deliverDirectNote,
4339 webfingerResolve, followActor, resolveRemoteActor, unfollowActor, handleMoveInbox, moveAccount, listFollowing, setAutoBoost, backfillFromOutbox, getTimeline, timelineRowsByIds, contentWarning, getDirectMessages, readMarkers, markRead, unreadPerConversation, messageRowsByUri, replyRowsByUri, conversationHeads, conversationHistory, isoStamp, timelineAttachments, timelineEmojis, timelineObjectLinks, timelineQuote, timelineEmbed, applyQuoteProps, deliverToActor, sendInteraction, voteOnPoll, voteOnRemotePoll,
4340 acceptGatedFollow, rejectGatedFollow, isWardGuardian, outboxAudience, sendFollowDecision,
4341 gateOutgoingFollow, performApprovedFollow, recordGuardianEvent, listGuardianEvents, GUARDIAN_EVENT_KEEP,
4342 parseOwnPoll, pollTally, ownPollView, deliverPollUpdate, maybeCrawlThread, sendReport, localMentionSlugs, previewCard,
4343 autoBoostCount, boostedCount, setReaction, getReaction, getReactionsFor, canonicalReactionUri, migrateReactions, upsertBoostedNote, getCirkelPosts, getCirkelMembers, selfHealTimeline,
4344 getNotifications, listBlocks, isBlockedAny, blockTarget, unblock,
4345 deliverWithRetry, enqueueDelivery, processDeliveryQueue, startDeliveryWorker,
4346 sendMaybe304, etagFor, onGuardian, wakeGuardian, onGuardianshipEvent, proposeGate, getReplyUris, getThread, filterThreadToCircle, gateAttachments, stripEmojiTags, actorObject, previewObject, quoteObject, markNotificationsSeen, countUnseenNotifications, hasPlayableAudio,
4347 linkifyBody, bakePostContent, bakePostContentWithMentions, listFollowers, removeFollower, listConnections,
4348 noteVisibility, belongsInTimeline, playerUrlFor, isRejectedObject, rejectInteraction, interactionReportTarget,
4349 getMessages, notificationsSeenAt, ingestOutboxActivity, c2sVisibility, actorDisplay, buildActorRef, prefersEnriched, selfAuthor, getReplyMessages, onNews, wakeNews,
4350};
Note: See TracBrowser for help on using the repository browser.