import express from 'express'; import { v4 as uuid } from 'uuid'; import path from 'path'; import fs from 'fs'; import multer from 'multer'; import ejs from 'ejs'; import db from '../config/database.js'; import { POST_TYPES, KEUZE_TYPES } from '../config/post-types.js'; import { requireAuth, requireSiteManager, isViewer } from '../middleware/auth.js'; import { renderPage } from '../middleware/render.js'; import { recordPageview, recordPostView } from '../services/StatsService.js'; import PermissionsService from '../services/PermissionsService.js'; import MarkdownService from '../services/MarkdownService.js'; import HtmlSanitizerService from '../services/HtmlSanitizerService.js'; import AudioEmbedService from '../services/AudioEmbedService.js'; import PlaylistService from '../services/PlaylistService.js'; import { audioEnabled } from '../config/features.js'; import { audioUrl } from '../services/AudioStreamService.js'; import { toWebp } from '../services/ImageWebpService.js'; import VideoCoverService from '../services/VideoCoverService.js'; import ActivityPubService from '../services/ActivityPubService.js'; import * as Guardianship from '../services/guardianship/index.js'; import { premiumUnlocked } from '../services/PatreonService.js'; import { defaultMinCents as paidDefaultMinCents, patreonUrl as paidPatronUrl } from '../services/PaidPatreonService.js'; import { verifyBlob } from '../services/CryptoBox.js'; import { postEntry } from '../services/PostAccessService.js'; import MusicMeta from '../services/MusicMeta.js'; import { mediaDir } from '../config/paths.js'; const POST_IMAGES_DIR = mediaDir('POST_IMAGES_PATH', 'post-images'); fs.mkdirSync(POST_IMAGES_DIR, { recursive: true }); const ALLOWED_IMAGE_EXT = new Set(['.jpg', '.jpeg', '.png', '.webp', '.gif']); const MAX_IMAGE_BYTES = 10 * 1024 * 1024; // Rich replies: media dropped/pasted into the reply editor. Images, audio and // video, stored as-is (no transcode; a reply attachment is not a track). const REPLY_MEDIA_DIR = mediaDir('REPLY_MEDIA_PATH', 'reply-media'); fs.mkdirSync(REPLY_MEDIA_DIR, { recursive: true }); const ALLOWED_REPLY_MEDIA_EXT = new Set([ '.jpg', '.jpeg', '.png', '.webp', '.gif', '.mp3', '.m4a', '.ogg', '.opus', '.flac', '.wav', '.mp4', '.webm', '.mov', ]); const MAX_REPLY_MEDIA_BYTES = 32 * 1024 * 1024; const replyMediaUpload = multer({ storage: multer.diskStorage({ destination: (req, file, cb) => cb(null, REPLY_MEDIA_DIR), filename: (req, file, cb) => cb(null, `${uuid()}${path.extname(file.originalname).toLowerCase()}`), }), limits: { fileSize: MAX_REPLY_MEDIA_BYTES }, fileFilter: (req, file, cb) => { const ext = path.extname(file.originalname).toLowerCase(); if (!ALLOWED_REPLY_MEDIA_EXT.has(ext)) return cb(new Error('Media must be an image, audio or video file')); cb(null, true); }, }); const imageStorage = multer.diskStorage({ destination: (req, file, cb) => cb(null, POST_IMAGES_DIR), filename: (req, file, cb) => { const ext = path.extname(file.originalname).toLowerCase(); cb(null, `${uuid()}${ext}`); }, }); const imageUpload = multer({ storage: imageStorage, limits: { fileSize: MAX_IMAGE_BYTES }, fileFilter: (req, file, cb) => { const ext = path.extname(file.originalname).toLowerCase(); if (!ALLOWED_IMAGE_EXT.has(ext)) { return cb(new Error('Image must be jpg/png/webp/gif')); } cb(null, true); }, }); // Generates a unique slug within the site: 'title', 'title-2', 'title-3', … // A second post with the same title is NOT rejected ("already exists"), // but automatically gets a free suffix. exceptId = the post being updated // (allowed to keep its own slug). function uniqueSlug(siteId, base, exceptId = null) { let candidate = base; let n = 2; for (;;) { const row = exceptId ? db.prepare('SELECT id FROM posts WHERE site_id = ? AND slug = ? AND id != ?').get(siteId, candidate, exceptId) : db.prepare('SELECT id FROM posts WHERE site_id = ? AND slug = ?').get(siteId, candidate); if (!row) return candidate; candidate = `${base}-${n++}`; } } const router = express.Router(); // Feed page size for "Load more" (Solo, News, Messages, Cirkel). 72 is divisible // by 2/3/4 so every grid column count ends on a full row. const FEED_PAGE = 72; // ==================== UPLOAD IMAGE (cover or content) ==================== // Returns JSON {url} so the editor can stick it into the cover field or // insert a markdown  into content. router.post('/posts/upload-image', requireAuth, (req, res) => { imageUpload.single('image')(req, res, async (err) => { if (err) return res.status(400).json({ error: err.message }); if (!req.file) return res.status(400).json({ error: 'No file' }); const name = toWebp(req.file); const url = '/media/post-images/' + name; // An animated WebP cover → also make a muted loop MP4 (Safari plays it smoothly where the // animated WebP is janky on iOS). Best-effort; on failure we just return the still image. // The editor stores `video` in the hidden cover_video_url field for the cover. let video = null; try { const src = path.join(POST_IMAGES_DIR, name); if (VideoCoverService.isAnimatedWebp(src)) { const r = await VideoCoverService.animatedWebpToVideo(src, POST_IMAGES_DIR, path.basename(name, path.extname(name)) + '-v'); if (r) video = '/media/post-images/' + path.basename(r.videoPath); } } catch { /* keep the still image */ } res.json({ url, video, size: req.file.size, mime: req.file.mimetype }); }); }); // Rich replies: media for a reply (image/audio/video). Returns { url, mediaType, name } // exactly as the editor's attachments JSON wants it; deliverReply re-validates. router.post('/posts/upload-reply-media', requireSiteManager, (req, res) => { replyMediaUpload.single('media')(req, res, (err) => { if (err) return res.status(400).json({ error: err.message }); if (!req.file) return res.status(400).json({ error: 'No file' }); const mime = String(req.file.mimetype || ''); if (!/^(image|audio|video)\//.test(mime)) { try { fs.unlinkSync(req.file.path); } catch { /* best effort */ } return res.status(400).json({ error: 'Media must be an image, audio or video file' }); } res.json({ url: '/media/reply-media/' + req.file.filename, mediaType: mime, name: String(req.file.originalname || '').slice(0, 120), }); }); }); const RESERVED_SLUGS = new Set([ 'auth', 'admin', 'login', 'register', 'logout', 'archive', 'search', 'account', 'sites', 'comments', 'posts', 'media', 'audio', 'forum', 'tag', 'type', 'user', 'users', 'artiesten', 'leden', 'favorieten', 'feed.xml', 'atom.xml', 'sitemap.xml', 'manifest.webmanifest', 'sw.js', 'favicon.ico', 'favicon.svg', 'assets', 'authorize_interaction', 'fediverse', 'news', 'following', 'notifications', 'blocking', 'paid', 'push', 'guardian', // De meeslepende leesweergave. Gereserveerd // omdat een bericht met deze slug de route anders zou overschaduwen. 'read', ]); /** * Parse the form's `pinned` field into a non-negative integer rank. * Empty / undefined / NaN / negative → 0 (= not pinned). * Otherwise: integer rank (1 = top of pinned stack, 2 = below, ...). * * Multiple posts CAN share the same rank — UI shows them tiebroken by * published_at DESC. Saying #2 twice doesn't error, it just duplicates. * (We don't enforce uniqueness at this layer because race conditions and * "swap two ranks" workflows are easier without a UNIQUE constraint.) */ function parsePinnedRank(raw) { const n = parseInt(raw, 10); if (!Number.isFinite(n) || n < 0) return 0; return n; } // Poll durations offered in the editor (seconds) — the Mastodon set (5m … 7d). const POLL_DURATIONS = new Set([300, 1800, 3600, 21600, 43200, 86400, 259200, 604800]); // Parse the editor's poll fields into the poll_json we store on the post (which // buildNote federates as an AS2 Question). Returns null when no valid poll (< 2 // options or the poll checkbox is off). endTime is set from the chosen duration // (default 1 day) so the Scheduler can close it. function parsePollForm(body) { if (!body || !body.poll_enabled) return null; const raw = body.poll_option == null ? [] : (Array.isArray(body.poll_option) ? body.poll_option : [body.poll_option]); const options = []; const seen = new Set(); for (const o of raw) { const name = String(o == null ? '' : o).trim().slice(0, 100); if (!name) continue; const key = name.toLowerCase(); if (seen.has(key)) continue; seen.add(key); options.push({ name }); if (options.length >= 8) break; } if (options.length < 2) return null; const dur = parseInt(body.poll_duration, 10); const secs = POLL_DURATIONS.has(dur) ? dur : 86400; return JSON.stringify({ multiple: !!body.poll_multiple, options, endTime: new Date(Date.now() + secs * 1000).toISOString(), closed: false }); } // ==================== HOME (Posts list) ==================== router.get('/', (req, res) => { const site = res.locals.site; if (!site) { return renderPage(req, res, 'pages/welcome', { pageTitle: 'Welcome', bodyClass: 'on-special', }); } // Pinned first — ordered by their rank (1 = top, 2 = below, etc). // pinned column is now an integer rank: 0 = not pinned, 1+ = pinned at // that position. Older boolean usage where pinned was always 1 still // works because integer ranks 1, 2, 3 sort the same as a flat 1. const pinnedPosts = db.prepare(` SELECT p.*, u.username as author_username FROM posts p JOIN users u ON p.author_id = u.id WHERE p.site_id = ? AND p.status = 'published' AND p.pinned > 0 ORDER BY p.pinned ASC, p.published_at DESC `).all(site.id); // Regular posts: anything with pinned = 0. Paged in blocks of 72 (Load more). const append = req.query.append === '1'; const offset = Math.max(0, parseInt(req.query.offset, 10) || 0); const rows = db.prepare(` SELECT p.*, u.username as author_username FROM posts p JOIN users u ON p.author_id = u.id WHERE p.site_id = ? AND p.status = 'published' AND p.pinned = 0 ORDER BY p.published_at DESC LIMIT ? OFFSET ? `).all(site.id, FEED_PAGE + 1, offset); const hasMore = rows.length > FEED_PAGE; const posts = rows.slice(0, FEED_PAGE); const moreBase = res.locals.siteUrlBase || ''; if (append) { return renderPage(req, res, 'partials/home-append', { posts, hasMore, nextOffset: offset + FEED_PAGE, moreBase }); } recordPageview(site.id, req); // FEP-7628 slice 3: this account moved. A visitor who lands here deserves // the same signpost the fediverse gets — one big link to the new address. const movedTo = site.moved_to && /^https?:\/\//i.test(String(site.moved_to)) ? String(site.moved_to) : null; renderPage(req, res, 'pages/home', { pinnedPosts, posts, hasMore, nextOffset: offset + FEED_PAGE, moreBase, movedTo, movedToLabel: movedTo ? (ActivityPubService.actorDisplay(site.slug, movedTo).handle || movedTo) : null, pageTitle: site.title, socialDescr: site.description || site.tagline || '', bodyClass: 'on-home', }); }); // ==================== LEES (meeslepende tijdlijn) ==================== // // Eén bericht vult het scherm, de chrome schuift weg, en je scrollt voorbij de // rand naar het vorige of volgende. Naar bartoverkamp.nl, waar prev/next // schildwachten boven en onder het artikel staan en het overscrollen zelf de // navigatie is. // // De buren komen uit postNeighbors(), dezelfde die de gewone postpagina al // gebruikt -- dus "vorige" en "volgende" betekenen hier precies hetzelfde als // daar, ook voor gepinde berichten. // // ?partial=1 levert alleen het artikel, want dat is wat de schildwacht inruilt. router.get('/read/:slug?', (req, res, next) => { const site = res.locals.site; if (!site) return next(); // Zonder slug: het nieuwste bericht, zodat /read een ingang is en niet een // fout. Gepind eerst, net als op de voorpagina. const post = req.params.slug ? db.prepare(`SELECT p.*, u.username as author_username FROM posts p JOIN users u ON p.author_id = u.id WHERE p.site_id = ? AND p.slug = ?`).get(site.id, req.params.slug) : db.prepare(`SELECT p.*, u.username as author_username FROM posts p JOIN users u ON p.author_id = u.id WHERE p.site_id = ? AND p.status = 'published' ORDER BY (p.pinned = 0) ASC, p.pinned ASC, p.published_at DESC LIMIT 1`).get(site.id); if (!post) return next(); // Het besluit en het lijf komen uit één plek (PostAccessService). Een dichte // poort levert hier GEEN tekst op: die wordt niet eens gerenderd. const _u = req.query.u ? verifyBlob(String(req.query.u)) : null; const unlockedSlug = (_u && _u.purpose === 'unlocked' && _u.siteId === site.id) ? String(_u.post) : null; const entry = postEntry(post, { user: req.session?.user || null, site, unlockedSlug }, { renderBody: (p) => renderPostBodyHtml(site, p, req) }); if (entry.access === 'forbidden') return next(); const { newerPost, olderPost } = postNeighbors(site, post); const model = { post, entry, newerPost, olderPost, pageTitle: post.title || site.title, // on-read zet de chrome weg; de mini-topnav blijft (chrome.ejs, _headerless). bodyClass: 'on-read on-special', pageJs: 'read', }; if (req.query.partial === '1' || req.headers['hx-request'] === 'true') { return renderPage(req, res, 'partials/read-article', model); } recordPageview(site.id, req); return renderPage(req, res, 'pages/read', model); }); // ==================== NEW POST FORM ==================== router.get('/posts/new', requireAuth, (req, res) => { const site = res.locals.site; if (!site) return res.status(404).send('Site required'); if (!PermissionsService.canCreatePost(req.session.user, site)) { return res.status(403).send('No permission'); } renderPage(req, res, 'pages/post-edit', { // post-edit neemt de playlist-editor op. pageJs: 'post-edit playlist-editor', post: { id: uuid(), title: '', slug: '', content: '', excerpt: '', status: 'draft', pinned: 0, tags: [], cover_image_url: '', }, isNew: true, keuzeTypes: KEUZE_TYPES, pageTitle: 'New post', bodyClass: 'on-special', }); }); // ==================== CREATE POST ==================== // ── Per-post audio federation ────────────────────────────────────────────── // "Share audio on the fediverse" is a per-post choice in the editor, but the underlying // flag is per track (audio_tracks.fedi_open — it gates the file + drives the AS2 Audio // attachment). NB: the file gate is per file, so opening a track in one post makes its file // fetchable for every post that reuses it. // ONE-WAY: opening is permanent. Once the file has federated it's out there — re-gating // would be false security (remote copies keep the URL), so we never write fedi_open back to 0. function setAudioFediOpen(siteId, content, open) { if (!open) return; // never close — see one-way note above const c = content || ''; try { for (const m of c.matchAll(/\[\[track:([A-Za-z0-9_-]+)\]\]/g)) db.prepare('UPDATE audio_tracks SET fedi_open = 1 WHERE id = ? AND site_id = ?').run(m[1], siteId); for (const m of c.matchAll(/\[\[album:([^\]]+)\]\]/g)) db.prepare('UPDATE audio_tracks SET fedi_open = 1 WHERE site_id = ? AND album = ?').run(siteId, m[1].trim()); // playlists.id is a GLOBAL key, so the site filter has to sit on the tracks: without it a // post on site A embedding site B's playlist would open B's files — permanently. for (const m of c.matchAll(/\[\[playlist:([A-Za-z0-9_-]+)\]\]/g)) db.prepare('UPDATE audio_tracks SET fedi_open = 1 WHERE site_id = ? AND id IN (SELECT track_id FROM playlist_tracks WHERE playlist_id = ?)').run(siteId, m[1]); } catch { /* non-fatal */ } } // True when the post references hosted audio AND all of it is currently fedi_open (drives the // editor checkbox's initial state). function postAudioFediOpen(siteId, content) { const c = content || ''; if (!/\[\[(track|album|playlist):/i.test(c)) return false; let total = 0, open = 0; const tally = (r) => { if (r && r.media_id) { total++; if (r.fedi_open) open++; } }; try { for (const m of c.matchAll(/\[\[track:([A-Za-z0-9_-]+)\]\]/g)) tally(db.prepare('SELECT fedi_open, media_id FROM audio_tracks WHERE id = ? AND site_id = ?').get(m[1], siteId)); for (const m of c.matchAll(/\[\[album:([^\]]+)\]\]/g)) for (const r of db.prepare('SELECT fedi_open, media_id FROM audio_tracks WHERE site_id = ? AND album = ? AND media_id IS NOT NULL').all(siteId, m[1].trim())) tally(r); for (const m of c.matchAll(/\[\[playlist:([A-Za-z0-9_-]+)\]\]/g)) for (const r of db.prepare('SELECT t.fedi_open, t.media_id 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').all(m[1])) tally(r); } catch { /* non-fatal */ } return total > 0 && open === total; } // Bake + cache a post's display HTML (ActivityPub `source` model): `content` stays the raw // source (used by the editor + re-rendering), content_rendered holds the linkified render the // page serves. Called after every create/edit. Non-fatal: the render route falls back to // baking on the fly if this ever fails. function cacheRenderedContent(postId, rawContent) { const raw = rawContent || ''; // 1. Immediate + synchronous: bake #hashtags + URLs so the post renders enriched at once. try { db.prepare('UPDATE posts SET content_rendered = ? WHERE id = ?') .run(ActivityPubService.bakePostContent(raw), postId); } catch (e) { /* fallback bake in the render route keeps display correct */ } // 2. Async: resolve @mentions (webfinger, once) and re-store, WITHOUT blocking the save // response — a moment later the post's @mentions are clickable too. A slow/dead remote // server can't stall the save; on failure the sync bake from step 1 stands. ActivityPubService.bakePostContentWithMentions(raw) .then((html) => { try { db.prepare('UPDATE posts SET content_rendered = ? WHERE id = ?').run(html, postId); } catch (e) { /* keep the sync bake */ } }) .catch(() => { /* keep the sync bake */ }); } router.post('/posts/create', requireAuth, (req, res) => { const site = res.locals.site; if (!site || !PermissionsService.canCreatePost(req.session.user, site)) { return res.status(403).send('No permission'); } // Verhuisd = niet meer schrijven. Dit moet HIER staan en niet pas bij // deliverCreate: die weigert alleen de bezorging, waarna de post gewoon in de // database belandt met een object-URI op een adres dat je hebt opgezegd. Dan // lijkt het gelukt, staat het er, en sterft het met het domein. Precies de // halve toestand die dit slot moet voorkomen. if (ActivityPubService.movedLock(site).locked) { return res.status(409).send('Dit account is verhuisd naar ' + ActivityPubService.movedLock(site).movedTo + '. Nieuwe berichten maak je daar. Wil je terug? Maak het verhuisadres leeg bij Uiterlijk.'); } const { title, slug, content, excerpt, status, pinned, cover_image_url, tags, noindex, type } = req.body; const fanOnly = req.body.fan_only ? 1 : 0; const paid = (premiumUnlocked() && req.body.paid) ? 1 : 0; // paid posts (klonkt-demo-aki) const paidEur = String(req.body.paid_min_eur || '').replace(',', '.').trim(); const paidMinCents = paid && paidEur ? Math.round(parseFloat(paidEur) * 100) : null; const nsfw = req.body.nsfw ? 1 : 0; const cw = (req.body.content_warning || '').trim().slice(0, 200); const coverAlt = (req.body.cover_alt || '').trim().slice(0, 1500) || null; // cover alt text (a11y) const language = /^[a-z]{2,3}(-[A-Za-z]{2,4})?$/.test(req.body.language || '') ? req.body.language : (res.locals.lang || null); // BCP-47 content language // Content arrives as user-authored HTML from the WYSIWYG editor — sanitize // before storage. Shortcode text tokens like [[track:UUID]] live in text // nodes and pass through untouched. const cleanContent = HtmlSanitizerService.sanitize(content || ''); // Generate slug from title if empty let finalSlug = (slug || title || '') .toLowerCase() .replace(/[^a-z0-9]+/g, '-') .replace(/^-|-$/g, ''); if (!finalSlug) return res.status(400).send('Title or slug required'); if (RESERVED_SLUGS.has(finalSlug)) finalSlug = `${finalSlug}-post`; // Duplicate title/slug? Make it unique automatically (title-2, title-3, …) instead of rejecting. finalSlug = uniqueSlug(site.id, finalSlug); const finalType = POST_TYPES.has(type) ? type : 'post'; const pollJson = parsePollForm(req.body); // AS2 Question definition, or null const postId = uuid(); const now = new Date().toISOString(); let finalStatus = status || 'draft'; let publishedAt = finalStatus === 'published' ? now : null; // Release planning: published + a future publish_at -> 'scheduled' // (the Scheduler makes it live at that moment). Past/empty -> live immediately. let publishAt = null; const pa = Date.parse(req.body.publish_at || ''); if (req.body.schedule_enabled && finalStatus === 'published' && Number.isFinite(pa) && pa > Date.now()) { finalStatus = 'scheduled'; publishAt = new Date(pa).toISOString(); publishedAt = null; } db.prepare(` INSERT INTO posts ( id, site_id, slug, author_id, title, content, excerpt, status, cover_image_url, cover_video_url, cover_alt, language, pinned, tags, type, noindex, fan_only, nsfw, content_warning, poll_json, publish_at, created_at, updated_at, published_at ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) `).run( postId, site.id, finalSlug, req.session.user.id, title || finalSlug, cleanContent, excerpt || '', finalStatus, cover_image_url || null, (req.body.cover_video_url || null), coverAlt, language, parsePinnedRank(pinned), JSON.stringify((tags || '').split(',').map(t => t.trim()).filter(Boolean)), finalType, noindex ? 1 : 0, fanOnly, nsfw, cw, pollJson, publishAt, now, now, publishedAt ); cacheRenderedContent(postId, cleanContent); // bake display HTML (ActivityPub `source` model) db.prepare('UPDATE posts SET paid = ?, paid_min_cents = ? WHERE id = ?').run(paid, paidMinCents, postId); // Per-post "share audio on the fediverse" → set fedi_open on this post's hosted tracks // BEFORE federating, so the Create note carries the right Audio attachments. setAudioFediOpen(site.id, cleanContent, req.body.fedi_open_audio); if (finalStatus === 'published') { try { db.prepare( 'INSERT INTO posts_fts(content, title, author, post_id) VALUES (?, ?, ?, ?)' ).run(HtmlSanitizerService.toPlainText(cleanContent), title || '', req.session.user.username, postId); } catch (e) { /* FTS index issues are non-fatal */ } // ActivityPub: federate a freshly published post to followers. fan_only → delivered // to followers but addressed followers-only (option A: "fans" = your fedi followers). if (status === 'published') { ActivityPubService.deliverCreate(site, { id: postId, slug: finalSlug, title: title || finalSlug, content: cleanContent, cover_image_url: cover_image_url || null, cover_video_url: req.body.cover_video_url || null, cover_alt: coverAlt, language, published_at: publishedAt, created_at: now, fan_only: fanOnly, paid, paid_min_cents: paidMinCents, excerpt: excerpt || '', nsfw, content_warning: cw, poll_json: pollJson, }).catch(() => { /* best-effort */ }); } } // HTMX request -> return redirect header if (req.headers['hx-request']) { res.setHeader('HX-Redirect', `${res.locals.siteUrlBase || ''}/${finalSlug}`); return res.send('OK'); } res.redirect(`${res.locals.siteUrlBase || ''}/${finalSlug}`); }); // ==================== EDIT POST FORM ==================== router.get('/posts/:slug/edit', requireAuth, (req, res) => { const site = res.locals.site; if (!site) return res.status(404).send('Site required'); const post = db.prepare( 'SELECT * FROM posts WHERE site_id = ? AND slug = ?' ).get(site.id, req.params.slug); if (!post) return res.status(404).send('Post not found'); if (!PermissionsService.canEditPost(req.session.user, post, site)) { return res.status(403).send('No permission'); } if (post.tags) { try { post.tags = JSON.parse(post.tags); } catch { post.tags = []; } } else { post.tags = []; } // A poll with votes is frozen (options can't change) — flag it so the editor disables the poll fields. let pollLocked = false; try { pollLocked = !!(post.poll_json && db.prepare('SELECT 1 FROM poll_votes WHERE post_id = ? LIMIT 1').get(post.id)); } catch { /* ignore */ } renderPage(req, res, 'pages/post-edit', { // Zelfde modules als de nieuw-route hierboven: zonder deze regel laadt de // editor niet, en dan wist een opslag de post (shaer-5s1, de beet van 7-8). pageJs: 'post-edit playlist-editor', post, isNew: false, keuzeTypes: KEUZE_TYPES, pollLocked, fediOpenAudio: postAudioFediOpen(site.id, post.content), pageTitle: 'Edit: ' + (post.title || 'Untitled'), bodyClass: 'on-special', }); }); // ==================== SAVE POST ==================== router.post('/posts/:slug/save', requireAuth, (req, res) => { const site = res.locals.site; if (!site) return res.status(404).send('Site required'); const post = db.prepare( 'SELECT * FROM posts WHERE site_id = ? AND slug = ?' ).get(site.id, req.params.slug); if (!post) return res.status(404).send('Post not found'); if (!PermissionsService.canEditPost(req.session.user, post, site)) { return res.status(403).send('No permission'); } // Verhuisd: een BESTAANDE post bewerken mag nog -- daar wil je juist "ik ben // verhuisd naar ..." in kunnen zetten, en die URI bestaat al. Een concept // alsnog publiceren mag niet: dat is nieuwe inhoud op een adres dat je hebt // opgezegd. if (post.status !== 'published' && String(req.body.status || '') === 'published' && ActivityPubService.movedLock(site).locked) { return res.status(409).send('Dit account is verhuisd. Publiceren doe je op ' + ActivityPubService.movedLock(site).movedTo + '. Bestaande berichten bewerken kan hier wel.'); } const { title, content, excerpt, status, pinned, cover_image_url, tags, noindex, type } = req.body; const fanOnly = req.body.fan_only ? 1 : 0; const paid = (premiumUnlocked() && req.body.paid) ? 1 : 0; // paid posts (klonkt-demo-aki) const paidEur = String(req.body.paid_min_eur || '').replace(',', '.').trim(); const paidMinCents = paid && paidEur ? Math.round(parseFloat(paidEur) * 100) : null; const nsfw = req.body.nsfw ? 1 : 0; const cw = (req.body.content_warning || '').trim().slice(0, 200); const coverAlt = (req.body.cover_alt || '').trim().slice(0, 1500) || null; // cover alt text (a11y) const language = /^[a-z]{2,3}(-[A-Za-z]{2,4})?$/.test(req.body.language || '') ? req.body.language : (res.locals.lang || null); // BCP-47 content language const newSlug = req.body.slug; const action = req.body.action || 'save'; const finalType = POST_TYPES.has(type) ? type : (post.type || 'post'); // A poll that has already received votes is frozen (you can still edit the surrounding // post, but not the options) — changing options after votes would scramble the tally and // is disallowed on the fediverse too. Otherwise re-parse the poll form (add/remove/disable). const hasVotes = !!(post.poll_json && (() => { try { return db.prepare('SELECT 1 FROM poll_votes WHERE post_id = ? LIMIT 1').get(post.id); } catch { return false; } })()); const pollJson = hasVotes ? post.poll_json : parsePollForm(req.body); // Sanitize before storage — same pipeline as create. const cleanContent = HtmlSanitizerService.sanitize(content || ''); let finalSlug = post.slug; if (newSlug && newSlug !== post.slug) { const cleaned = newSlug.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-|-$/g, ''); const safe = RESERVED_SLUGS.has(cleaned) ? `${cleaned}-post` : cleaned; // Duplicate slug? Make it unique automatically instead of rejecting (own post may keep its slug). finalSlug = uniqueSlug(site.id, safe, post.id); } const now = new Date().toISOString(); let finalStatus = status || post.status; let publishedAt = post.published_at; if (action === 'publish') { finalStatus = 'published'; if (!publishedAt) publishedAt = now; } // Release planning: published + future publish_at -> 'scheduled'. let publishAt = null; const pa = Date.parse(req.body.publish_at || ''); if (req.body.schedule_enabled && finalStatus === 'published' && Number.isFinite(pa) && pa > Date.now()) { finalStatus = 'scheduled'; publishAt = new Date(pa).toISOString(); publishedAt = null; } db.prepare(` UPDATE posts SET title = ?, content = ?, excerpt = ?, status = ?, cover_image_url = ?, cover_video_url = ?, cover_alt = ?, language = ?, pinned = ?, tags = ?, type = ?, noindex = ?, fan_only = ?, nsfw = ?, content_warning = ?, poll_json = ?, publish_at = ?, slug = ?, published_at = ?, updated_at = ? WHERE id = ? `).run( title, cleanContent, excerpt, finalStatus, cover_image_url || null, (req.body.cover_video_url || null), coverAlt, language, parsePinnedRank(pinned), JSON.stringify((tags || '').split(',').map(t => t.trim()).filter(Boolean)), finalType, noindex ? 1 : 0, fanOnly, nsfw, cw, pollJson, publishAt, finalSlug, publishedAt, now, post.id ); cacheRenderedContent(post.id, cleanContent); // re-bake display HTML on edit (ActivityPub `source` model) db.prepare('UPDATE posts SET paid = ?, paid_min_cents = ? WHERE id = ?').run(paid, paidMinCents, post.id); // Per-post "share audio on the fediverse" → set fedi_open on this post's hosted tracks // BEFORE federating, so the Update/Create note carries the right Audio attachments. setAudioFediOpen(site.id, cleanContent, req.body.fedi_open_audio); // Update FTS try { db.prepare('DELETE FROM posts_fts WHERE post_id = ?').run(post.id); if (finalStatus === 'published') { db.prepare( 'INSERT INTO posts_fts(content, title, author, post_id) VALUES (?, ?, ?, ?)' ).run(HtmlSanitizerService.toPlainText(cleanContent), title || '', req.session.user.username, post.id); } } catch (e) { /* FTS issues non-fatal */ } // ActivityPub: federate edits to followers. A post that BECOMES published → // Create (new post); an already-published post that's edited → Update (so // Mastodon refreshes its cached copy). fan_only → followers-only (option A). if (finalStatus === 'published') { const apPost = { id: post.id, slug: finalSlug, title: title || finalSlug, content: cleanContent, cover_image_url: cover_image_url || null, cover_video_url: req.body.cover_video_url || null, cover_alt: coverAlt, language, published_at: publishedAt, created_at: post.created_at, fan_only: fanOnly, paid, paid_min_cents: paidMinCents, excerpt: excerpt || '', nsfw, content_warning: cw, poll_json: pollJson, }; // Op een verhuisd account mag een BESTAANDE post nog bewerkt worden -- daar // wil je juist "ik ben verhuisd naar ..." in kunnen zetten, en die URI // bestaat al. Wat niet mag is een concept alsnog publiceren: dat is nieuwe // inhoud op een adres dat je hebt opgezegd. deliverCreate/deliverUpdate // weigeren zelf ook, dit voorkomt alleen de lokale halve toestand. if (post.status !== 'published') ActivityPubService.deliverCreate(site, apPost).catch(() => { /* best-effort */ }); else ActivityPubService.deliverUpdate(site, apPost).catch(() => { /* best-effort */ }); } // Pin/unpin/reorder → push Add/Remove activities so followers' instances update the // pinned order immediately (reliable, unlike re-fetching the cached featured collection). if ((post.pinned || 0) !== parsePinnedRank(pinned)) { const unpinned = (post.pinned || 0) > 0 && parsePinnedRank(pinned) === 0 ? [post.id] : []; ActivityPubService.resyncFeaturedPins(site, unpinned).catch(() => { /* best-effort */ }); } res.redirect(`${res.locals.siteUrlBase || ''}/${finalSlug}`); }); // ==================== DELETE POST ==================== router.post('/posts/:slug/delete', requireAuth, (req, res) => { const site = res.locals.site; if (!site) return res.status(404).send('Site required'); const post = db.prepare( 'SELECT * FROM posts WHERE site_id = ? AND slug = ?' ).get(site.id, req.params.slug); if (!post) return res.status(404).send('Not found'); if (!PermissionsService.canDeletePost(req.session.user, post, site)) { return res.status(403).send('No permission'); } // ActivityPub: tell followers the post is gone (Delete + Tombstone) if it was // federated (any published post now federates — fan_only goes followers-only). // Fire before the row is removed — we still have post.id (= the Note id). if (post.status === 'published') { ActivityPubService.deliverDelete(site, post).catch(() => { /* best-effort */ }); } // Cascade: comments + FTS row, THEN the post itself. // FK constraints are ON (config/database.js), so a bare DELETE on posts // fails when comments still reference it. const cascade = db.transaction(() => { db.prepare('DELETE FROM comments WHERE post_id = ?').run(post.id); try { db.prepare('DELETE FROM posts_fts WHERE post_id = ?').run(post.id); } catch {} db.prepare('DELETE FROM posts WHERE id = ?').run(post.id); }); cascade(); if (req.headers['hx-request']) { res.setHeader('HX-Redirect', res.locals.siteUrlBase || '/'); return res.send('OK'); } res.redirect(res.locals.siteUrlBase || '/'); }); // ==================== ARCHIVE ==================== router.get('/archive', (req, res) => { const site = res.locals.site; if (!site) return res.status(404).send('No site'); const posts = db.prepare(` SELECT p.*, u.username as author_username FROM posts p JOIN users u ON p.author_id = u.id WHERE p.site_id = ? AND p.status = 'published' ORDER BY p.published_at DESC `).all(site.id); // Group by year/month const grouped = {}; for (const post of posts) { if (!post.published_at) continue; const d = new Date(post.published_at); const year = d.getFullYear(); const month = d.getMonth(); const monthName = ['januari','februari','maart','april','mei','juni','juli','augustus','september','oktober','november','december'][month]; if (!grouped[year]) grouped[year] = {}; if (!grouped[year][monthName]) grouped[year][monthName] = []; grouped[year][monthName].push(post); } renderPage(req, res, 'pages/archive', { grouped, totalPosts: posts.length, pageTitle: 'Archive - ' + site.title, bodyClass: 'on-archive', }); }); // Local likes/favourites are removed — engagement is fediverse-only now // (the ⭐ on a post likes via the fediverse). No post_likes, no /favorieten. // Newer/Older neighbours across ALL posts in feed order. Shared by the full // post render and the fan gate (premium fan_only) so navigation is consistent // everywhere. Solo: within the site (pinned first, then date). Hub: globally by date. // Renders a post's display HTML: baked content + the dynamic audio/embed layer. // Extracted so the paid unlock (slice 4) serves the exact same body as the page. export function renderPostBodyHtml(site, post, req) { let html = (post.content_rendered != null && post.content_rendered !== '') ? post.content_rendered : ActivityPubService.bakePostContent(post.content || ''); if (audioEnabled()) { if (site.enable_audio_player !== 0) { html = AudioEmbedService.autoembed(html); html = AudioEmbedService.embedMediaShortcodes(html); html = AudioEmbedService.embedExternalLinkShortcodes(html); // Fetch any tracks referenced by [[track:id]] in this post. // Cheap to do unconditionally — only matches if the post actually has shortcodes. const trackIds = [...html.matchAll(/\[\[track:([A-Za-z0-9_-]+)\]\]/g)].map(m => m[1]); if (trackIds.length) { const placeholders = trackIds.map(() => '?').join(','); const rows = db.prepare(` SELECT t.id, t.title, t.artist, t.cover_url, t.credit, t.license, t.link_spotify, t.link_youtube, t.link_soundcloud, m.filename FROM audio_tracks t LEFT JOIN media m ON m.id = t.media_id WHERE t.site_id = ? AND t.id IN (${placeholders}) `).all(site.id, ...trackIds); const byId = new Map(rows.map(r => [r.id, r])); html = AudioEmbedService.embedTrackShortcodes(html, (id) => { const r = byId.get(id); if (!r) return null; return { id: r.id, title: r.title, artist: r.artist, cover: r.cover_url, credit: r.credit || '', license: r.license || '', link_spotify: r.link_spotify || '', link_youtube: r.link_youtube || '', link_soundcloud: r.link_soundcloud || '', url: r.filename ? audioUrl(r.filename) : '', // '' = link-only track }; }); } // Album shortcodes: [[album:Some Album Name]] const albumNames = [...html.matchAll(/\[\[album:([^\]]+)\]\]/g)].map(m => m[1].trim()); if (albumNames.length) { const placeholders = albumNames.map(() => '?').join(','); const albumRows = db.prepare(` SELECT t.id, t.title, t.artist, t.album, t.cover_url, t.position, t.link_spotify, t.link_youtube, t.link_soundcloud, m.filename FROM audio_tracks t LEFT JOIN media m ON m.id = t.media_id WHERE t.site_id = ? AND t.album IN (${placeholders}) ORDER BY t.position ASC, t.created_at ASC `).all(site.id, ...albumNames); const byAlbum = new Map(); for (const r of albumRows) { // Link-only tracks (no file) remain in the album overview (url ''). if (!byAlbum.has(r.album)) byAlbum.set(r.album, []); byAlbum.get(r.album).push({ id: r.id, url: r.filename ? audioUrl(r.filename) : '', title: r.title || 'Untitled', artist: r.artist || '', cover: r.cover_url || '', link_spotify: r.link_spotify || '', link_youtube: r.link_youtube || '', link_soundcloud: r.link_soundcloud || '', }); } html = AudioEmbedService.embedAlbumShortcodes(html, (name) => { const tracks = byAlbum.get(name); if (!tracks || !tracks.length) return null; return { title: name, artist: tracks[0].artist || '', cover: tracks[0].cover || '', tracks, }; }); } // Playlist shortcodes: [[playlist:some-slug-id]] — first-class entity. // Editing the playlist propagates to every post that embeds it. const playlistIds = [...html.matchAll(/\[\[playlist:([a-z0-9][a-z0-9-]*)\]\]/gi)] .map(m => m[1].toLowerCase()); if (playlistIds.length) { const isAdmin = req.session?.user?.role === 'god'; html = AudioEmbedService.embedPlaylistShortcodes(html, (id) => { return PlaylistService.get(site.id, id, audioUrl); }, { isAdmin }); } } } else { // LITE mode (KLONKT_AUDIO=off): no own audio (no ffmpeg/stream route). // External embeds (YouTube/SoundCloud/Spotify) remain; the own-audio // shortcodes ([[track]]/[[album]]/[[playlist]]) are cleanly stripped. html = AudioEmbedService.autoembed(html); html = AudioEmbedService.embedMediaShortcodes(html); html = AudioEmbedService.embedExternalLinkShortcodes(html); html = html.replace(/\[\[(track|album|playlist):[^\]]+\]\]/gi, ''); } return html; } // A short public teaser for a paid post: its excerpt, else the first ~280 chars // of the (stripped) content. Shared by the web gate and federation. function paidTeaser(post, max = 280) { if (post && post.excerpt && String(post.excerpt).trim()) return String(post.excerpt).trim(); // Only the FIRST paragraph: a paid teaser must never spill later content. const html = String((post && post.content) || ''); const firstP = (html.match(/
]*>([\s\S]*?)<\/p>/i) || [null, html])[1] || '';
const text = firstP.replace(/<[^>]+>/g, ' ').replace(/&[a-z#0-9]+;/gi, ' ').replace(/\s+/g, ' ').trim();
return text.length > max ? text.slice(0, max).replace(/\s+\S*$/, '') + '…' : text;
}
function postNeighbors(site, post) {
const ordered = db.prepare(`
SELECT id, slug, title, pinned FROM posts
WHERE site_id = ? AND status = 'published'
ORDER BY (pinned = 0) ASC, pinned ASC, published_at DESC
`).all(site.id);
const idx = ordered.findIndex((p) => p.id === post.id);
const newerPost = idx > 0 ? ordered[idx - 1] : null;
const olderPost = (idx >= 0 && idx < ordered.length - 1) ? ordered[idx + 1] : null;
if (newerPost) newerPost._urlBase = '';
if (olderPost) olderPost._urlBase = '';
return { newerPost, olderPost };
}
// ==================== REMOTE INTERACTION (reply to a fediverse post as your site) ====================
// Standard fediverse "reply from your own server" landing endpoint. A post page
// elsewhere bounces the visitor here with ?uri= 🎵[\s\S]*?<\/p>\s*/i, '');
return { origin: u.origin, embedUrl: src, content, html: `` };
}
/**
* FEP-633c §5.3-style gated feature: may this account see previews of links
* that point OUTSIDE the fediverse? For a ward that is the guardians' call.
*
* Applied at SERVE time on every surface, the way the app's inbox read already
* does it (routes/activitypub.js): a card the client merely hides has still
* been delivered.
*/
function gateEmbeds(site, rows) {
if (!site || !rows.length) return rows;
if (embedsAllowedFor(site)) return rows;
return rows.map((r) => (r && r.embed_json ? { ...r, embed_json: null } : r));
}
function isWardSite(site) {
try { return !!site && Guardianship.listGuardians(site.slug).length > 0; } catch { return false; }
}
function embedsAllowedFor(site) {
return !site || Guardianship.externalEmbedsAllowed(site.external_embeds, isWardSite(site));
}
/**
* May a third-party PLAYER run inside this page? (FEP-633c 5.6, the heavier
* sibling of the preview gate.) This was the hole: the player iframe is built
* from the note's content by timelineEmbedHtml, on a path that never touched
* gateEmbeds. A ward whose guardians had allowed nothing still got the full
* YouTube player on the web, while the app showed nothing at all: the heavy
* thing open, the light thing shut. Playback also requires the preview gate,
* because you cannot play what you may not see.
*/
function playbackAllowedFor(site) {
if (!site) return true;
if (!embedsAllowedFor(site)) return false;
return Guardianship.externalPlaybackAllowed(site.external_playback, isWardSite(site));
}
router.get('/news', requireSiteManager, (req, res) => {
const site = res.locals.site;
const append = req.query.append === '1';
const offset = Math.max(0, parseInt(req.query.offset, 10) || 0);
const cspOrigins = new Set();
// Fetch one extra to know whether a "Load more" button belongs on this page.
const rows = gateEmbeds(site, site ? ActivityPubService.getTimeline(site.slug, FEED_PAGE + 1, offset) : []);
const hasMore = rows.length > FEED_PAGE;
// Players (a third party's engine inside our page) ride the playback gate;
// a Klonkt site's own audio embed is ours and stays.
const mayPlay = playbackAllowedFor(site);
const timeline = rows.slice(0, FEED_PAGE).map((p) => {
let embedHtml = mayPlay ? timelineEmbedHtml(p.content) : null;
let content = p.content;
let embedUrl = null;
if (!embedHtml) {
const k = klonktAudioEmbed(p.content, p.url);
if (k) { embedHtml = k.html; content = k.content; embedUrl = k.embedUrl; cspOrigins.add(k.origin); }
}
// embedUrl = the player's direct /embed?post=… URL. Surfaced so the view can offer a
// top-level "open the player" link that works even when a browser shield/CSP blocks
// the cross-site iframe (a full-page navigation is not a cross-site frame).
let poll = null;
if (p.poll_json) { try { poll = JSON.parse(p.poll_json); } catch { /* ignore */ } }
return { ...p, content, embedHtml, embedUrl, poll };
});
// Option A: allow the followed Klonkt sites' player iframes (you follow them) by
// extending ONLY this response's CSP frame-src. The global policy stays locked down.
if (cspOrigins.size) {
const csp = res.getHeader('Content-Security-Policy');
if (csp) {
const extra = [...cspOrigins].join(' ');
res.setHeader('Content-Security-Policy', String(csp).replace(/frame-src ([^;]*)/i, (m, g) => `frame-src ${g} ${extra}`));
}
}
const moreBase = res.locals.siteUrlBase || '';
if (append) {
return renderPage(req, res, 'partials/news-append', { timeline, hasMore, nextOffset: offset + FEED_PAGE, moreBase });
}
renderPage(req, res, 'pages/news', {
pageJs: 'news',
pageTitle: 'News', bodyClass: 'on-special',
timeline, hasMore, nextOffset: offset + FEED_PAGE, moreBase,
success: req.query.success || null, error: req.query.error || null,
});
});
// Volgend — manage the accounts you follow (+ per-account auto-boost toggles).
// Connect = who you follow + who follows you, merged into one page with direction
// (following →, follower ←, mutual ↔) and per-account delivery health. Replaces the
// separate Following/Followers pages, which redirect here so old links keep working.
router.get('/connect', requireSiteManager, (req, res) => {
const site = res.locals.site;
const connections = site ? ActivityPubService.listConnections(site.slug) : [];
// FEP-633c §2: the ward always sees who guards it, and §3.6 how available
// each of them is. Connect is where "who am I connected to" belongs; a
// guardian is the one connection a ward should never have to hunt for.
// Owner-only by construction: this page is the owner's.
const guardianHandle = (uri, cached) => {
if (cached && cached.charAt(0) === '@') return cached;
try { const u = new URL(uri); return `@${u.pathname.split('/').filter(Boolean).pop()}@${u.host}`; }
catch { return uri; }
};
const gStatus = site ? Object.fromEntries(
Guardianship.availability.statusesFor(site.slug, Guardianship.listGuardians(site.slug).map((g) => g.other_uri), Date.now())
.map((s) => [s.id, s]),
) : {};
const myGuardians = (site ? Guardianship.listGuardians(site.slug) : [])
.map((g) => ({
uri: g.other_uri,
handle: guardianHandle(g.other_uri, g.other_handle),
availability: (gStatus[g.other_uri] || {})['shaer:availability'] || 'active',
awayUntil: (gStatus[g.other_uri] || {})['shaer:awayUntil'] || null,
}));
// De eigenaarspoort: openstaande volgverzoeken, alleen buiten voogdij.
// Een ward-follow beslissen de guardians — die tonen we hier dus NIET,
// anders is deze pagina een deur naast hun poort.
const followRequests = (site && !myGuardians.length)
? Guardianship.follows.listForWard(site.slug) : [];
renderPage(req, res, 'pages/connect', {
pageTitle: 'Connect', bodyClass: 'on-special',
connections, myGuardians, followRequests,
approveFollowers: !!(site && site.approve_followers),
// Na een verhuizing staat de uitgaande kant op slot. Dat hoort te blijken
// VOORDAT je op een knop drukt, niet daarna uit een foutmelding.
movedTo: ActivityPubService.movedLock(site).movedTo,
success: req.query.success || null, error: req.query.error || null,
});
});
router.get('/following', requireSiteManager, (req, res) => res.redirect(`${res.locals.siteUrlBase || ''}/connect`));
router.get('/followers', requireSiteManager, (req, res) => res.redirect(`${res.locals.siteUrlBase || ''}/connect`));
router.post('/followers/:id/remove', requireSiteManager, (req, res) => {
const site = res.locals.site;
const base = res.locals.siteUrlBase || '';
if (!site) return res.redirect(`${base}/connect`);
const ok = ActivityPubService.removeFollower(site.slug, parseInt(req.params.id, 10) || 0);
return res.redirect(`${base}/connect?` + (ok
? 'success=' + encodeURIComponent('Volger verwijderd')
: 'error=' + encodeURIComponent('Volger niet gevonden')));
});
// De poort zelf aan- of uitzetten, op de plek waar de verzoeken toch al
// staan (Robins wens, 18-8: "op de connect is logischer").
router.post('/connect/approve-followers', requireSiteManager, (req, res) => {
const site = res.locals.site;
const base = res.locals.siteUrlBase || '';
if (site) {
db.prepare('UPDATE sites SET approve_followers = ?, updated_at = CURRENT_TIMESTAMP WHERE id = ?')
.run(req.body.on ? 1 : 0, site.id);
}
return res.redirect(`${base}/connect`);
});
// De eigenaarspoort beslist (Robins wens, 18-8): accepteer of weiger een
// volgverzoek dat door approve_followers is vastgehouden. Bewust NIET voor
// wards — daar beslissen de guardians, en deze route weigert dan hard, zodat
// hij geen sluiproute naast die poort wordt.
router.post('/follow-requests/:decision', requireSiteManager, async (req, res) => {
const site = res.locals.site;
const base = res.locals.siteUrlBase || '';
const { decision } = req.params;
if (!site || !['approve', 'deny'].includes(decision)) return res.redirect(`${base}/connect`);
if (Guardianship.listGuardians(site.slug).length) {
return res.redirect(`${base}/connect?error=` + encodeURIComponent('Volgverzoeken lopen via je guardians'));
}
const pending = Guardianship.follows.getPending(String(req.body.id || ''));
if (!pending || pending.ward_slug !== site.slug || pending.status !== 'pending') {
return res.redirect(`${base}/connect?error=` + encodeURIComponent('Verzoek niet gevonden'));
}
if (decision === 'approve') await ActivityPubService.acceptGatedFollow(pending);
else await ActivityPubService.rejectGatedFollow(pending);
Guardianship.follows.remove(pending.id);
return res.redirect(`${base}/connect?success=` + encodeURIComponent(
decision === 'approve' ? 'Volger geaccepteerd' : 'Verzoek geweigerd'));
});
router.post('/news/follow', requireSiteManager, async (req, res) => {
const site = res.locals.site;
const handle = (req.body.handle || '').toString();
let q = 'success=' + encodeURIComponent('Volgverzoek verstuurd');
if (site && handle.trim()) {
try {
const r = await ActivityPubService.followActor(site, handle, !!req.body.auto_boost);
// 'moved' is geen mislukking maar een weigering met een reden, en die reden
// hoort de gebruiker te lezen. "Volgen mislukt" laat hem zoeken naar een
// storing die er niet is.
if (r && r.error === 'moved') q = 'error=' + encodeURIComponent(`Dit account is verhuisd naar ${r.movedTo}. Volgen doe je daarvandaan.`);
else if (r && r.error) q = 'error=' + encodeURIComponent(r.error === 'not_found' ? 'Account niet gevonden' : (r.error === 'unreachable' ? 'Server onbereikbaar' : 'Volgen mislukt'));
// Een DERDE uitkomst, niet gelukt en niet mislukt (shaer-p729). "Je volgt
// nu X" zeggen terwijl het verzoek bij de guardians ligt is de leugen die
// deze poort waardeloos maakt: het kind denkt dat het gebeurd is.
else if (r && r.held) q = 'success=' + encodeURIComponent(r.status === 'denied' ? 'Je guardians hebben dit geweigerd' : 'Je verzoek ligt bij je guardians');
else {
q = 'success=' + encodeURIComponent('Je volgt nu ' + ((r && r.name) || handle));
}
} catch (e) { q = 'error=' + encodeURIComponent('Volgen mislukt'); }
}
res.redirect('/following?' + q);
});
// ── Je volglijst meenemen ─────────────────────────────────────────
//
// Zonder dit was verhuizen halfslachtig: de Move vertelt je VOLGERS waar je heen
// ging, maar niets vertelde JOU wie jij volgde. Die lijst stond alleen in de
// database die je achterlaat.
router.get('/news/following.csv', requireSiteManager, async (req, res) => {
const site = res.locals.site;
const { followingCsv } = await import('../services/ArchiveExportService.js');
const csv = site ? followingCsv(site.slug) : null;
if (!csv) return res.redirect('/connect?error=' + encodeURIComponent('Je volgt nog niemand'));
res.set('Content-Type', 'text/csv; charset=utf-8');
res.set('Content-Disposition', `attachment; filename="following-${site.slug}.csv"`);
// Privé: dit is de lijst van wie jij volgt, niets voor een cache onderweg.
res.set('Cache-Control', 'private, no-store');
res.send(csv);
});
// Een bestand OF geplakte tekst. Multer leest een multipart-formulier, en dat
// bevat allebei: het bestandsveld en het tekstveld. In het geheugen, niet op
// schijf: dit is een lijstje adressen van een paar kilobyte dat na het lezen
// niets meer te zoeken heeft op de server.
const followingCsvUpload = multer({
storage: multer.memoryStorage(),
limits: { fileSize: 512 * 1024, files: 1 },
}).single('csvfile');
router.post('/news/following/import', requireSiteManager, followingCsvUpload, async (req, res) => {
const site = res.locals.site;
// Een geupload bestand wint van het plakveld: wie een bestand kiest bedoelt dat.
const csv = (req.file && req.file.buffer)
? req.file.buffer.toString('utf8').replace(/^/, '') // BOM eraf; Excel zet die erin
: ((req.body && req.body.csv) || '');
// Terug naar waar je vandaan kwam. Sinds 14-8 staat dit formulier op
// /admin/migrate (Robin: alle migratie-opties bij elkaar); terugspringen naar
// Connect is dan desorienterend. Alleen een eigen pad, geen open redirect.
const terug = /^\/[A-Za-z0-9/_-]*$/.test(String(req.body.next || '')) ? String(req.body.next) : '/connect';
if (!site || !String(csv).trim()) return res.redirect(terug + '?error=' + encodeURIComponent('Geen lijst ontvangen'));
const { importFollowing } = await import('../services/ArchiveImportService.js');
// followActor als followFn: die doet de webfinger, stuurt de Follow en zet
// auto_boost meteen goed. Zo blijft er één pad naar een volgrelatie.
const r = await importFollowing(site, csv, {
followFn: async (s, adres, uitgelicht) => {
const uit = await ActivityPubService.followActor(s, adres, !!uitgelicht);
// followActor meldt een fout als VELD, niet als exception. Zonder deze
// vertaling telde een onvindbaar account gewoon als geslaagd mee.
if (uit && uit.error) throw new Error(uit.error);
return true;
},
});
const delen = [`${r.gevolgd} gevolgd`];
if (r.overgeslagen) delen.push(`${r.overgeslagen} overgeslagen`);
if (r.mislukt.length) {
const namen = r.mislukt.slice(0, 3).map((m) => m.adres).join(', ');
delen.push(`${r.mislukt.length} mislukt (${namen}${r.mislukt.length > 3 ? '…' : ''})`);
}
// Terug naar /connect: daar staat het blok, /following is de oude pagina.
res.redirect(terug + '?' + (r.mislukt.length ? 'error=' : 'success=') + encodeURIComponent(delen.join(', ')));
});
router.post('/news/unfollow', requireSiteManager, async (req, res) => {
const site = res.locals.site;
const actorUri = (req.body.actor_uri || '').toString();
if (site && actorUri) { try { await ActivityPubService.unfollowActor(site, actorUri); } catch (e) { /* ignore */ } }
res.redirect('/following?success=' + encodeURIComponent('Ontvolgd'));
});
// Toggle "Featured" (show this account's posts in your Cirkel) on an account you follow.
router.post('/news/autoboost', requireSiteManager, (req, res) => {
const site = res.locals.site;
const actorUri = (req.body.actor_uri || '').toString();
if (site && actorUri) ActivityPubService.setAutoBoost(site.slug, actorUri, !!req.body.auto_boost);
res.redirect('/following?success=' + encodeURIComponent(req.body.auto_boost ? 'Uitgelicht ✨' : 'Niet meer uitgelicht'));
});
// Like / unlike a feed post — a toggle. Fetch request → JSON {on} (stay on the page,
// no banner); no-JS → redirect back.
router.post('/news/like', requireSiteManager, async (req, res) => {
const site = res.locals.site;
const note = (req.body.note || '').toString();
let on = false;
if (site && note) {
on = !ActivityPubService.getReaction(site.slug, note).liked;
try { await ActivityPubService.sendInteraction(site, on ? 'like' : 'unlike', note, (req.body.author || '').toString()); } catch (e) { /* ignore */ }
ActivityPubService.setReaction(site.slug, note, 'like', on);
}
if (req.get('X-Requested-With') === 'fetch') return res.json({ ok: true, on });
res.redirect('/news');
});
// Boost / unboost a feed post — a toggle. markBoosted also surfaces it in the Cirkel.
router.post('/news/boost', requireSiteManager, async (req, res) => {
const site = res.locals.site;
const note = (req.body.note || '').toString();
let on = false;
if (site && note) {
on = !ActivityPubService.getReaction(site.slug, note).boosted;
try { await ActivityPubService.sendInteraction(site, on ? 'boost' : 'unboost', note, (req.body.author || '').toString()); } catch (e) { /* ignore */ }
ActivityPubService.setReaction(site.slug, note, 'boost', on); // instant UI state
if (on) {
// Fire-and-forget: re-resolve the note so the cached row is refreshed
// (cover/content) — boosting again heals a stale copy from EVERY boost
// path, not just the interact page.
ActivityPubService.resolveRemoteNote(note)
.then((n) => { if (n) ActivityPubService.setReaction(site.slug, note, 'boost', true, { note: n }); })
.catch(() => { /* best-effort */ });
}
}
if (req.get('X-Requested-With') === 'fetch') return res.json({ ok: true, on });
res.redirect('/news');
});
// Vote on a fediverse poll (a Question in the feed). Owner-only, like the other interactions.
router.post('/news/vote', requireSiteManager, async (req, res) => {
const site = res.locals.site;
const note = (req.body.note || '').toString();
let choice = req.body.choice;
if (choice == null) choice = [];
if (!Array.isArray(choice)) choice = [choice];
if (site && note && choice.length) { try { await ActivityPubService.voteOnPoll(site, note, choice.map(String)); } catch (e) { /* ignore */ } }
res.redirect('/news');
});
// Notifications inbox (new followers + replies/likes/boosts on your posts).
router.get('/notifications', requireSiteManager, (req, res) => res.redirect(`${res.locals.siteUrlBase || ''}/messages`));
// Blocking / defederation (owner-only).
router.get('/blocking', requireSiteManager, (req, res) => {
const site = res.locals.site;
const blocks = site ? ActivityPubService.listBlocks(site.slug) : [];
renderPage(req, res, 'pages/blocks', { pageTitle: 'Blokkeren', bodyClass: 'on-special', blocks, success: req.query.success || null, error: req.query.error || null });
});
router.post('/blocking/add', requireSiteManager, async (req, res) => {
const site = res.locals.site;
let q = 'success=' + encodeURIComponent('Geblokkeerd');
if (site) {
try {
const r = await ActivityPubService.blockTarget(site, (req.body.target || '').toString());
if (r && r.error) q = 'error=' + encodeURIComponent(r.error === 'not_found' ? 'Account niet gevonden' : 'Voer een @handle of domein in');
else q = 'success=' + encodeURIComponent(((r && r.label) || '') + ' geblokkeerd');
} catch (e) { q = 'error=' + encodeURIComponent('Blokkeren mislukt'); }
}
const ref = req.get('Referer') || '';
res.redirect((ref.includes('/news') ? '/news?' : '/blocking?') + q);
});
router.post('/blocking/remove', requireSiteManager, (req, res) => {
const site = res.locals.site;
if (site) { try { ActivityPubService.unblock(site, (req.body.target || '').toString()); } catch (e) { /* ignore */ } }
res.redirect('/blocking?success=' + encodeURIComponent('Deblokkeerd'));
});
// ==================== VIEW POST (last route — catches /:slug) ====================
router.get('/:slug', (req, res, next) => {
if (RESERVED_SLUGS.has(req.params.slug)) return next();
const site = res.locals.site;
if (!site) return next(); // -> nette 404 catch-all
const post = db.prepare(`
SELECT p.*, u.username as author_username, u.avatar_url as author_avatar
FROM posts p JOIN users u ON p.author_id = u.id
WHERE p.site_id = ? AND p.slug = ?
`).get(site.id, req.params.slug);
if (!post) return next(); // unknown slug -> clean 404 catch-all
// Permission to view: published OR (logged in + can edit)
if (post.status !== 'published') {
const canEdit = req.session?.user && PermissionsService.canEditPost(req.session.user, post, site);
if (!canEdit) return res.status(403).send('Not published');
}
// Paid gate (klonkt-demo-aki): a paid post shows only a teaser to anyone who
// is not the owner/editor. Checked BEFORE the fan gate: a post that is both
// fan_only and paid unlocks with a passkey, not with a Klonkt-login, so the
// paid gate wins (otherwise anonymous visitors land on the login gate and
// never see the unlock button).
const canEditThis = req.session?.user && PermissionsService.canEditPost(req.session.user, post, site);
// A fresh unlock capability (?u=) from /paid/unlock lets a just-verified
// supporter render the FULL post through this normal template (correct layout,
// scoped styles, working audio). Short-lived signed blob, single post, not a
// cookie and not stored.
const _u = req.query.u ? verifyBlob(String(req.query.u)) : null;
const _unlocked = _u && _u.purpose === 'unlocked' && _u.siteId === site.id && String(_u.post) === String(post.slug);
if (post.paid && !canEditThis && !_unlocked) {
const { newerPost, olderPost } = postNeighbors(site, post);
return renderPage(req, res, 'pages/paid-gate', {
pageJs: 'paid-gate',
pageTitle: post.title || 'Voor supporters',
bodyClass: 'on-special',
pgTitle: post.title || '',
pgTeaser: paidTeaser(post),
pgCents: post.paid_min_cents || paidDefaultMinCents(site.id),
pgSlug: post.slug,
pgPatronUrl: paidPatronUrl(site.id),
newerPost,
olderPost,
});
}
// Fan-only preview (premium #3): full content only for logged-in fans.
// Anonymous visitors get a clean login gate instead of the content (the title/
// teaser may still appear elsewhere as a teaser).
if (post.fan_only && !(req.session && req.session.user)) {
// Same Newer/Older navigation as on a normal post, so the visitor doesn't get
// stuck on the fan gate but can keep browsing.
const { newerPost, olderPost } = postNeighbors(site, post);
return renderPage(req, res, 'pages/fan-gate', {
pageTitle: post.title || 'Alleen voor fans',
bodyClass: 'on-special',
fgTitle: post.title || '',
fgNext: (res.locals.siteUrlBase || '') + '/' + post.slug,
newerPost,
olderPost,
});
}
// Statistics: count the view (skips admins + unpublished own-preview).
if (post.status === 'published') recordPostView(post, req);
// Render content. Base = the pre-rendered ("baked") display HTML: #hashtags/URLs (and, later,
// @mentions) linkified once at SAVE and cached in content_rendered — the ActivityPub `source`
// model (content = raw source, kept for editing). Old posts with no baked copy fall back to
// baking on the fly (cheap, no network). The dynamic layer (autoembed + [[track/album/
// playlist]] + signed audio URLs) stays per-render on top, since it can't be cached.
post.content_html = renderPostBodyHtml(site, post, req);
if (post.tags) {
try { post.tags = JSON.parse(post.tags); } catch { post.tags = []; }
} else {
post.tags = [];
}
// Native comments removed: social interaction is fediverse-only (see the
// "From the fediverse" section below).
// Prev / next chronological (kept for back-compat — "post-nav" feature
// below the article still uses these as a simple linear navigation).
const urlBaseFor = () => '';
// Newer/Older across ALL posts (shared helper — also used by the fan gate).
const { newerPost, olderPost } = postNeighbors(site, post);
// ── Related posts: same-tag matching with recency fallback ─────
// Fetch ~50 candidates, score by tag overlap, take top 3.
// Excluding self via `id != ?`.
const candidates = db.prepare(`
SELECT id, slug, title, cover_image_url, cover_video_url, published_at, tags, nsfw, content_warning
FROM posts
WHERE site_id = ? AND status = 'published' AND id != ?
ORDER BY published_at DESC LIMIT 50
`).all(site.id, post.id);
// Parse tags JSON safely; missing/malformed → empty array.
const parseTags = (raw) => {
if (!raw) return [];
try {
const v = JSON.parse(raw);
return Array.isArray(v) ? v.map(String) : [];
} catch { return []; }
};
const myTags = new Set(parseTags(post.tags));
let relatedPosts;
if (myTags.size > 0) {
// Score = number of overlapping tags. Posts with zero overlap are
// included only if we don't have 3 with-overlap candidates.
const scored = candidates.map(p => {
const theirTags = parseTags(p.tags);
const overlap = theirTags.reduce((n, t) => n + (myTags.has(t) ? 1 : 0), 0);
return { ...p, _overlap: overlap };
});
const withOverlap = scored.filter(p => p._overlap > 0)
.sort((a, b) => b._overlap - a._overlap || new Date(b.published_at) - new Date(a.published_at));
if (withOverlap.length >= 3) {
relatedPosts = withOverlap.slice(0, 3);
} else {
// Pad with most-recent non-overlap posts so the section is never empty
const overlapIds = new Set(withOverlap.map(p => p.id));
const filler = candidates.filter(p => !overlapIds.has(p.id));
relatedPosts = [...withOverlap, ...filler].slice(0, 3);
}
} else {
// No tags on current post → just show 3 most-recent
relatedPosts = candidates.slice(0, 3);
}
// Strip the internal _overlap field before sending to view
relatedPosts = relatedPosts.map(({ _overlap, tags, ...rest }) => ({ ...rest, _urlBase: urlBaseFor(rest) }));
// Inbound fediverse activity (threaded) for this post.
let fediverse = { thread: [], likeCount: 0, announceCount: 0, total: 0 };
try {
const _apBase = (process.env.PUBLIC_BASE_URL || `${req.protocol}://${req.get('host')}`).replace(/\/+$/, '');
fediverse = ActivityPubService.getInteractions(post.id, _apBase, site);
// Stale-while-revalidate: render from cache now; refresh the remote thread in the
// background (TTL-gated, non-blocking) so undelivered replies-to-replies fill in next view.
if (res.locals.apEnabled !== false) ActivityPubService.maybeCrawlThread(post.id);
} catch { /* non-fatal */ }
// Owner/admin of this site may reply back to a fediverse interaction.
const canManageSite = !!(req.session?.user && PermissionsService.canAdminSite(req.session.user, site));
// Avatar for our own (outbound) fediverse replies = the site's profile photo.
const siteAvatar = (site && site.profile_photo) ? site.profile_photo : null;
renderPage(req, res, 'pages/post', {
pageJs: 'post reply-editor',
post,
poll: ActivityPubService.ownPollView(post),
newerPost,
olderPost,
relatedPosts,
fediverse,
canManageSite,
siteAvatar,
postHasPlayableAudio: ActivityPubService.hasPlayableAudio(post.content || '', site.id),
musicLd: MusicMeta.build((process.env.PUBLIC_BASE_URL || `${req.protocol}://${req.get('host')}`).replace(/\/+$/, ''), site, post),
pageTitle: post.title + ' - ' + site.title,
socialDescr: post.excerpt || '',
socialImage: post.cover_image_url || '',
bodyClass: 'on-post',
});
});
// ── Reply back to a fediverse interaction (site owner/admin only) ──
router.post('/posts/:slug/fedi-reply', requireSiteManager, async (req, res) => {
const site = res.locals.site;
if (!site) return res.status(404).send('Site required');
const post = db.prepare('SELECT id, slug FROM posts WHERE site_id = ? AND slug = ?').get(site.id, req.params.slug);
if (!post) return res.status(404).send('Not found');
const parent = ActivityPubService.getInteractionById(req.body.interaction_id);
const text = (req.body.text || '').toString();
const html = (req.body.content || '').toString(); // rich reply editor HTML (sanitized in deliverReply)
let attachments = [];
try { attachments = JSON.parse(req.body.attachments || '[]'); } catch { /* geen media */ }
let mentions; // undefined = geen balk meegestuurd (legacy addressing)
try { if (req.body.mentions !== undefined) mentions = JSON.parse(req.body.mentions || '[]'); } catch { mentions = undefined; }
if (parent && parent.post_id === post.id && (text.trim() || html.trim() || (Array.isArray(attachments) && attachments.length))) {
try {
await ActivityPubService.deliverReply(site, {
postId: post.id, postSlug: post.slug, parent, text, html, attachments, mentions,
language: (req.body.language || '').toString(),
});
} catch (e) { console.warn('[AP] reply send failed:', e.message); }
}
res.redirect(`${res.locals.siteUrlBase || ''}/${post.slug}#fediverse`);
});
// Owner likes/boosts a fediverse comment on their own post — directly as the
// site, no "your server" detour (mirrors /fedi-reply).
router.post('/posts/:slug/fedi-react', requireSiteManager, async (req, res) => {
const site = res.locals.site;
if (!site) return res.status(404).send('Site required');
const post = db.prepare('SELECT id, slug FROM posts WHERE site_id = ? AND slug = ?').get(site.id, req.params.slug);
if (!post) return res.status(404).send('Not found');
const parent = ActivityPubService.getInteractionById(req.body.interaction_id);
const kind = req.body.kind === 'boost' ? 'boost' : 'like';
if (parent && parent.post_id === post.id && parent.object_uri) {
// Toggle: react, or retract it (Undo Announce / Undo Like) if already on.
// De stand komt uit dezelfde bron als de knop die je zag; leest de toggle uit
// de kolom en de knop uit de tussentabel, dan draait een divergentie de
// richting om en stuur je een Undo voor iets dat nooit is verstuurd.
const ik = ActivityPubService.getReaction(site.slug, parent.object_uri);
const on = kind === 'boost' ? !ik.boosted : !ik.liked;
ActivityPubService.sendInteraction(site, on ? kind : `un${kind}`, parent.object_uri, parent.actor_uri)
.catch((e) => console.warn('[AP] reaction failed:', e.message));
// De tussentabel is de waarheid (shaer-ipb), gesleuteld op object_uri -- net
// als de Like die hierboven de fediverse in gaat. acted_* blijft voorlopig
// als afgeleide meelopen, hetzelfde vangnet dat ap_timeline.liked na
// shaer-9e9 is: pas weghalen als deze migratie een release heeft ingelopen.
ActivityPubService.setReaction(site.slug, parent.object_uri, kind, on);
if (kind === 'boost') ActivityPubService.setInteractionBoosted(parent.id, on);
else ActivityPubService.setInteractionLiked(parent.id, on);
}
res.redirect(`${res.locals.siteUrlBase || ''}/${post.slug}#fediverse`);
});
export default router;
export { postNeighbors };