| [7bc636b] | 1 | import express from 'express';
|
|---|
| 2 | import { v4 as uuid } from 'uuid';
|
|---|
| 3 | import path from 'path';
|
|---|
| 4 | import fs from 'fs';
|
|---|
| 5 | import { fileURLToPath } from 'url';
|
|---|
| 6 | import multer from 'multer';
|
|---|
| [535f955] | 7 | import ejs from 'ejs';
|
|---|
| [7bc636b] | 8 | import db from '../config/database.js';
|
|---|
| [3dd99d3] | 9 | import { requireAuth, requireSiteManager, isViewer } from '../middleware/auth.js';
|
|---|
| [7bc636b] | 10 | import { renderPage } from '../middleware/render.js';
|
|---|
| [d549549] | 11 | import { recordPageview, recordPostView } from '../services/StatsService.js';
|
|---|
| [7bc636b] | 12 | import PermissionsService from '../services/PermissionsService.js';
|
|---|
| 13 | import MarkdownService from '../services/MarkdownService.js';
|
|---|
| 14 | import HtmlSanitizerService from '../services/HtmlSanitizerService.js';
|
|---|
| 15 | import AudioEmbedService from '../services/AudioEmbedService.js';
|
|---|
| 16 | import PlaylistService from '../services/PlaylistService.js';
|
|---|
| [cb01666] | 17 | import { audioEnabled } from '../config/features.js';
|
|---|
| [21522ae] | 18 | import { audioUrl } from '../services/AudioStreamService.js';
|
|---|
| [8f6225c] | 19 | import { toWebp } from '../services/ImageWebpService.js';
|
|---|
| [1d6f9a2] | 20 | import VideoCoverService from '../services/VideoCoverService.js';
|
|---|
| [5bf63b7] | 21 | import ActivityPubService from '../services/ActivityPubService.js';
|
|---|
| [328d837] | 22 | import MusicMeta from '../services/MusicMeta.js';
|
|---|
| [7bc636b] | 23 |
|
|---|
| 24 | const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|---|
| 25 | const POST_IMAGES_DIR = path.resolve(
|
|---|
| 26 | process.env.POST_IMAGES_PATH ||
|
|---|
| 27 | path.join(__dirname, '..', '..', 'storage', 'media', 'post-images')
|
|---|
| 28 | );
|
|---|
| 29 | fs.mkdirSync(POST_IMAGES_DIR, { recursive: true });
|
|---|
| 30 |
|
|---|
| 31 | const ALLOWED_IMAGE_EXT = new Set(['.jpg', '.jpeg', '.png', '.webp', '.gif']);
|
|---|
| 32 | const MAX_IMAGE_BYTES = 10 * 1024 * 1024;
|
|---|
| 33 |
|
|---|
| 34 | const imageStorage = multer.diskStorage({
|
|---|
| 35 | destination: (req, file, cb) => cb(null, POST_IMAGES_DIR),
|
|---|
| 36 | filename: (req, file, cb) => {
|
|---|
| 37 | const ext = path.extname(file.originalname).toLowerCase();
|
|---|
| 38 | cb(null, `${uuid()}${ext}`);
|
|---|
| 39 | },
|
|---|
| 40 | });
|
|---|
| 41 | const imageUpload = multer({
|
|---|
| 42 | storage: imageStorage,
|
|---|
| 43 | limits: { fileSize: MAX_IMAGE_BYTES },
|
|---|
| 44 | fileFilter: (req, file, cb) => {
|
|---|
| 45 | const ext = path.extname(file.originalname).toLowerCase();
|
|---|
| 46 | if (!ALLOWED_IMAGE_EXT.has(ext)) {
|
|---|
| 47 | return cb(new Error('Image must be jpg/png/webp/gif'));
|
|---|
| 48 | }
|
|---|
| 49 | cb(null, true);
|
|---|
| 50 | },
|
|---|
| 51 | });
|
|---|
| 52 |
|
|---|
| [834bcc3] | 53 | // Generates a unique slug within the site: 'title', 'title-2', 'title-3', …
|
|---|
| 54 | // A second post with the same title is NOT rejected ("already exists"),
|
|---|
| 55 | // but automatically gets a free suffix. exceptId = the post being updated
|
|---|
| 56 | // (allowed to keep its own slug).
|
|---|
| [b27cde6] | 57 | function uniqueSlug(siteId, base, exceptId = null) {
|
|---|
| 58 | let candidate = base;
|
|---|
| 59 | let n = 2;
|
|---|
| 60 | for (;;) {
|
|---|
| 61 | const row = exceptId
|
|---|
| 62 | ? db.prepare('SELECT id FROM posts WHERE site_id = ? AND slug = ? AND id != ?').get(siteId, candidate, exceptId)
|
|---|
| 63 | : db.prepare('SELECT id FROM posts WHERE site_id = ? AND slug = ?').get(siteId, candidate);
|
|---|
| 64 | if (!row) return candidate;
|
|---|
| 65 | candidate = `${base}-${n++}`;
|
|---|
| 66 | }
|
|---|
| 67 | }
|
|---|
| 68 |
|
|---|
| [7bc636b] | 69 | const router = express.Router();
|
|---|
| 70 |
|
|---|
| 71 | // ==================== UPLOAD IMAGE (cover or content) ====================
|
|---|
| 72 | // Returns JSON {url} so the editor can stick it into the cover field or
|
|---|
| 73 | // insert a markdown  into content.
|
|---|
| 74 | router.post('/posts/upload-image', requireAuth, (req, res) => {
|
|---|
| [1d6f9a2] | 75 | imageUpload.single('image')(req, res, async (err) => {
|
|---|
| [7bc636b] | 76 | if (err) return res.status(400).json({ error: err.message });
|
|---|
| 77 | if (!req.file) return res.status(400).json({ error: 'No file' });
|
|---|
| [1d6f9a2] | 78 | const name = toWebp(req.file);
|
|---|
| 79 | const url = '/media/post-images/' + name;
|
|---|
| 80 | // An animated WebP cover → also make a muted loop MP4 (Safari plays it smoothly where the
|
|---|
| 81 | // animated WebP is janky on iOS). Best-effort; on failure we just return the still image.
|
|---|
| 82 | // The editor stores `video` in the hidden cover_video_url field for the cover.
|
|---|
| 83 | let video = null;
|
|---|
| 84 | try {
|
|---|
| 85 | const src = path.join(POST_IMAGES_DIR, name);
|
|---|
| 86 | if (VideoCoverService.isAnimatedWebp(src)) {
|
|---|
| 87 | const r = await VideoCoverService.animatedWebpToVideo(src, POST_IMAGES_DIR, path.basename(name, path.extname(name)) + '-v');
|
|---|
| 88 | if (r) video = '/media/post-images/' + path.basename(r.videoPath);
|
|---|
| 89 | }
|
|---|
| 90 | } catch { /* keep the still image */ }
|
|---|
| 91 | res.json({ url, video, size: req.file.size, mime: req.file.mimetype });
|
|---|
| [7bc636b] | 92 | });
|
|---|
| 93 | });
|
|---|
| 94 |
|
|---|
| 95 | const RESERVED_SLUGS = new Set([
|
|---|
| 96 | 'auth', 'admin', 'login', 'register', 'logout',
|
|---|
| 97 | 'archive', 'search', 'account', 'sites', 'comments',
|
|---|
| [8f2f97c] | 98 | 'posts', 'media', 'audio', 'forum',
|
|---|
| [535f955] | 99 | 'tag', 'type', 'user', 'users', 'artiesten', 'leden', 'favorieten', 'feed.xml', 'atom.xml', 'sitemap.xml',
|
|---|
| [7bc636b] | 100 | 'manifest.webmanifest', 'sw.js', 'favicon.ico', 'favicon.svg', 'assets',
|
|---|
| [eefd302] | 101 | 'authorize_interaction', 'fediverse', 'news', 'following', 'notifications', 'blocking',
|
|---|
| [7bc636b] | 102 | ]);
|
|---|
| 103 |
|
|---|
| 104 | /**
|
|---|
| 105 | * Parse the form's `pinned` field into a non-negative integer rank.
|
|---|
| 106 | * Empty / undefined / NaN / negative → 0 (= not pinned).
|
|---|
| 107 | * Otherwise: integer rank (1 = top of pinned stack, 2 = below, ...).
|
|---|
| 108 | *
|
|---|
| 109 | * Multiple posts CAN share the same rank — UI shows them tiebroken by
|
|---|
| 110 | * published_at DESC. Saying #2 twice doesn't error, it just duplicates.
|
|---|
| 111 | * (We don't enforce uniqueness at this layer because race conditions and
|
|---|
| 112 | * "swap two ranks" workflows are easier without a UNIQUE constraint.)
|
|---|
| 113 | */
|
|---|
| 114 | function parsePinnedRank(raw) {
|
|---|
| 115 | const n = parseInt(raw, 10);
|
|---|
| 116 | if (!Number.isFinite(n) || n < 0) return 0;
|
|---|
| 117 | return n;
|
|---|
| 118 | }
|
|---|
| 119 |
|
|---|
| 120 | // ==================== HOME (Posts list) ====================
|
|---|
| 121 | router.get('/', (req, res) => {
|
|---|
| 122 | const site = res.locals.site;
|
|---|
| 123 |
|
|---|
| 124 | if (!site) {
|
|---|
| 125 | return renderPage(req, res, 'pages/welcome', {
|
|---|
| 126 | pageTitle: 'Welcome',
|
|---|
| 127 | bodyClass: 'on-special',
|
|---|
| 128 | });
|
|---|
| 129 | }
|
|---|
| 130 |
|
|---|
| 131 | // Pinned first — ordered by their rank (1 = top, 2 = below, etc).
|
|---|
| 132 | // pinned column is now an integer rank: 0 = not pinned, 1+ = pinned at
|
|---|
| 133 | // that position. Older boolean usage where pinned was always 1 still
|
|---|
| 134 | // works because integer ranks 1, 2, 3 sort the same as a flat 1.
|
|---|
| 135 | const pinnedPosts = db.prepare(`
|
|---|
| 136 | SELECT p.*, u.username as author_username
|
|---|
| 137 | FROM posts p JOIN users u ON p.author_id = u.id
|
|---|
| 138 | WHERE p.site_id = ? AND p.status = 'published' AND p.pinned > 0
|
|---|
| 139 | ORDER BY p.pinned ASC, p.published_at DESC
|
|---|
| 140 | `).all(site.id);
|
|---|
| 141 |
|
|---|
| 142 | // Regular posts: anything with pinned = 0
|
|---|
| 143 | const posts = db.prepare(`
|
|---|
| 144 | SELECT p.*, u.username as author_username
|
|---|
| 145 | FROM posts p JOIN users u ON p.author_id = u.id
|
|---|
| 146 | WHERE p.site_id = ? AND p.status = 'published' AND p.pinned = 0
|
|---|
| 147 | ORDER BY p.published_at DESC
|
|---|
| 148 | LIMIT 30
|
|---|
| 149 | `).all(site.id);
|
|---|
| 150 |
|
|---|
| [d549549] | 151 | recordPageview(site.id, req);
|
|---|
| 152 |
|
|---|
| [7bc636b] | 153 | renderPage(req, res, 'pages/home', {
|
|---|
| 154 | pinnedPosts,
|
|---|
| 155 | posts,
|
|---|
| 156 | pageTitle: site.title,
|
|---|
| 157 | socialDescr: site.description || site.tagline || '',
|
|---|
| 158 | bodyClass: 'on-home',
|
|---|
| 159 | });
|
|---|
| 160 | });
|
|---|
| 161 |
|
|---|
| 162 | // ==================== NEW POST FORM ====================
|
|---|
| 163 | router.get('/posts/new', requireAuth, (req, res) => {
|
|---|
| 164 | const site = res.locals.site;
|
|---|
| 165 | if (!site) return res.status(404).send('Site required');
|
|---|
| 166 | if (!PermissionsService.canCreatePost(req.session.user, site)) {
|
|---|
| 167 | return res.status(403).send('No permission');
|
|---|
| 168 | }
|
|---|
| 169 |
|
|---|
| 170 | renderPage(req, res, 'pages/post-edit', {
|
|---|
| 171 | post: {
|
|---|
| 172 | id: uuid(),
|
|---|
| 173 | title: '', slug: '', content: '', excerpt: '',
|
|---|
| 174 | status: 'draft', pinned: 0, tags: [],
|
|---|
| 175 | cover_image_url: '',
|
|---|
| 176 | },
|
|---|
| 177 | isNew: true,
|
|---|
| 178 | pageTitle: 'New post',
|
|---|
| 179 | bodyClass: 'on-special',
|
|---|
| 180 | });
|
|---|
| 181 | });
|
|---|
| 182 |
|
|---|
| 183 | // ==================== CREATE POST ====================
|
|---|
| [e0a1ec1] | 184 | // ── Per-post audio federation ──────────────────────────────────────────────
|
|---|
| 185 | // "Share audio on the fediverse" is a per-post choice in the editor, but the underlying
|
|---|
| 186 | // flag is per track (audio_tracks.fedi_open — it gates the file + drives the AS2 Audio
|
|---|
| 187 | // attachment). NB: the file gate is per file, so opening a track in one post makes its file
|
|---|
| 188 | // fetchable for every post that reuses it.
|
|---|
| 189 | function setAudioFediOpen(siteId, content, open) {
|
|---|
| 190 | const val = open ? 1 : 0;
|
|---|
| 191 | const c = content || '';
|
|---|
| 192 | try {
|
|---|
| 193 | for (const m of c.matchAll(/\[\[track:([A-Za-z0-9_-]+)\]\]/g)) db.prepare('UPDATE audio_tracks SET fedi_open = ? WHERE id = ? AND site_id = ?').run(val, m[1], siteId);
|
|---|
| 194 | for (const m of c.matchAll(/\[\[album:([^\]]+)\]\]/g)) db.prepare('UPDATE audio_tracks SET fedi_open = ? WHERE site_id = ? AND album = ?').run(val, siteId, m[1].trim());
|
|---|
| 195 | for (const m of c.matchAll(/\[\[playlist:([A-Za-z0-9_-]+)\]\]/g)) db.prepare('UPDATE audio_tracks SET fedi_open = ? WHERE id IN (SELECT track_id FROM playlist_tracks WHERE playlist_id = ?)').run(val, m[1]);
|
|---|
| 196 | } catch { /* non-fatal */ }
|
|---|
| 197 | }
|
|---|
| 198 | // True when the post references hosted audio AND all of it is currently fedi_open (drives the
|
|---|
| 199 | // editor checkbox's initial state).
|
|---|
| 200 | function postAudioFediOpen(siteId, content) {
|
|---|
| 201 | const c = content || '';
|
|---|
| 202 | if (!/\[\[(track|album|playlist):/i.test(c)) return false;
|
|---|
| 203 | let total = 0, open = 0;
|
|---|
| 204 | const tally = (r) => { if (r && r.media_id) { total++; if (r.fedi_open) open++; } };
|
|---|
| 205 | try {
|
|---|
| 206 | 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));
|
|---|
| 207 | 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);
|
|---|
| 208 | 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);
|
|---|
| 209 | } catch { /* non-fatal */ }
|
|---|
| 210 | return total > 0 && open === total;
|
|---|
| 211 | }
|
|---|
| 212 |
|
|---|
| [7bc636b] | 213 | router.post('/posts/create', requireAuth, (req, res) => {
|
|---|
| 214 | const site = res.locals.site;
|
|---|
| 215 | if (!site || !PermissionsService.canCreatePost(req.session.user, site)) {
|
|---|
| 216 | return res.status(403).send('No permission');
|
|---|
| 217 | }
|
|---|
| 218 |
|
|---|
| 219 | const { title, slug, content, excerpt, status, pinned, cover_image_url, tags, noindex, type } = req.body;
|
|---|
| [b9dc94c] | 220 | const fanOnly = req.body.fan_only ? 1 : 0;
|
|---|
| [837fc9c] | 221 | const nsfw = req.body.nsfw ? 1 : 0;
|
|---|
| [b7d4458] | 222 | const cw = (req.body.content_warning || '').trim().slice(0, 200);
|
|---|
| [7bc636b] | 223 |
|
|---|
| 224 | // Content arrives as user-authored HTML from the WYSIWYG editor — sanitize
|
|---|
| 225 | // before storage. Shortcode text tokens like [[track:UUID]] live in text
|
|---|
| 226 | // nodes and pass through untouched.
|
|---|
| 227 | const cleanContent = HtmlSanitizerService.sanitize(content || '');
|
|---|
| 228 |
|
|---|
| 229 | // Generate slug from title if empty
|
|---|
| [b27cde6] | 230 | let finalSlug = (slug || title || '')
|
|---|
| [7bc636b] | 231 | .toLowerCase()
|
|---|
| 232 | .replace(/[^a-z0-9]+/g, '-')
|
|---|
| 233 | .replace(/^-|-$/g, '');
|
|---|
| 234 |
|
|---|
| 235 | if (!finalSlug) return res.status(400).send('Title or slug required');
|
|---|
| [b27cde6] | 236 | if (RESERVED_SLUGS.has(finalSlug)) finalSlug = `${finalSlug}-post`;
|
|---|
| [7bc636b] | 237 |
|
|---|
| [834bcc3] | 238 | // Duplicate title/slug? Make it unique automatically (title-2, title-3, …) instead of rejecting.
|
|---|
| [b27cde6] | 239 | finalSlug = uniqueSlug(site.id, finalSlug);
|
|---|
| [7bc636b] | 240 |
|
|---|
| 241 | const validTypes = new Set(['post', 'foto', 'video', 'audio']);
|
|---|
| 242 | const finalType = validTypes.has(type) ? type : 'post';
|
|---|
| 243 | const postId = uuid();
|
|---|
| 244 | const now = new Date().toISOString();
|
|---|
| [b9dc94c] | 245 | let finalStatus = status || 'draft';
|
|---|
| 246 | let publishedAt = finalStatus === 'published' ? now : null;
|
|---|
| [834bcc3] | 247 | // Release planning: published + a future publish_at -> 'scheduled'
|
|---|
| 248 | // (the Scheduler makes it live at that moment). Past/empty -> live immediately.
|
|---|
| [b9dc94c] | 249 | let publishAt = null;
|
|---|
| 250 | const pa = Date.parse(req.body.publish_at || '');
|
|---|
| [11b3ba5] | 251 | if (req.body.schedule_enabled && finalStatus === 'published' && Number.isFinite(pa) && pa > Date.now()) {
|
|---|
| [b9dc94c] | 252 | finalStatus = 'scheduled';
|
|---|
| 253 | publishAt = new Date(pa).toISOString();
|
|---|
| 254 | publishedAt = null;
|
|---|
| 255 | }
|
|---|
| [7bc636b] | 256 |
|
|---|
| 257 | db.prepare(`
|
|---|
| 258 | INSERT INTO posts (
|
|---|
| 259 | id, site_id, slug, author_id, title, content, excerpt,
|
|---|
| [1d6f9a2] | 260 | status, cover_image_url, cover_video_url, pinned, tags, type, noindex, fan_only, nsfw, content_warning, publish_at,
|
|---|
| [7bc636b] | 261 | created_at, updated_at, published_at
|
|---|
| [1d6f9a2] | 262 | ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
|
|---|
| [7bc636b] | 263 | `).run(
|
|---|
| 264 | postId, site.id, finalSlug, req.session.user.id,
|
|---|
| 265 | title || finalSlug, cleanContent, excerpt || '',
|
|---|
| [1d6f9a2] | 266 | finalStatus, cover_image_url || null, (req.body.cover_video_url || null), parsePinnedRank(pinned),
|
|---|
| [7bc636b] | 267 | JSON.stringify((tags || '').split(',').map(t => t.trim()).filter(Boolean)),
|
|---|
| [b7d4458] | 268 | finalType, noindex ? 1 : 0, fanOnly, nsfw, cw, publishAt,
|
|---|
| [7bc636b] | 269 | now, now, publishedAt
|
|---|
| 270 | );
|
|---|
| 271 |
|
|---|
| [e0a1ec1] | 272 | // Per-post "share audio on the fediverse" → set fedi_open on this post's hosted tracks
|
|---|
| 273 | // BEFORE federating, so the Create note carries the right Audio attachments.
|
|---|
| 274 | setAudioFediOpen(site.id, cleanContent, req.body.fedi_open_audio);
|
|---|
| 275 |
|
|---|
| [7bc636b] | 276 | if (finalStatus === 'published') {
|
|---|
| 277 | try {
|
|---|
| 278 | db.prepare(
|
|---|
| 279 | 'INSERT INTO posts_fts(content, title, author, post_id) VALUES (?, ?, ?, ?)'
|
|---|
| 280 | ).run(HtmlSanitizerService.toPlainText(cleanContent), title || '', req.session.user.username, postId);
|
|---|
| 281 | } catch (e) { /* FTS index issues are non-fatal */ }
|
|---|
| [5bf63b7] | 282 |
|
|---|
| [80c36a1] | 283 | // ActivityPub: federate a freshly published post to followers. fan_only → delivered
|
|---|
| 284 | // to followers but addressed followers-only (option A: "fans" = your fedi followers).
|
|---|
| 285 | if (status === 'published') {
|
|---|
| [5bf63b7] | 286 | ActivityPubService.deliverCreate(site, {
|
|---|
| 287 | id: postId, slug: finalSlug, title: title || finalSlug,
|
|---|
| [857a06f] | 288 | content: cleanContent, cover_image_url: cover_image_url || null, cover_video_url: req.body.cover_video_url || null,
|
|---|
| [b7d4458] | 289 | published_at: publishedAt, created_at: now, fan_only: fanOnly, nsfw, content_warning: cw,
|
|---|
| [5bf63b7] | 290 | }).catch(() => { /* best-effort */ });
|
|---|
| 291 | }
|
|---|
| [7bc636b] | 292 | }
|
|---|
| 293 |
|
|---|
| 294 | // HTMX request -> return redirect header
|
|---|
| 295 | if (req.headers['hx-request']) {
|
|---|
| 296 | res.setHeader('HX-Redirect', `${res.locals.siteUrlBase || ''}/${finalSlug}`);
|
|---|
| 297 | return res.send('OK');
|
|---|
| 298 | }
|
|---|
| 299 |
|
|---|
| 300 | res.redirect(`${res.locals.siteUrlBase || ''}/${finalSlug}`);
|
|---|
| 301 | });
|
|---|
| 302 |
|
|---|
| 303 | // ==================== EDIT POST FORM ====================
|
|---|
| 304 | router.get('/posts/:slug/edit', requireAuth, (req, res) => {
|
|---|
| 305 | const site = res.locals.site;
|
|---|
| 306 | if (!site) return res.status(404).send('Site required');
|
|---|
| 307 |
|
|---|
| 308 | const post = db.prepare(
|
|---|
| 309 | 'SELECT * FROM posts WHERE site_id = ? AND slug = ?'
|
|---|
| 310 | ).get(site.id, req.params.slug);
|
|---|
| 311 |
|
|---|
| 312 | if (!post) return res.status(404).send('Post not found');
|
|---|
| 313 | if (!PermissionsService.canEditPost(req.session.user, post, site)) {
|
|---|
| 314 | return res.status(403).send('No permission');
|
|---|
| 315 | }
|
|---|
| 316 |
|
|---|
| 317 | if (post.tags) {
|
|---|
| 318 | try { post.tags = JSON.parse(post.tags); } catch { post.tags = []; }
|
|---|
| 319 | } else {
|
|---|
| 320 | post.tags = [];
|
|---|
| 321 | }
|
|---|
| 322 |
|
|---|
| 323 | renderPage(req, res, 'pages/post-edit', {
|
|---|
| 324 | post,
|
|---|
| 325 | isNew: false,
|
|---|
| [e0a1ec1] | 326 | fediOpenAudio: postAudioFediOpen(site.id, post.content),
|
|---|
| [7bc636b] | 327 | pageTitle: 'Edit: ' + (post.title || 'Untitled'),
|
|---|
| 328 | bodyClass: 'on-special',
|
|---|
| 329 | });
|
|---|
| 330 | });
|
|---|
| 331 |
|
|---|
| 332 | // ==================== SAVE POST ====================
|
|---|
| 333 | router.post('/posts/:slug/save', requireAuth, (req, res) => {
|
|---|
| 334 | const site = res.locals.site;
|
|---|
| 335 | if (!site) return res.status(404).send('Site required');
|
|---|
| 336 |
|
|---|
| 337 | const post = db.prepare(
|
|---|
| 338 | 'SELECT * FROM posts WHERE site_id = ? AND slug = ?'
|
|---|
| 339 | ).get(site.id, req.params.slug);
|
|---|
| 340 |
|
|---|
| 341 | if (!post) return res.status(404).send('Post not found');
|
|---|
| 342 | if (!PermissionsService.canEditPost(req.session.user, post, site)) {
|
|---|
| 343 | return res.status(403).send('No permission');
|
|---|
| 344 | }
|
|---|
| 345 |
|
|---|
| 346 | const { title, content, excerpt, status, pinned, cover_image_url, tags, noindex, type } = req.body;
|
|---|
| [b9dc94c] | 347 | const fanOnly = req.body.fan_only ? 1 : 0;
|
|---|
| [837fc9c] | 348 | const nsfw = req.body.nsfw ? 1 : 0;
|
|---|
| [b7d4458] | 349 | const cw = (req.body.content_warning || '').trim().slice(0, 200);
|
|---|
| [7bc636b] | 350 | const newSlug = req.body.slug;
|
|---|
| 351 | const action = req.body.action || 'save';
|
|---|
| 352 | const validTypes = new Set(['post', 'foto', 'video', 'audio']);
|
|---|
| 353 | const finalType = validTypes.has(type) ? type : (post.type || 'post');
|
|---|
| 354 |
|
|---|
| 355 | // Sanitize before storage — same pipeline as create.
|
|---|
| 356 | const cleanContent = HtmlSanitizerService.sanitize(content || '');
|
|---|
| 357 |
|
|---|
| 358 | let finalSlug = post.slug;
|
|---|
| 359 | if (newSlug && newSlug !== post.slug) {
|
|---|
| 360 | const cleaned = newSlug.toLowerCase().replace(/[^a-z0-9]+/g, '-').replace(/^-|-$/g, '');
|
|---|
| [b27cde6] | 361 | const safe = RESERVED_SLUGS.has(cleaned) ? `${cleaned}-post` : cleaned;
|
|---|
| [834bcc3] | 362 | // Duplicate slug? Make it unique automatically instead of rejecting (own post may keep its slug).
|
|---|
| [b27cde6] | 363 | finalSlug = uniqueSlug(site.id, safe, post.id);
|
|---|
| [7bc636b] | 364 | }
|
|---|
| 365 |
|
|---|
| 366 | const now = new Date().toISOString();
|
|---|
| 367 | let finalStatus = status || post.status;
|
|---|
| 368 | let publishedAt = post.published_at;
|
|---|
| 369 |
|
|---|
| 370 | if (action === 'publish') {
|
|---|
| 371 | finalStatus = 'published';
|
|---|
| 372 | if (!publishedAt) publishedAt = now;
|
|---|
| 373 | }
|
|---|
| 374 |
|
|---|
| [834bcc3] | 375 | // Release planning: published + future publish_at -> 'scheduled'.
|
|---|
| [b9dc94c] | 376 | let publishAt = null;
|
|---|
| 377 | const pa = Date.parse(req.body.publish_at || '');
|
|---|
| [11b3ba5] | 378 | if (req.body.schedule_enabled && finalStatus === 'published' && Number.isFinite(pa) && pa > Date.now()) {
|
|---|
| [b9dc94c] | 379 | finalStatus = 'scheduled';
|
|---|
| 380 | publishAt = new Date(pa).toISOString();
|
|---|
| 381 | publishedAt = null;
|
|---|
| 382 | }
|
|---|
| 383 |
|
|---|
| [7bc636b] | 384 | db.prepare(`
|
|---|
| 385 | UPDATE posts SET
|
|---|
| 386 | title = ?, content = ?, excerpt = ?, status = ?,
|
|---|
| [1d6f9a2] | 387 | cover_image_url = ?, cover_video_url = ?, pinned = ?, tags = ?,
|
|---|
| [b7d4458] | 388 | type = ?, noindex = ?, fan_only = ?, nsfw = ?, content_warning = ?, publish_at = ?,
|
|---|
| [7bc636b] | 389 | slug = ?, published_at = ?, updated_at = ?
|
|---|
| 390 | WHERE id = ?
|
|---|
| 391 | `).run(
|
|---|
| 392 | title, cleanContent, excerpt, finalStatus,
|
|---|
| [1d6f9a2] | 393 | cover_image_url || null, (req.body.cover_video_url || null), parsePinnedRank(pinned),
|
|---|
| [7bc636b] | 394 | JSON.stringify((tags || '').split(',').map(t => t.trim()).filter(Boolean)),
|
|---|
| [b7d4458] | 395 | finalType, noindex ? 1 : 0, fanOnly, nsfw, cw, publishAt,
|
|---|
| [7bc636b] | 396 | finalSlug, publishedAt, now, post.id
|
|---|
| 397 | );
|
|---|
| 398 |
|
|---|
| [e0a1ec1] | 399 | // Per-post "share audio on the fediverse" → set fedi_open on this post's hosted tracks
|
|---|
| 400 | // BEFORE federating, so the Update/Create note carries the right Audio attachments.
|
|---|
| 401 | setAudioFediOpen(site.id, cleanContent, req.body.fedi_open_audio);
|
|---|
| 402 |
|
|---|
| [7bc636b] | 403 | // Update FTS
|
|---|
| 404 | try {
|
|---|
| 405 | db.prepare('DELETE FROM posts_fts WHERE post_id = ?').run(post.id);
|
|---|
| 406 | if (finalStatus === 'published') {
|
|---|
| 407 | db.prepare(
|
|---|
| 408 | 'INSERT INTO posts_fts(content, title, author, post_id) VALUES (?, ?, ?, ?)'
|
|---|
| 409 | ).run(HtmlSanitizerService.toPlainText(cleanContent), title || '', req.session.user.username, post.id);
|
|---|
| 410 | }
|
|---|
| 411 | } catch (e) { /* FTS issues non-fatal */ }
|
|---|
| 412 |
|
|---|
| [ca25f360] | 413 | // ActivityPub: federate edits to followers. A post that BECOMES published →
|
|---|
| 414 | // Create (new post); an already-published post that's edited → Update (so
|
|---|
| [80c36a1] | 415 | // Mastodon refreshes its cached copy). fan_only → followers-only (option A).
|
|---|
| 416 | if (finalStatus === 'published') {
|
|---|
| [ca25f360] | 417 | const apPost = {
|
|---|
| [5a6a457] | 418 | id: post.id, slug: finalSlug, title: title || finalSlug,
|
|---|
| [857a06f] | 419 | content: cleanContent, cover_image_url: cover_image_url || null, cover_video_url: req.body.cover_video_url || null,
|
|---|
| [b7d4458] | 420 | published_at: publishedAt, created_at: post.created_at, fan_only: fanOnly, nsfw, content_warning: cw,
|
|---|
| [ca25f360] | 421 | };
|
|---|
| 422 | if (post.status !== 'published') ActivityPubService.deliverCreate(site, apPost).catch(() => { /* best-effort */ });
|
|---|
| 423 | else ActivityPubService.deliverUpdate(site, apPost).catch(() => { /* best-effort */ });
|
|---|
| [5a6a457] | 424 | }
|
|---|
| 425 |
|
|---|
| [55bba23] | 426 | // Pin/unpin/reorder → push Add/Remove activities so followers' instances update the
|
|---|
| 427 | // pinned order immediately (reliable, unlike re-fetching the cached featured collection).
|
|---|
| [f1e0c1f] | 428 | if ((post.pinned || 0) !== parsePinnedRank(pinned)) {
|
|---|
| [55bba23] | 429 | const unpinned = (post.pinned || 0) > 0 && parsePinnedRank(pinned) === 0 ? [post.id] : [];
|
|---|
| 430 | ActivityPubService.resyncFeaturedPins(site, unpinned).catch(() => { /* best-effort */ });
|
|---|
| [f1e0c1f] | 431 | }
|
|---|
| 432 |
|
|---|
| [7bc636b] | 433 | res.redirect(`${res.locals.siteUrlBase || ''}/${finalSlug}`);
|
|---|
| 434 | });
|
|---|
| 435 |
|
|---|
| 436 | // ==================== DELETE POST ====================
|
|---|
| 437 | router.post('/posts/:slug/delete', requireAuth, (req, res) => {
|
|---|
| 438 | const site = res.locals.site;
|
|---|
| 439 | if (!site) return res.status(404).send('Site required');
|
|---|
| 440 |
|
|---|
| 441 | const post = db.prepare(
|
|---|
| 442 | 'SELECT * FROM posts WHERE site_id = ? AND slug = ?'
|
|---|
| 443 | ).get(site.id, req.params.slug);
|
|---|
| 444 |
|
|---|
| 445 | if (!post) return res.status(404).send('Not found');
|
|---|
| 446 | if (!PermissionsService.canDeletePost(req.session.user, post, site)) {
|
|---|
| 447 | return res.status(403).send('No permission');
|
|---|
| 448 | }
|
|---|
| 449 |
|
|---|
| [80c36a1] | 450 | // ActivityPub: tell followers the post is gone (Delete + Tombstone) if it was
|
|---|
| 451 | // federated (any published post now federates — fan_only goes followers-only).
|
|---|
| 452 | // Fire before the row is removed — we still have post.id (= the Note id).
|
|---|
| 453 | if (post.status === 'published') {
|
|---|
| [eb852c5] | 454 | ActivityPubService.deliverDelete(site, post).catch(() => { /* best-effort */ });
|
|---|
| 455 | }
|
|---|
| 456 |
|
|---|
| [7bc636b] | 457 | // Cascade: comments + FTS row, THEN the post itself.
|
|---|
| 458 | // FK constraints are ON (config/database.js), so a bare DELETE on posts
|
|---|
| 459 | // fails when comments still reference it.
|
|---|
| 460 | const cascade = db.transaction(() => {
|
|---|
| 461 | db.prepare('DELETE FROM comments WHERE post_id = ?').run(post.id);
|
|---|
| 462 | try { db.prepare('DELETE FROM posts_fts WHERE post_id = ?').run(post.id); } catch {}
|
|---|
| 463 | db.prepare('DELETE FROM posts WHERE id = ?').run(post.id);
|
|---|
| 464 | });
|
|---|
| 465 | cascade();
|
|---|
| 466 |
|
|---|
| 467 | if (req.headers['hx-request']) {
|
|---|
| 468 | res.setHeader('HX-Redirect', res.locals.siteUrlBase || '/');
|
|---|
| 469 | return res.send('OK');
|
|---|
| 470 | }
|
|---|
| 471 | res.redirect(res.locals.siteUrlBase || '/');
|
|---|
| 472 | });
|
|---|
| 473 |
|
|---|
| 474 | // ==================== ARCHIVE ====================
|
|---|
| 475 | router.get('/archive', (req, res) => {
|
|---|
| 476 | const site = res.locals.site;
|
|---|
| 477 | if (!site) return res.status(404).send('No site');
|
|---|
| 478 |
|
|---|
| 479 | const posts = db.prepare(`
|
|---|
| 480 | SELECT p.*, u.username as author_username
|
|---|
| 481 | FROM posts p JOIN users u ON p.author_id = u.id
|
|---|
| 482 | WHERE p.site_id = ? AND p.status = 'published'
|
|---|
| 483 | ORDER BY p.published_at DESC
|
|---|
| 484 | `).all(site.id);
|
|---|
| 485 |
|
|---|
| 486 | // Group by year/month
|
|---|
| 487 | const grouped = {};
|
|---|
| 488 | for (const post of posts) {
|
|---|
| 489 | if (!post.published_at) continue;
|
|---|
| 490 | const d = new Date(post.published_at);
|
|---|
| 491 | const year = d.getFullYear();
|
|---|
| 492 | const month = d.getMonth();
|
|---|
| 493 | const monthName = ['januari','februari','maart','april','mei','juni','juli','augustus','september','oktober','november','december'][month];
|
|---|
| 494 |
|
|---|
| 495 | if (!grouped[year]) grouped[year] = {};
|
|---|
| 496 | if (!grouped[year][monthName]) grouped[year][monthName] = [];
|
|---|
| 497 | grouped[year][monthName].push(post);
|
|---|
| 498 | }
|
|---|
| 499 |
|
|---|
| 500 | renderPage(req, res, 'pages/archive', {
|
|---|
| 501 | grouped,
|
|---|
| 502 | totalPosts: posts.length,
|
|---|
| 503 | pageTitle: 'Archive - ' + site.title,
|
|---|
| 504 | bodyClass: 'on-archive',
|
|---|
| 505 | });
|
|---|
| 506 | });
|
|---|
| 507 |
|
|---|
| [5410d4d] | 508 | // Local likes/favourites are removed — engagement is fediverse-only now
|
|---|
| 509 | // (the ⭐ on a post likes via the fediverse). No post_likes, no /favorieten.
|
|---|
| [535f955] | 510 |
|
|---|
| [834bcc3] | 511 | // Newer/Older neighbours across ALL posts in feed order. Shared by the full
|
|---|
| 512 | // post render and the fan gate (premium fan_only) so navigation is consistent
|
|---|
| 513 | // everywhere. Solo: within the site (pinned first, then date). Hub: globally by date.
|
|---|
| [1e2e9e7] | 514 | function postNeighbors(site, post, isHub) {
|
|---|
| 515 | const urlBaseFor = (p) => (isHub && p && p.site_slug) ? `/user/${p.site_slug}` : '';
|
|---|
| 516 | const ordered = isHub
|
|---|
| 517 | ? db.prepare(`
|
|---|
| [8cdb377] | 518 | SELECT p.id, p.slug, p.title, p.pinned, s.slug AS site_slug
|
|---|
| [1e2e9e7] | 519 | FROM posts p JOIN sites s ON s.id = p.site_id
|
|---|
| 520 | WHERE p.status = 'published'
|
|---|
| 521 | ORDER BY p.published_at DESC
|
|---|
| 522 | `).all()
|
|---|
| 523 | : db.prepare(`
|
|---|
| [8cdb377] | 524 | SELECT id, slug, title, pinned FROM posts
|
|---|
| [1e2e9e7] | 525 | WHERE site_id = ? AND status = 'published'
|
|---|
| 526 | ORDER BY (pinned = 0) ASC, pinned ASC, published_at DESC
|
|---|
| 527 | `).all(site.id);
|
|---|
| 528 | const idx = ordered.findIndex((p) => p.id === post.id);
|
|---|
| 529 | const newerPost = idx > 0 ? ordered[idx - 1] : null;
|
|---|
| 530 | const olderPost = (idx >= 0 && idx < ordered.length - 1) ? ordered[idx + 1] : null;
|
|---|
| 531 | if (newerPost) newerPost._urlBase = urlBaseFor(newerPost);
|
|---|
| 532 | if (olderPost) olderPost._urlBase = urlBaseFor(olderPost);
|
|---|
| 533 | return { newerPost, olderPost };
|
|---|
| 534 | }
|
|---|
| 535 |
|
|---|
| [3d7312a] | 536 | // ==================== REMOTE INTERACTION (reply to a fediverse post as your site) ====================
|
|---|
| 537 | // Standard fediverse "reply from your own server" landing endpoint. A post page
|
|---|
| 538 | // elsewhere bounces the visitor here with ?uri=<remote post>; the site owner
|
|---|
| 539 | // composes a reply that federates back to that post.
|
|---|
| 540 | router.get('/authorize_interaction', requireSiteManager, async (req, res) => {
|
|---|
| 541 | const site = res.locals.site;
|
|---|
| 542 | const uri = (req.query.uri || '').toString();
|
|---|
| [41a7637] | 543 | const sent = !!req.query.sent;
|
|---|
| [8ad1784] | 544 | const followed = !!req.query.followed;
|
|---|
| 545 | let target = null, followTarget = null;
|
|---|
| 546 | if (!sent && !followed && uri) {
|
|---|
| 547 | try { target = await ActivityPubService.resolveRemoteNote(uri); } catch { /* ignore */ }
|
|---|
| 548 | // Not a post? Maybe the URI is a profile/actor → offer Follow, not reply.
|
|---|
| 549 | if (!target) { try { followTarget = await ActivityPubService.resolveRemoteActor(uri); } catch { /* ignore */ } }
|
|---|
| 550 | }
|
|---|
| [3d7312a] | 551 | renderPage(req, res, 'pages/authorize-interaction', {
|
|---|
| [0aa23cf] | 552 | pageTitle: 'Interacteer via de fediverse',
|
|---|
| [3d7312a] | 553 | bodyClass: 'on-special',
|
|---|
| 554 | uri,
|
|---|
| 555 | target,
|
|---|
| [8ad1784] | 556 | followTarget,
|
|---|
| [41a7637] | 557 | sent,
|
|---|
| [8ad1784] | 558 | followed,
|
|---|
| [0aa23cf] | 559 | liked: !!req.query.liked,
|
|---|
| [b6cdc3d] | 560 | boosted: !!req.query.boosted,
|
|---|
| [3d37c67] | 561 | reacted: (site && uri) ? ActivityPubService.getMyReactions(site.slug, uri) : { liked: false, boosted: false },
|
|---|
| [3d7312a] | 562 | siteTitle: site ? site.title : '',
|
|---|
| 563 | });
|
|---|
| 564 | });
|
|---|
| 565 |
|
|---|
| [3d37c67] | 566 | // ⭐ Like / unlike a remote post from your own site (toggle on the interact page).
|
|---|
| [0aa23cf] | 567 | router.post('/authorize_interaction/like', requireSiteManager, (req, res) => {
|
|---|
| 568 | const site = res.locals.site;
|
|---|
| 569 | const uri = (req.body.uri || '').toString();
|
|---|
| [c7ecaf9] | 570 | let on = false;
|
|---|
| [0aa23cf] | 571 | if (site && uri) {
|
|---|
| [c7ecaf9] | 572 | on = !ActivityPubService.getMyReactions(site.slug, uri).liked;
|
|---|
| [0aa23cf] | 573 | ActivityPubService.resolveRemoteNote(uri)
|
|---|
| [3d37c67] | 574 | .then((note) => note && ActivityPubService.sendInteraction(site, on ? 'like' : 'unlike', note.object_uri || uri, note.actor_uri))
|
|---|
| [0aa23cf] | 575 | .catch((e) => console.warn('[AP] remote like failed:', e.message));
|
|---|
| [3d37c67] | 576 | ActivityPubService.setMyReaction(site.slug, uri, 'like', on);
|
|---|
| [0aa23cf] | 577 | }
|
|---|
| [c7ecaf9] | 578 | if (req.get('X-Requested-With') === 'fetch') return res.json({ ok: true, on });
|
|---|
| [3d37c67] | 579 | res.redirect('/authorize_interaction?uri=' + encodeURIComponent(uri));
|
|---|
| [0aa23cf] | 580 | });
|
|---|
| 581 |
|
|---|
| [3d37c67] | 582 | // 🔁 Boost / unboost a remote post from your own site (toggle on the interact page).
|
|---|
| 583 | // Also flags it for the Cirkel (markBoosted is a no-op if the post isn't in your timeline).
|
|---|
| [b6cdc3d] | 584 | router.post('/authorize_interaction/boost', requireSiteManager, (req, res) => {
|
|---|
| 585 | const site = res.locals.site;
|
|---|
| 586 | const uri = (req.body.uri || '').toString();
|
|---|
| [c7ecaf9] | 587 | let on = false;
|
|---|
| [b6cdc3d] | 588 | if (site && uri) {
|
|---|
| [c7ecaf9] | 589 | on = !ActivityPubService.getMyReactions(site.slug, uri).boosted;
|
|---|
| [b6cdc3d] | 590 | ActivityPubService.resolveRemoteNote(uri)
|
|---|
| 591 | .then((note) => {
|
|---|
| 592 | if (!note) return;
|
|---|
| 593 | const id = note.object_uri || uri;
|
|---|
| [3d37c67] | 594 | return Promise.resolve(ActivityPubService.sendInteraction(site, on ? 'boost' : 'unboost', id, note.actor_uri))
|
|---|
| [74d61e6] | 595 | // Boost → store the post in the timeline (even if you don't follow the author) so it
|
|---|
| 596 | // surfaces in the Cirkel; unboost → just clear the flag.
|
|---|
| 597 | .then(() => on ? ActivityPubService.upsertBoostedNote(site.slug, note) : ActivityPubService.unmarkBoosted(site.slug, id));
|
|---|
| [b6cdc3d] | 598 | })
|
|---|
| 599 | .catch((e) => console.warn('[AP] remote boost failed:', e.message));
|
|---|
| [3d37c67] | 600 | ActivityPubService.setMyReaction(site.slug, uri, 'boost', on);
|
|---|
| [b6cdc3d] | 601 | }
|
|---|
| [c7ecaf9] | 602 | if (req.get('X-Requested-With') === 'fetch') return res.json({ ok: true, on });
|
|---|
| [3d37c67] | 603 | res.redirect('/authorize_interaction?uri=' + encodeURIComponent(uri));
|
|---|
| [b6cdc3d] | 604 | });
|
|---|
| 605 |
|
|---|
| [8ad1784] | 606 | // Follow a remote actor from your own site (when the target is a profile, not a post).
|
|---|
| 607 | router.post('/authorize_interaction/follow', requireSiteManager, (req, res) => {
|
|---|
| 608 | const site = res.locals.site;
|
|---|
| 609 | const uri = (req.body.uri || '').toString();
|
|---|
| 610 | if (site && uri) {
|
|---|
| 611 | ActivityPubService.followActor(site, uri)
|
|---|
| 612 | .catch((e) => console.warn('[AP] remote follow failed:', e.message));
|
|---|
| 613 | }
|
|---|
| 614 | res.redirect('/authorize_interaction?followed=1&uri=' + encodeURIComponent(uri));
|
|---|
| 615 | });
|
|---|
| 616 |
|
|---|
| [41a7637] | 617 | router.post('/authorize_interaction', requireSiteManager, (req, res) => {
|
|---|
| [3d7312a] | 618 | const site = res.locals.site;
|
|---|
| 619 | const uri = (req.body.uri || '').toString();
|
|---|
| 620 | const text = (req.body.text || '').toString();
|
|---|
| 621 | if (site && uri && text.trim()) {
|
|---|
| [41a7637] | 622 | // Resolve + deliver in the background so Send responds instantly.
|
|---|
| 623 | ActivityPubService.resolveRemoteNote(uri)
|
|---|
| [de3d24b] | 624 | .then((parent) => parent && ActivityPubService.deliverReply(site, { postId: parent.localPostId || '', postSlug: null, parent, text }))
|
|---|
| [41a7637] | 625 | .catch((e) => console.warn('[AP] remote reply failed:', e.message));
|
|---|
| [3d7312a] | 626 | }
|
|---|
| [41a7637] | 627 | res.redirect('/authorize_interaction?sent=1&uri=' + encodeURIComponent(uri));
|
|---|
| [3d7312a] | 628 | });
|
|---|
| 629 |
|
|---|
| [7d932ce] | 630 | // Manage / delete your own outbound fediverse replies (site owner only).
|
|---|
| 631 | router.get('/fediverse', requireSiteManager, (req, res) => {
|
|---|
| 632 | const site = res.locals.site;
|
|---|
| 633 | const items = site ? ActivityPubService.listOutbox(site.slug) : [];
|
|---|
| 634 | renderPage(req, res, 'pages/authorize-interaction', {
|
|---|
| 635 | pageTitle: 'Mijn fediverse-reacties', bodyClass: 'on-special',
|
|---|
| 636 | manage: items, uri: '', target: null, sent: false, siteTitle: site ? site.title : '',
|
|---|
| 637 | });
|
|---|
| 638 | });
|
|---|
| 639 |
|
|---|
| 640 | router.post('/fediverse/:id/delete', requireSiteManager, async (req, res) => {
|
|---|
| 641 | const site = res.locals.site;
|
|---|
| 642 | if (site) {
|
|---|
| 643 | try { await ActivityPubService.deliverOutboxDelete(site, req.params.id); }
|
|---|
| 644 | catch (e) { console.warn('[AP] outbox delete failed:', e.message); }
|
|---|
| 645 | }
|
|---|
| 646 | res.redirect(req.get('Referer') || `${res.locals.siteUrlBase || ''}/fediverse`);
|
|---|
| 647 | });
|
|---|
| 648 |
|
|---|
| [bddbfe0] | 649 | // Edit one of your own outbound fediverse replies (owner only) → sends an Update(Note).
|
|---|
| 650 | router.post('/fediverse/:id/edit', requireSiteManager, async (req, res) => {
|
|---|
| 651 | const site = res.locals.site;
|
|---|
| 652 | if (site && String(req.body.text || '').trim()) {
|
|---|
| 653 | try { await ActivityPubService.deliverOutboxUpdate(site, req.params.id, req.body.text); }
|
|---|
| 654 | catch (e) { console.warn('[AP] outbox edit failed:', e.message); }
|
|---|
| 655 | }
|
|---|
| 656 | res.redirect(req.get('Referer') || `${res.locals.siteUrlBase || ''}/fediverse`);
|
|---|
| 657 | });
|
|---|
| 658 |
|
|---|
| [914eb9f] | 659 | // ==================== FEDIVERSE CLIENT: home timeline + following ====================
|
|---|
| [1ecbf71] | 660 | // Build a direct embed iframe for the first embeddable link (YouTube/Spotify/
|
|---|
| 661 | // SoundCloud/Vimeo) in a remote post's content, so others' media plays inline.
|
|---|
| 662 | function timelineEmbedHtml(html) {
|
|---|
| 663 | if (!html) return null;
|
|---|
| 664 | const re = /href=["']([^"']+)["']/gi; let m; const seen = new Set();
|
|---|
| 665 | while ((m = re.exec(html))) {
|
|---|
| 666 | const u = m[1]; if (seen.has(u)) continue; seen.add(u);
|
|---|
| 667 | let p; try { p = AudioEmbedService.detectProvider(u); } catch { p = null; }
|
|---|
| [e091add] | 668 | if (!p) {
|
|---|
| 669 | // PeerTube is decentralised (any instance), so it's not in detectProvider — match its watch URL
|
|---|
| 670 | // (/w/<id> or /videos/watch/<id>) and embed the player. Host is validated (safe chars only), so
|
|---|
| 671 | // it's safe to inline into the iframe src; a non-PeerTube /w/ URL just yields an empty iframe.
|
|---|
| 672 | const pt = u.match(/^https?:\/\/([\w.-]+(?::\d+)?)\/(?:w|videos\/watch)\/([\w-]{6,})/i);
|
|---|
| 673 | if (pt) return `<iframe class="tl-embed-frame" src="https://${pt[1]}/videos/embed/${pt[2]}" title="PeerTube" loading="lazy" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>`;
|
|---|
| 674 | continue;
|
|---|
| 675 | }
|
|---|
| [1ecbf71] | 676 | if (p.provider === 'youtube') return `<iframe class="tl-embed-frame" src="https://www.youtube-nocookie.com/embed/${p.id}" title="YouTube" loading="lazy" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>`;
|
|---|
| 677 | if (p.provider === 'spotify') return `<iframe class="tl-embed-frame tl-embed-spotify" src="https://open.spotify.com/embed/${p.type}/${p.id}" title="Spotify" loading="lazy" frameborder="0" allow="encrypted-media"></iframe>`;
|
|---|
| 678 | if (p.provider === 'soundcloud') return `<iframe class="tl-embed-frame tl-embed-sc" src="https://w.soundcloud.com/player/?url=${encodeURIComponent(p.url)}&color=%23ff5500&visual=false" title="SoundCloud" loading="lazy" frameborder="0" allow="autoplay" scrolling="no"></iframe>`;
|
|---|
| 679 | if (p.provider === 'vimeo') return `<iframe class="tl-embed-frame" src="https://player.vimeo.com/video/${p.id}" title="Vimeo" loading="lazy" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>`;
|
|---|
| [d22b55c] | 680 | if (p.provider === 'bandcamp') return `<iframe class="tl-embed-frame tl-embed-bandcamp" src="https://bandcamp.com/EmbeddedPlayer/url=${encodeURIComponent(u)}/size=large/bgcol=faf8f3/linkcol=c2410c/tracklist=false/transparent=true/" title="Bandcamp" loading="lazy" frameborder="0" allow="encrypted-media"></iframe>`;
|
|---|
| 681 | if (p.provider === 'applemusic') { const am = u.match(/music\.apple\.com\/([a-z]{2}\/(?:album|playlist|song)\/[^/?#]+\/[0-9]+)/i); if (am) return `<iframe class="tl-embed-frame tl-embed-apple" src="https://embed.music.apple.com/${am[1]}" title="Apple Music" loading="lazy" frameborder="0" allow="autoplay; encrypted-media"></iframe>`; }
|
|---|
| [1ecbf71] | 682 | }
|
|---|
| 683 | return null;
|
|---|
| 684 | }
|
|---|
| 685 |
|
|---|
| [84903a1] | 686 | // A federated Klonkt audio post renders as "🎵 … listen on <link>". Embed the remote
|
|---|
| 687 | // Klonkt player (its /embed?post=<slug>). A single-segment path = a Klonkt post slug
|
|---|
| 688 | // (skips Mastodon /@user/123). The origin is whitelisted in the response CSP frame-src.
|
|---|
| 689 | function klonktAudioEmbed(html, url) {
|
|---|
| 690 | if (!html || !url || html.indexOf('🎵') < 0) return null;
|
|---|
| 691 | let u; try { u = new URL(url); } catch { return null; }
|
|---|
| 692 | if (u.protocol !== 'https:' && u.protocol !== 'http:') return null;
|
|---|
| 693 | const slug = u.pathname.replace(/^\/+|\/+$/g, '');
|
|---|
| 694 | if (!slug || slug.indexOf('/') >= 0) return null; // single segment only
|
|---|
| 695 | const src = u.origin + '/embed?post=' + encodeURIComponent(slug);
|
|---|
| [781d613] | 696 | // Drop the now-redundant "🎵 … listen on <site>" line — the embedded player below shows it.
|
|---|
| 697 | const content = html.replace(/<p>🎵[\s\S]*?<\/p>\s*/i, '');
|
|---|
| [ca0ad44] | 698 | return { origin: u.origin, embedUrl: src, content, html: `<iframe class="tl-embed-frame tl-embed-klonkt" src="${src}" title="Audio" loading="lazy" frameborder="0" allow="autoplay; encrypted-media"></iframe>` };
|
|---|
| [84903a1] | 699 | }
|
|---|
| 700 |
|
|---|
| [eefd302] | 701 | router.get('/news', requireSiteManager, (req, res) => {
|
|---|
| [914eb9f] | 702 | const site = res.locals.site;
|
|---|
| [84903a1] | 703 | const cspOrigins = new Set();
|
|---|
| 704 | const timeline = (site ? ActivityPubService.getTimeline(site.slug, 60) : []).map((p) => {
|
|---|
| 705 | let embedHtml = timelineEmbedHtml(p.content);
|
|---|
| [781d613] | 706 | let content = p.content;
|
|---|
| [ca0ad44] | 707 | let embedUrl = null;
|
|---|
| [84903a1] | 708 | if (!embedHtml) {
|
|---|
| 709 | const k = klonktAudioEmbed(p.content, p.url);
|
|---|
| [ca0ad44] | 710 | if (k) { embedHtml = k.html; content = k.content; embedUrl = k.embedUrl; cspOrigins.add(k.origin); }
|
|---|
| [84903a1] | 711 | }
|
|---|
| [ca0ad44] | 712 | // embedUrl = the player's direct /embed?post=… URL. Surfaced so the view can offer a
|
|---|
| 713 | // top-level "open the player" link that works even when a browser shield/CSP blocks
|
|---|
| 714 | // the cross-site iframe (a full-page navigation is not a cross-site frame).
|
|---|
| 715 | return { ...p, content, embedHtml, embedUrl };
|
|---|
| [84903a1] | 716 | });
|
|---|
| 717 | // Option A: allow the followed Klonkt sites' player iframes (you follow them) by
|
|---|
| 718 | // extending ONLY this response's CSP frame-src. The global policy stays locked down.
|
|---|
| 719 | if (cspOrigins.size) {
|
|---|
| 720 | const csp = res.getHeader('Content-Security-Policy');
|
|---|
| 721 | if (csp) {
|
|---|
| 722 | const extra = [...cspOrigins].join(' ');
|
|---|
| 723 | res.setHeader('Content-Security-Policy', String(csp).replace(/frame-src ([^;]*)/i, (m, g) => `frame-src ${g} ${extra}`));
|
|---|
| 724 | }
|
|---|
| 725 | }
|
|---|
| [eefd302] | 726 | renderPage(req, res, 'pages/news', {
|
|---|
| 727 | pageTitle: 'News', bodyClass: 'on-special',
|
|---|
| [46f3dd6] | 728 | timeline,
|
|---|
| 729 | success: req.query.success || null, error: req.query.error || null,
|
|---|
| 730 | });
|
|---|
| 731 | });
|
|---|
| 732 |
|
|---|
| 733 | // Volgend — manage the accounts you follow (+ per-account auto-boost toggles).
|
|---|
| [297c77d] | 734 | router.get('/following', requireSiteManager, (req, res) => {
|
|---|
| [46f3dd6] | 735 | const site = res.locals.site;
|
|---|
| 736 | const following = site ? ActivityPubService.listFollowing(site.slug) : [];
|
|---|
| [297c77d] | 737 | renderPage(req, res, 'pages/following', {
|
|---|
| [46f3dd6] | 738 | pageTitle: 'Volgend', bodyClass: 'on-special',
|
|---|
| 739 | following,
|
|---|
| [914eb9f] | 740 | success: req.query.success || null, error: req.query.error || null,
|
|---|
| 741 | });
|
|---|
| 742 | });
|
|---|
| 743 |
|
|---|
| [eefd302] | 744 | router.post('/news/follow', requireSiteManager, async (req, res) => {
|
|---|
| [914eb9f] | 745 | const site = res.locals.site;
|
|---|
| 746 | const handle = (req.body.handle || '').toString();
|
|---|
| 747 | let q = 'success=' + encodeURIComponent('Volgverzoek verstuurd');
|
|---|
| 748 | if (site && handle.trim()) {
|
|---|
| 749 | try {
|
|---|
| [f278df9] | 750 | const r = await ActivityPubService.followActor(site, handle, !!req.body.auto_boost);
|
|---|
| [914eb9f] | 751 | if (r && r.error) q = 'error=' + encodeURIComponent(r.error === 'not_found' ? 'Account niet gevonden' : (r.error === 'unreachable' ? 'Server onbereikbaar' : 'Volgen mislukt'));
|
|---|
| [484adf8] | 752 | else {
|
|---|
| [fda08c2] | 753 | q = 'success=' + encodeURIComponent('Je volgt nu ' + ((r && r.name) || handle));
|
|---|
| [484adf8] | 754 | }
|
|---|
| [914eb9f] | 755 | } catch (e) { q = 'error=' + encodeURIComponent('Volgen mislukt'); }
|
|---|
| 756 | }
|
|---|
| [297c77d] | 757 | res.redirect('/following?' + q);
|
|---|
| [914eb9f] | 758 | });
|
|---|
| 759 |
|
|---|
| [eefd302] | 760 | router.post('/news/unfollow', requireSiteManager, async (req, res) => {
|
|---|
| [914eb9f] | 761 | const site = res.locals.site;
|
|---|
| 762 | const actorUri = (req.body.actor_uri || '').toString();
|
|---|
| 763 | if (site && actorUri) { try { await ActivityPubService.unfollowActor(site, actorUri); } catch (e) { /* ignore */ } }
|
|---|
| [297c77d] | 764 | res.redirect('/following?success=' + encodeURIComponent('Ontvolgd'));
|
|---|
| [914eb9f] | 765 | });
|
|---|
| 766 |
|
|---|
| [73045f9] | 767 | // Toggle "Featured" (show this account's posts in your Cirkel) on an account you follow.
|
|---|
| [eefd302] | 768 | router.post('/news/autoboost', requireSiteManager, (req, res) => {
|
|---|
| [f278df9] | 769 | const site = res.locals.site;
|
|---|
| 770 | const actorUri = (req.body.actor_uri || '').toString();
|
|---|
| 771 | if (site && actorUri) ActivityPubService.setAutoBoost(site.slug, actorUri, !!req.body.auto_boost);
|
|---|
| [297c77d] | 772 | res.redirect('/following?success=' + encodeURIComponent(req.body.auto_boost ? 'Uitgelicht ✨' : 'Niet meer uitgelicht'));
|
|---|
| [f278df9] | 773 | });
|
|---|
| 774 |
|
|---|
| [0a75356] | 775 | // Like / unlike a feed post — a toggle. Fetch request → JSON {on} (stay on the page,
|
|---|
| 776 | // no banner); no-JS → redirect back.
|
|---|
| [eefd302] | 777 | router.post('/news/like', requireSiteManager, async (req, res) => {
|
|---|
| [d988fa0] | 778 | const site = res.locals.site;
|
|---|
| [9d34855] | 779 | const note = (req.body.note || '').toString();
|
|---|
| [0a75356] | 780 | let on = false;
|
|---|
| [9d34855] | 781 | if (site && note) {
|
|---|
| [0a75356] | 782 | on = !ActivityPubService.getTimelineReaction(site.slug, note).liked;
|
|---|
| 783 | try { await ActivityPubService.sendInteraction(site, on ? 'like' : 'unlike', note, (req.body.author || '').toString()); } catch (e) { /* ignore */ }
|
|---|
| 784 | if (on) ActivityPubService.markLiked(site.slug, note); else ActivityPubService.unmarkLiked(site.slug, note);
|
|---|
| [9d34855] | 785 | }
|
|---|
| [0a75356] | 786 | if (req.get('X-Requested-With') === 'fetch') return res.json({ ok: true, on });
|
|---|
| 787 | res.redirect('/news');
|
|---|
| [9d34855] | 788 | });
|
|---|
| 789 |
|
|---|
| [0a75356] | 790 | // Boost / unboost a feed post — a toggle. markBoosted also surfaces it in the Cirkel.
|
|---|
| [eefd302] | 791 | router.post('/news/boost', requireSiteManager, async (req, res) => {
|
|---|
| [d988fa0] | 792 | const site = res.locals.site;
|
|---|
| [5045c30] | 793 | const note = (req.body.note || '').toString();
|
|---|
| [0a75356] | 794 | let on = false;
|
|---|
| [5045c30] | 795 | if (site && note) {
|
|---|
| [0a75356] | 796 | on = !ActivityPubService.getTimelineReaction(site.slug, note).boosted;
|
|---|
| 797 | try { await ActivityPubService.sendInteraction(site, on ? 'boost' : 'unboost', note, (req.body.author || '').toString()); } catch (e) { /* ignore */ }
|
|---|
| 798 | if (on) ActivityPubService.markBoosted(site.slug, note); else ActivityPubService.unmarkBoosted(site.slug, note);
|
|---|
| [78b6d8a] | 799 | }
|
|---|
| [0a75356] | 800 | if (req.get('X-Requested-With') === 'fetch') return res.json({ ok: true, on });
|
|---|
| 801 | res.redirect('/news');
|
|---|
| [78b6d8a] | 802 | });
|
|---|
| 803 |
|
|---|
| [00f669b] | 804 | // Notifications inbox (new followers + replies/likes/boosts on your posts).
|
|---|
| [297c77d] | 805 | router.get('/notifications', requireSiteManager, (req, res) => {
|
|---|
| [00f669b] | 806 | const site = res.locals.site;
|
|---|
| 807 | const items = site ? ActivityPubService.getNotifications(site.slug, 80) : [];
|
|---|
| [3dd99d3] | 808 | // viewing = seen → clears the bell badge. A viewer (kijker) may look but must not
|
|---|
| 809 | // mutate state (the global write-guard only catches non-GET, not this GET-side effect).
|
|---|
| 810 | if (site && !isViewer(req.session.user)) ActivityPubService.markNotificationsSeen(site.slug);
|
|---|
| [00f669b] | 811 | renderPage(req, res, 'pages/fedi-notifications', { pageTitle: 'Meldingen', bodyClass: 'on-special', items });
|
|---|
| 812 | });
|
|---|
| 813 |
|
|---|
| [f5c3870] | 814 | // Blocking / defederation (owner-only).
|
|---|
| [297c77d] | 815 | router.get('/blocking', requireSiteManager, (req, res) => {
|
|---|
| [f5c3870] | 816 | const site = res.locals.site;
|
|---|
| 817 | const blocks = site ? ActivityPubService.listBlocks(site.slug) : [];
|
|---|
| 818 | renderPage(req, res, 'pages/blocks', { pageTitle: 'Blokkeren', bodyClass: 'on-special', blocks, success: req.query.success || null, error: req.query.error || null });
|
|---|
| 819 | });
|
|---|
| 820 |
|
|---|
| [297c77d] | 821 | router.post('/blocking/add', requireSiteManager, async (req, res) => {
|
|---|
| [f5c3870] | 822 | const site = res.locals.site;
|
|---|
| 823 | let q = 'success=' + encodeURIComponent('Geblokkeerd');
|
|---|
| 824 | if (site) {
|
|---|
| 825 | try {
|
|---|
| 826 | const r = await ActivityPubService.blockTarget(site, (req.body.target || '').toString());
|
|---|
| 827 | if (r && r.error) q = 'error=' + encodeURIComponent(r.error === 'not_found' ? 'Account niet gevonden' : 'Voer een @handle of domein in');
|
|---|
| 828 | else q = 'success=' + encodeURIComponent(((r && r.label) || '') + ' geblokkeerd');
|
|---|
| 829 | } catch (e) { q = 'error=' + encodeURIComponent('Blokkeren mislukt'); }
|
|---|
| 830 | }
|
|---|
| 831 | const ref = req.get('Referer') || '';
|
|---|
| [eefd302] | 832 | res.redirect((ref.includes('/news') ? '/news?' : '/blocking?') + q);
|
|---|
| [f5c3870] | 833 | });
|
|---|
| 834 |
|
|---|
| [297c77d] | 835 | router.post('/blocking/remove', requireSiteManager, (req, res) => {
|
|---|
| [f5c3870] | 836 | const site = res.locals.site;
|
|---|
| 837 | if (site) { try { ActivityPubService.unblock(site, (req.body.target || '').toString()); } catch (e) { /* ignore */ } }
|
|---|
| [297c77d] | 838 | res.redirect('/blocking?success=' + encodeURIComponent('Deblokkeerd'));
|
|---|
| [f5c3870] | 839 | });
|
|---|
| 840 |
|
|---|
| [7bc636b] | 841 | // ==================== VIEW POST (last route — catches /:slug) ====================
|
|---|
| 842 | router.get('/:slug', (req, res, next) => {
|
|---|
| 843 | if (RESERVED_SLUGS.has(req.params.slug)) return next();
|
|---|
| 844 |
|
|---|
| 845 | const site = res.locals.site;
|
|---|
| [59e522f] | 846 | if (!site) return next(); // -> nette 404 catch-all
|
|---|
| [7bc636b] | 847 |
|
|---|
| 848 | const post = db.prepare(`
|
|---|
| 849 | SELECT p.*, u.username as author_username, u.avatar_url as author_avatar
|
|---|
| 850 | FROM posts p JOIN users u ON p.author_id = u.id
|
|---|
| 851 | WHERE p.site_id = ? AND p.slug = ?
|
|---|
| 852 | `).get(site.id, req.params.slug);
|
|---|
| 853 |
|
|---|
| [834bcc3] | 854 | if (!post) return next(); // unknown slug -> clean 404 catch-all
|
|---|
| [7bc636b] | 855 |
|
|---|
| 856 | // Permission to view: published OR (logged in + can edit)
|
|---|
| 857 | if (post.status !== 'published') {
|
|---|
| 858 | const canEdit = req.session?.user && PermissionsService.canEditPost(req.session.user, post, site);
|
|---|
| 859 | if (!canEdit) return res.status(403).send('Not published');
|
|---|
| 860 | }
|
|---|
| 861 |
|
|---|
| [834bcc3] | 862 | // Fan-only preview (premium #3): full content only for logged-in fans.
|
|---|
| 863 | // Anonymous visitors get a clean login gate instead of the content (the title/
|
|---|
| 864 | // teaser may still appear elsewhere as a teaser).
|
|---|
| [b9dc94c] | 865 | if (post.fan_only && !(req.session && req.session.user)) {
|
|---|
| [834bcc3] | 866 | // Same Newer/Older navigation as on a normal post, so the visitor doesn't get
|
|---|
| 867 | // stuck on the fan gate but can keep browsing.
|
|---|
| [1e2e9e7] | 868 | const { newerPost, olderPost } = postNeighbors(site, post, res.locals.tenancy === 'hub');
|
|---|
| [b9dc94c] | 869 | return renderPage(req, res, 'pages/fan-gate', {
|
|---|
| 870 | pageTitle: post.title || 'Alleen voor fans',
|
|---|
| 871 | bodyClass: 'on-special',
|
|---|
| 872 | fgTitle: post.title || '',
|
|---|
| 873 | fgNext: (res.locals.siteUrlBase || '') + '/' + post.slug,
|
|---|
| [1e2e9e7] | 874 | newerPost,
|
|---|
| 875 | olderPost,
|
|---|
| [b9dc94c] | 876 | });
|
|---|
| 877 | }
|
|---|
| 878 |
|
|---|
| [834bcc3] | 879 | // Statistics: count the view (skips admins + unpublished own-preview).
|
|---|
| [d549549] | 880 | if (post.status === 'published') recordPostView(post, req);
|
|---|
| 881 |
|
|---|
| [7bc636b] | 882 | // Render content. Content is now user-authored HTML (already sanitized on
|
|---|
| 883 | // save). The pipeline still adds autoembed iframes and shortcode embeds:
|
|---|
| 884 | // stored HTML → autoembed → [[track]]/[[album]]/[[playlist]] → response
|
|---|
| 885 | let html = post.content || '';
|
|---|
| [cb01666] | 886 | if (audioEnabled()) {
|
|---|
| [7bc636b] | 887 | if (site.enable_audio_player !== 0) {
|
|---|
| 888 | html = AudioEmbedService.autoembed(html);
|
|---|
| [1907a18] | 889 | html = AudioEmbedService.embedMediaShortcodes(html);
|
|---|
| [7bc636b] | 890 | html = AudioEmbedService.embedExternalLinkShortcodes(html);
|
|---|
| 891 |
|
|---|
| 892 | // Fetch any tracks referenced by [[track:id]] in this post.
|
|---|
| 893 | // Cheap to do unconditionally — only matches if the post actually has shortcodes.
|
|---|
| 894 | const trackIds = [...html.matchAll(/\[\[track:([A-Za-z0-9_-]+)\]\]/g)].map(m => m[1]);
|
|---|
| 895 | if (trackIds.length) {
|
|---|
| 896 | const placeholders = trackIds.map(() => '?').join(',');
|
|---|
| 897 | const rows = db.prepare(`
|
|---|
| [183875b] | 898 | SELECT t.id, t.title, t.artist, t.cover_url, t.credit, t.license,
|
|---|
| 899 | t.link_spotify, t.link_youtube, t.link_soundcloud, m.filename
|
|---|
| [7bc636b] | 900 | FROM audio_tracks t LEFT JOIN media m ON m.id = t.media_id
|
|---|
| 901 | WHERE t.site_id = ? AND t.id IN (${placeholders})
|
|---|
| 902 | `).all(site.id, ...trackIds);
|
|---|
| 903 | const byId = new Map(rows.map(r => [r.id, r]));
|
|---|
| 904 | html = AudioEmbedService.embedTrackShortcodes(html, (id) => {
|
|---|
| 905 | const r = byId.get(id);
|
|---|
| [d727e92] | 906 | if (!r) return null;
|
|---|
| [7bc636b] | 907 | return {
|
|---|
| 908 | id: r.id,
|
|---|
| 909 | title: r.title,
|
|---|
| 910 | artist: r.artist,
|
|---|
| 911 | cover: r.cover_url,
|
|---|
| [0d7acdf] | 912 | credit: r.credit || '',
|
|---|
| 913 | license: r.license || '',
|
|---|
| [183875b] | 914 | link_spotify: r.link_spotify || '',
|
|---|
| 915 | link_youtube: r.link_youtube || '',
|
|---|
| 916 | link_soundcloud: r.link_soundcloud || '',
|
|---|
| [d727e92] | 917 | url: r.filename ? audioUrl(r.filename) : '', // '' = link-only track
|
|---|
| [7bc636b] | 918 | };
|
|---|
| 919 | });
|
|---|
| 920 | }
|
|---|
| 921 |
|
|---|
| 922 | // Album shortcodes: [[album:Some Album Name]]
|
|---|
| 923 | const albumNames = [...html.matchAll(/\[\[album:([^\]]+)\]\]/g)].map(m => m[1].trim());
|
|---|
| 924 | if (albumNames.length) {
|
|---|
| 925 | const placeholders = albumNames.map(() => '?').join(',');
|
|---|
| 926 | const albumRows = db.prepare(`
|
|---|
| [183875b] | 927 | SELECT t.id, t.title, t.artist, t.album, t.cover_url, t.position,
|
|---|
| 928 | t.link_spotify, t.link_youtube, t.link_soundcloud, m.filename
|
|---|
| [7bc636b] | 929 | FROM audio_tracks t LEFT JOIN media m ON m.id = t.media_id
|
|---|
| 930 | WHERE t.site_id = ? AND t.album IN (${placeholders})
|
|---|
| 931 | ORDER BY t.position ASC, t.created_at ASC
|
|---|
| 932 | `).all(site.id, ...albumNames);
|
|---|
| 933 | const byAlbum = new Map();
|
|---|
| 934 | for (const r of albumRows) {
|
|---|
| [834bcc3] | 935 | // Link-only tracks (no file) remain in the album overview (url '').
|
|---|
| [7bc636b] | 936 | if (!byAlbum.has(r.album)) byAlbum.set(r.album, []);
|
|---|
| 937 | byAlbum.get(r.album).push({
|
|---|
| [359b9ae] | 938 | id: r.id,
|
|---|
| [d727e92] | 939 | url: r.filename ? audioUrl(r.filename) : '',
|
|---|
| [7bc636b] | 940 | title: r.title || 'Untitled',
|
|---|
| 941 | artist: r.artist || '',
|
|---|
| 942 | cover: r.cover_url || '',
|
|---|
| [183875b] | 943 | link_spotify: r.link_spotify || '',
|
|---|
| 944 | link_youtube: r.link_youtube || '',
|
|---|
| 945 | link_soundcloud: r.link_soundcloud || '',
|
|---|
| [7bc636b] | 946 | });
|
|---|
| 947 | }
|
|---|
| 948 | html = AudioEmbedService.embedAlbumShortcodes(html, (name) => {
|
|---|
| 949 | const tracks = byAlbum.get(name);
|
|---|
| 950 | if (!tracks || !tracks.length) return null;
|
|---|
| 951 | return {
|
|---|
| 952 | title: name,
|
|---|
| 953 | artist: tracks[0].artist || '',
|
|---|
| 954 | cover: tracks[0].cover || '',
|
|---|
| 955 | tracks,
|
|---|
| 956 | };
|
|---|
| 957 | });
|
|---|
| 958 | }
|
|---|
| 959 |
|
|---|
| 960 | // Playlist shortcodes: [[playlist:some-slug-id]] — first-class entity.
|
|---|
| 961 | // Editing the playlist propagates to every post that embeds it.
|
|---|
| 962 | const playlistIds = [...html.matchAll(/\[\[playlist:([a-z0-9][a-z0-9-]*)\]\]/gi)]
|
|---|
| 963 | .map(m => m[1].toLowerCase());
|
|---|
| 964 | if (playlistIds.length) {
|
|---|
| 965 | const isAdmin = req.session?.user?.role === 'god';
|
|---|
| 966 | html = AudioEmbedService.embedPlaylistShortcodes(html, (id) => {
|
|---|
| [21522ae] | 967 | return PlaylistService.get(site.id, id, audioUrl);
|
|---|
| [7bc636b] | 968 | }, { isAdmin });
|
|---|
| 969 | }
|
|---|
| 970 | }
|
|---|
| [cb01666] | 971 | } else {
|
|---|
| [834bcc3] | 972 | // LITE mode (KLONKT_AUDIO=off): no own audio (no ffmpeg/stream route).
|
|---|
| 973 | // External embeds (YouTube/SoundCloud/Spotify) remain; the own-audio
|
|---|
| 974 | // shortcodes ([[track]]/[[album]]/[[playlist]]) are cleanly stripped.
|
|---|
| [cb01666] | 975 | html = AudioEmbedService.autoembed(html);
|
|---|
| 976 | html = AudioEmbedService.embedMediaShortcodes(html);
|
|---|
| 977 | html = AudioEmbedService.embedExternalLinkShortcodes(html);
|
|---|
| 978 | html = html.replace(/\[\[(track|album|playlist):[^\]]+\]\]/gi, '');
|
|---|
| 979 | }
|
|---|
| [7bc636b] | 980 | post.content_html = html;
|
|---|
| 981 |
|
|---|
| 982 | if (post.tags) {
|
|---|
| 983 | try { post.tags = JSON.parse(post.tags); } catch { post.tags = []; }
|
|---|
| 984 | } else {
|
|---|
| 985 | post.tags = [];
|
|---|
| 986 | }
|
|---|
| 987 |
|
|---|
| [59f0170] | 988 | // Native comments removed: social interaction is fediverse-only (see the
|
|---|
| 989 | // "From the fediverse" section below).
|
|---|
| [7bc636b] | 990 |
|
|---|
| 991 | // Prev / next chronological (kept for back-compat — "post-nav" feature
|
|---|
| 992 | // below the article still uses these as a simple linear navigation).
|
|---|
| [834bcc3] | 993 | // Hub mode: Related posts + Newer/Older pull from ALL users (all sites),
|
|---|
| 994 | // newest first. Solo mode: within the current site (old behaviour).
|
|---|
| [d54dade] | 995 | const isHub = res.locals.tenancy === 'hub';
|
|---|
| [834bcc3] | 996 | // Per-post URL base: in hub a link points to /user/<site-slug>/<post-slug>.
|
|---|
| [d54dade] | 997 | const urlBaseFor = (p) => (isHub && p && p.site_slug) ? `/user/${p.site_slug}` : '';
|
|---|
| 998 |
|
|---|
| [834bcc3] | 999 | // Newer/Older across ALL posts (shared helper — also used by the fan gate).
|
|---|
| [1e2e9e7] | 1000 | const { newerPost, olderPost } = postNeighbors(site, post, isHub);
|
|---|
| [7bc636b] | 1001 |
|
|---|
| 1002 | // ── Related posts: same-tag matching with recency fallback ─────
|
|---|
| 1003 | // Fetch ~50 candidates, score by tag overlap, take top 3.
|
|---|
| 1004 | // Excluding self via `id != ?`.
|
|---|
| [d54dade] | 1005 | const candidates = isHub
|
|---|
| 1006 | ? db.prepare(`
|
|---|
| [adb6291] | 1007 | SELECT p.id, p.slug, p.title, p.cover_image_url, p.cover_video_url, p.published_at, p.tags, p.nsfw, p.content_warning, s.slug AS site_slug
|
|---|
| [d54dade] | 1008 | FROM posts p JOIN sites s ON s.id = p.site_id
|
|---|
| 1009 | WHERE p.status = 'published' AND p.id != ?
|
|---|
| 1010 | ORDER BY p.published_at DESC LIMIT 50
|
|---|
| 1011 | `).all(post.id)
|
|---|
| 1012 | : db.prepare(`
|
|---|
| [adb6291] | 1013 | SELECT id, slug, title, cover_image_url, cover_video_url, published_at, tags, nsfw, content_warning
|
|---|
| [d54dade] | 1014 | FROM posts
|
|---|
| 1015 | WHERE site_id = ? AND status = 'published' AND id != ?
|
|---|
| 1016 | ORDER BY published_at DESC LIMIT 50
|
|---|
| 1017 | `).all(site.id, post.id);
|
|---|
| [7bc636b] | 1018 |
|
|---|
| 1019 | // Parse tags JSON safely; missing/malformed → empty array.
|
|---|
| 1020 | const parseTags = (raw) => {
|
|---|
| 1021 | if (!raw) return [];
|
|---|
| 1022 | try {
|
|---|
| 1023 | const v = JSON.parse(raw);
|
|---|
| 1024 | return Array.isArray(v) ? v.map(String) : [];
|
|---|
| 1025 | } catch { return []; }
|
|---|
| 1026 | };
|
|---|
| 1027 |
|
|---|
| 1028 | const myTags = new Set(parseTags(post.tags));
|
|---|
| 1029 | let relatedPosts;
|
|---|
| 1030 | if (myTags.size > 0) {
|
|---|
| 1031 | // Score = number of overlapping tags. Posts with zero overlap are
|
|---|
| 1032 | // included only if we don't have 3 with-overlap candidates.
|
|---|
| 1033 | const scored = candidates.map(p => {
|
|---|
| 1034 | const theirTags = parseTags(p.tags);
|
|---|
| 1035 | const overlap = theirTags.reduce((n, t) => n + (myTags.has(t) ? 1 : 0), 0);
|
|---|
| 1036 | return { ...p, _overlap: overlap };
|
|---|
| 1037 | });
|
|---|
| 1038 | const withOverlap = scored.filter(p => p._overlap > 0)
|
|---|
| 1039 | .sort((a, b) => b._overlap - a._overlap || new Date(b.published_at) - new Date(a.published_at));
|
|---|
| 1040 | if (withOverlap.length >= 3) {
|
|---|
| 1041 | relatedPosts = withOverlap.slice(0, 3);
|
|---|
| 1042 | } else {
|
|---|
| 1043 | // Pad with most-recent non-overlap posts so the section is never empty
|
|---|
| 1044 | const overlapIds = new Set(withOverlap.map(p => p.id));
|
|---|
| 1045 | const filler = candidates.filter(p => !overlapIds.has(p.id));
|
|---|
| 1046 | relatedPosts = [...withOverlap, ...filler].slice(0, 3);
|
|---|
| 1047 | }
|
|---|
| 1048 | } else {
|
|---|
| 1049 | // No tags on current post → just show 3 most-recent
|
|---|
| 1050 | relatedPosts = candidates.slice(0, 3);
|
|---|
| 1051 | }
|
|---|
| 1052 | // Strip the internal _overlap field before sending to view
|
|---|
| [d54dade] | 1053 | relatedPosts = relatedPosts.map(({ _overlap, tags, ...rest }) => ({ ...rest, _urlBase: urlBaseFor(rest) }));
|
|---|
| [7bc636b] | 1054 |
|
|---|
| [7d932ce] | 1055 | // Inbound fediverse activity (threaded) for this post.
|
|---|
| 1056 | let fediverse = { thread: [], likeCount: 0, announceCount: 0, total: 0 };
|
|---|
| 1057 | try {
|
|---|
| 1058 | const _apBase = (process.env.PUBLIC_BASE_URL || `${req.protocol}://${req.get('host')}`).replace(/\/+$/, '');
|
|---|
| [c73ac64] | 1059 | fediverse = ActivityPubService.getInteractions(post.id, _apBase, site);
|
|---|
| [7d932ce] | 1060 | } catch { /* non-fatal */ }
|
|---|
| [55bc7f9] | 1061 | // Owner/admin of this site may reply back to a fediverse interaction.
|
|---|
| 1062 | const canManageSite = !!(req.session?.user && PermissionsService.canAdminSite(req.session.user, site));
|
|---|
| [52ea6df] | 1063 | // Avatar for our own (outbound) fediverse replies = the site's profile photo.
|
|---|
| 1064 | const siteAvatar = (site && site.profile_photo) ? site.profile_photo : null;
|
|---|
| [c16e0a5] | 1065 |
|
|---|
| [7bc636b] | 1066 | renderPage(req, res, 'pages/post', {
|
|---|
| 1067 | post,
|
|---|
| [6117035] | 1068 | newerPost,
|
|---|
| 1069 | olderPost,
|
|---|
| [7bc636b] | 1070 | relatedPosts,
|
|---|
| [c16e0a5] | 1071 | fediverse,
|
|---|
| [55bc7f9] | 1072 | canManageSite,
|
|---|
| [52ea6df] | 1073 | siteAvatar,
|
|---|
| [30271e6] | 1074 | postHasPlayableAudio: ActivityPubService.hasPlayableAudio(post.content || '', site.id),
|
|---|
| [328d837] | 1075 | musicLd: MusicMeta.build((process.env.PUBLIC_BASE_URL || `${req.protocol}://${req.get('host')}`).replace(/\/+$/, ''), site, post),
|
|---|
| [7bc636b] | 1076 | pageTitle: post.title + ' - ' + site.title,
|
|---|
| 1077 | socialDescr: post.excerpt || '',
|
|---|
| 1078 | socialImage: post.cover_image_url || '',
|
|---|
| 1079 | bodyClass: 'on-post',
|
|---|
| 1080 | });
|
|---|
| 1081 | });
|
|---|
| 1082 |
|
|---|
| [55bc7f9] | 1083 | // ── Reply back to a fediverse interaction (site owner/admin only) ──
|
|---|
| 1084 | router.post('/posts/:slug/fedi-reply', requireSiteManager, async (req, res) => {
|
|---|
| 1085 | const site = res.locals.site;
|
|---|
| 1086 | if (!site) return res.status(404).send('Site required');
|
|---|
| 1087 | const post = db.prepare('SELECT id, slug FROM posts WHERE site_id = ? AND slug = ?').get(site.id, req.params.slug);
|
|---|
| 1088 | if (!post) return res.status(404).send('Not found');
|
|---|
| 1089 | const parent = ActivityPubService.getInteractionById(req.body.interaction_id);
|
|---|
| 1090 | const text = (req.body.text || '').toString();
|
|---|
| 1091 | if (parent && parent.post_id === post.id && text.trim()) {
|
|---|
| 1092 | try {
|
|---|
| 1093 | await ActivityPubService.deliverReply(site, { postId: post.id, postSlug: post.slug, parent, text });
|
|---|
| 1094 | } catch (e) { console.warn('[AP] reply send failed:', e.message); }
|
|---|
| 1095 | }
|
|---|
| 1096 | res.redirect(`${res.locals.siteUrlBase || ''}/${post.slug}#fediverse`);
|
|---|
| 1097 | });
|
|---|
| 1098 |
|
|---|
| [67fe576] | 1099 | // Owner likes/boosts a fediverse comment on their own post — directly as the
|
|---|
| 1100 | // site, no "your server" detour (mirrors /fedi-reply).
|
|---|
| 1101 | router.post('/posts/:slug/fedi-react', requireSiteManager, async (req, res) => {
|
|---|
| 1102 | const site = res.locals.site;
|
|---|
| 1103 | if (!site) return res.status(404).send('Site required');
|
|---|
| 1104 | const post = db.prepare('SELECT id, slug FROM posts WHERE site_id = ? AND slug = ?').get(site.id, req.params.slug);
|
|---|
| 1105 | if (!post) return res.status(404).send('Not found');
|
|---|
| 1106 | const parent = ActivityPubService.getInteractionById(req.body.interaction_id);
|
|---|
| 1107 | const kind = req.body.kind === 'boost' ? 'boost' : 'like';
|
|---|
| 1108 | if (parent && parent.post_id === post.id && parent.object_uri) {
|
|---|
| [c745659] | 1109 | if (kind === 'boost') {
|
|---|
| 1110 | // Toggle: boost an unboosted comment, or retract it (Undo Announce) if already boosted.
|
|---|
| 1111 | const on = !parent.acted_boost;
|
|---|
| 1112 | ActivityPubService.sendInteraction(site, on ? 'boost' : 'unboost', parent.object_uri, parent.actor_uri)
|
|---|
| 1113 | .catch((e) => console.warn('[AP] reaction failed:', e.message));
|
|---|
| 1114 | ActivityPubService.setInteractionBoosted(parent.id, on);
|
|---|
| 1115 | } else {
|
|---|
| [3289a64] | 1116 | // Toggle: like an unliked comment, or un-favourite (Undo Like) if already liked.
|
|---|
| 1117 | const on = !parent.acted_like;
|
|---|
| 1118 | ActivityPubService.sendInteraction(site, on ? 'like' : 'unlike', parent.object_uri, parent.actor_uri)
|
|---|
| [c745659] | 1119 | .catch((e) => console.warn('[AP] reaction failed:', e.message));
|
|---|
| [3289a64] | 1120 | ActivityPubService.setInteractionLiked(parent.id, on);
|
|---|
| [c745659] | 1121 | }
|
|---|
| [67fe576] | 1122 | }
|
|---|
| 1123 | res.redirect(`${res.locals.siteUrlBase || ''}/${post.slug}#fediverse`);
|
|---|
| 1124 | });
|
|---|
| 1125 |
|
|---|
| [7bc636b] | 1126 | export default router;
|
|---|
| [d8c6a83] | 1127 | export { postNeighbors };
|
|---|