10 Commits
v2.1.1 ... main

16 changed files with 718 additions and 504 deletions

View File

@ -10,8 +10,8 @@ BASE_URL = 'https://moshingmammut.phlaym.net'
VERBOSE = false VERBOSE = false
DEBUG_LOG = false DEBUG_LOG = false
IGNORE_USERS = @moshhead@metalhead.club IGNORE_USERS = @moshhead@metalhead.club
WEBSUB_HUB = 'http://pubsubhubbub.superfeedr.com'
PUBLIC_WEBSUB_HUB = 'http://pubsubhubbub.superfeedr.com'
PUBLIC_REFRESH_INTERVAL = 10000 PUBLIC_REFRESH_INTERVAL = 10000
PUBLIC_MASTODON_INSTANCE_DISPLAY_NAME = 'Metalhead.club' PUBLIC_MASTODON_INSTANCE_DISPLAY_NAME = 'Metalhead.club'
PORT = 3001 PORT = 3001

2
.gitignore vendored
View File

@ -3,6 +3,8 @@ yt_auth_token
spotify_auth_token spotify_auth_token
tidal_auth_token tidal_auth_token
*.db *.db
*.db-shm
*.db-wal
feed.xml feed.xml
playbook.yml playbook.yml
inventory.yml inventory.yml

937
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "moshing-mammut", "name": "moshing-mammut",
"version": "2.1.1", "version": "2.1.3",
"private": true, "private": true,
"license": "LGPL-3.0-or-later", "license": "LGPL-3.0-or-later",
"scripts": { "scripts": {
@ -18,7 +18,7 @@
"@eslint/js": "^9.30.1", "@eslint/js": "^9.30.1",
"@sveltejs/adapter-node": "^5.2.12", "@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/kit": "^2.22.2", "@sveltejs/kit": "^2.22.2",
"@sveltejs/vite-plugin-svelte": "^5.1.0", "@sveltejs/vite-plugin-svelte": "^6.1.0",
"@types/node": "^22.9.0", "@types/node": "^22.9.0",
"@types/sqlite3": "^3.0.0", "@types/sqlite3": "^3.0.0",
"@types/ws": "^8.5.0", "@types/ws": "^8.5.0",
@ -32,6 +32,7 @@
"prettier": "^3.1.0", "prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.2.6", "prettier-plugin-svelte": "^3.2.6",
"svelte": "^5", "svelte": "^5",
"svelte-adapter-bun": "^0.5.2",
"svelte-check": "^4.0.0", "svelte-check": "^4.0.0",
"tslib": "^2.0.0", "tslib": "^2.0.0",
"typescript": "^5.0.0" "typescript": "^5.0.0"
@ -44,6 +45,11 @@
"sqlite3": "^5.0.0", "sqlite3": "^5.0.0",
"ws": "^8.18.0" "ws": "^8.18.0"
}, },
"overrides": {
"@sveltejs/kit": {
"cookie": ">=0.7.0"
}
},
"engines": { "engines": {
"node": ">=20.0.0" "node": ">=20.0.0"
} }

View File

@ -19,7 +19,7 @@
<meta name="theme-color" content="#17063b" media="(prefers-color-scheme: dark)" /> <meta name="theme-color" content="#17063b" media="(prefers-color-scheme: dark)" />
<meta name="theme-color" content="#BCB9B2" media="(prefers-color-scheme: light)" /> <meta name="theme-color" content="#BCB9B2" media="(prefers-color-scheme: light)" />
<link rel="alternate" type="application/atom+xml" href="/feed.xml" title="Atom Feed" /> <link rel="alternate" type="application/atom+xml" href="/feed.xml" title="Atom Feed" />
<link rel="hub" href="https://pubsubhubbub.superfeedr.com" /> <link rel="hub" href="%sveltekit.env.PUBLIC_WEBSUB_HUB%" />
%sveltekit.head% %sveltekit.head%
<style> <style>
body { body {

View File

@ -3,10 +3,12 @@
interface Props { interface Props {
account: Account; account: Account;
lazyLoadImages?: boolean;
} }
let { account }: Props = $props(); let { account, lazyLoadImages = true }: Props = $props();
let avatarDescription: string = $derived(`Avatar for ${account.acct}`); let avatarDescription: string = $derived(`Avatar for ${account.acct}`);
let loadingProp = $derived(lazyLoadImages ? 'lazy' : 'eager');
let sourceSetHtml: string = $derived.by(() => { let sourceSetHtml: string = $derived.by(() => {
// Sort thumbnails by file type. This is important, because the order of the srcset entries matter. // Sort thumbnails by file type. This is important, because the order of the srcset entries matter.
// We need the best format to be first // We need the best format to be first
@ -41,7 +43,7 @@
<picture> <picture>
{@html sourceSetHtml} {@html sourceSetHtml}
<img src={account.avatar} alt={avatarDescription} loading="lazy" width="50" height="50" /> <img src={account.avatar} alt={avatarDescription} loading={loadingProp} width="50" height="50" />
</picture> </picture>
<style> <style>

View File

@ -1,13 +1,15 @@
<script lang="ts"> <script lang="ts">
import LoadingSpinnerComponent from '$lib/components/LoadingSpinnerComponent.svelte'; import LoadingSpinnerComponent from '$lib/components/LoadingSpinnerComponent.svelte';
import { page } from '$app/stores';
interface Props { interface Props {
moreAvailable?: boolean; moreAvailable?: boolean;
isLoading?: boolean; isLoading?: boolean;
loadOlderPosts: any; loadOlderPosts: any;
lastPostId?: string;
} }
let { moreAvailable = false, isLoading = false, loadOlderPosts }: Props = $props(); let { moreAvailable = false, isLoading = false, loadOlderPosts, lastPostId }: Props = $props();
let displayText = $derived.by(() => { let displayText = $derived.by(() => {
if (isLoading) { if (isLoading) {
return 'Loading...'; return 'Loading...';
@ -19,23 +21,37 @@
let title = $derived(moreAvailable ? 'Load More' : 'There be dragons!'); let title = $derived(moreAvailable ? 'Load More' : 'There be dragons!');
let disabled: boolean = $derived(!moreAvailable || isLoading); let disabled: boolean = $derived(!moreAvailable || isLoading);
/*const dispatch = createEventDispatcher<{ const currentCount = $page.url.searchParams.get('count');
loadOlderPosts: string; let nextCount = 10;
}>(); if (currentCount) {
const countValue = parseInt(currentCount);
function loadOlderPosts() { if (!isNaN(countValue)) {
dispatch('loadOlderPosts'); nextCount = countValue + 5;
}*/ }
}
const nextPageUrl = `?count=${nextCount}#${lastPostId}`;
</script> </script>
<button onclick={() => loadOlderPosts()} {disabled} {title}> <a
<div class="loading" class:collapsed={!isLoading}> href={nextPageUrl}
<LoadingSpinnerComponent size="0.5em" thickness="6px" /> {disabled}
</div> onclick={(event) => {
<span>{displayText}</span> event.preventDefault();
</button> loadOlderPosts();
}}
>
<button {disabled} {title}>
<div class="loading" class:collapsed={!isLoading}>
<LoadingSpinnerComponent size="0.5em" thickness="6px" />
</div>
<span>{displayText}</span>
</button>
</a>
<style> <style>
a {
text-decoration: none;
}
button { button {
padding: 0.75em; padding: 0.75em;
border-radius: 3px; border-radius: 3px;

View File

@ -8,9 +8,10 @@
interface Props { interface Props {
post: Post; post: Post;
lazyLoadImages?: boolean;
} }
let { post }: Props = $props(); let { post, lazyLoadImages = true }: Props = $props();
let displayRelativeTime = $state(false); let displayRelativeTime = $state(false);
const absoluteDate = new Date(post.created_at).toLocaleString(); const absoluteDate = new Date(post.created_at).toLocaleString();
const timePassed = secondsSince(new Date(post.created_at)); const timePassed = secondsSince(new Date(post.created_at));
@ -20,6 +21,7 @@
} }
return absoluteDate; return absoluteDate;
}); });
let loadingProp = $derived(lazyLoadImages ? 'lazy' : 'eager');
const songs = filterDuplicates(post.songs ?? []); const songs = filterDuplicates(post.songs ?? []);
@ -114,8 +116,8 @@
}); });
</script> </script>
<div class="wrapper"> <div class="wrapper" id={post.id}>
<div class="avatar"><AvatarComponent account={post.account} /></div> <div class="avatar"><AvatarComponent account={post.account} {lazyLoadImages} /></div>
<div class="account"><AccountComponent account={post.account} /></div> <div class="account"><AccountComponent account={post.account} /></div>
<div class="meta"> <div class="meta">
<small><a href={post.url} target="_blank" title={absoluteDate}>{dateCreated}</a></small> <small><a href={post.url} target="_blank" title={absoluteDate}>{dateCreated}</a></small>
@ -127,7 +129,12 @@
<div class="info-wrapper"> <div class="info-wrapper">
<picture> <picture>
{@html getSourceSetHtml(song)} {@html getSourceSetHtml(song)}
<img class="bgimage" src={song.thumbnailUrl} loading="lazy" alt="Blurred cover" /> <img
class="bgimage"
src={song.thumbnailUrl}
loading={loadingProp}
alt="Blurred cover"
/>
</picture> </picture>
<a href={song.pageUrl ?? song.postedUrl} target="_blank"> <a href={song.pageUrl ?? song.postedUrl} target="_blank">
<div class="info"> <div class="info">
@ -136,7 +143,7 @@
<img <img
src={song.thumbnailUrl} src={song.thumbnailUrl}
alt="Cover for {song.artistName} - {song.title}" alt="Cover for {song.artistName} - {song.title}"
loading="lazy" loading={loadingProp}
width={song.thumbnailWidth} width={song.thumbnailWidth}
height={song.thumbnailHeight} height={song.thumbnailHeight}
/> />
@ -193,6 +200,12 @@
border-radius: 3px; border-radius: 3px;
margin-bottom: 3px; margin-bottom: 3px;
} }
.cover img {
max-width: 200px;
max-height: 200px;
object-fit: contain;
border-radius: 3px;
}
.bgimage { .bgimage {
display: none; display: none;
background-color: var(--color-bg); background-color: var(--color-bg);
@ -231,6 +244,10 @@
backdrop-filter: blur(10px); backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
} }
.cover img {
max-width: 60px;
max-height: 60px;
}
.bgimage { .bgimage {
display: block; display: block;
width: 100%; width: 100%;

View File

@ -68,6 +68,11 @@ type Migration = {
statement: string; statement: string;
}; };
const db: sqlite3.Database = new sqlite3.cached.Database('moshingmammut.db'); const db: sqlite3.Database = new sqlite3.cached.Database('moshingmammut.db');
const maxThumbnailCacheSize = 100;
const maxThumbnailCacheAge = 1 * 60 * 60 * 1000; //1h in ms
const thumbnailCache = new Map<string, { data: SongThumbnailImage[]; ts: number }>();
let thumbnailCacheHits = 0;
let thumbnailCacheMisses = 0;
export function close() { export function close() {
try { try {
@ -92,6 +97,7 @@ const ignoredUsers: string[] =
let databaseReady = false; let databaseReady = false;
if (enableVerboseLog) { if (enableVerboseLog) {
logger.verbose('Enabling verbose DB log');
sqlite3.verbose(); sqlite3.verbose();
db.on('change', (t, d, table, rowid) => { db.on('change', (t, d, table, rowid) => {
logger.verbose('DB change event', t, d, table, rowid); logger.verbose('DB change event', t, d, table, rowid);
@ -101,8 +107,16 @@ if (enableVerboseLog) {
logger.verbose('Running', sql); logger.verbose('Running', sql);
}); });
db.on('profile', (sql) => { db.on('profile', (sql, time) => {
logger.verbose('Finished', sql); if (sql.startsWith('EXPLAIN')) {
return;
}
logger.verbose('Finished', sql, 'time', time);
if (sql.startsWith('SELECT')) {
db.get('EXPLAIN QUERY PLAN ' + sql, (a: sqlite3.RunResult, b: Error) => {
logger.verbose(sql, a, b);
});
}
}); });
} }
@ -148,6 +162,9 @@ async function applyMigration(migration: Migration) {
db.on('open', () => { db.on('open', () => {
logger.info('Opened database'); logger.info('Opened database');
db.serialize(); db.serialize();
db.run('pragma journal_mode = WAL;');
db.run('pragma synchronous = normal;');
db.run('pragma journal_size_limit = 6144000;');
db.run('CREATE TABLE IF NOT EXISTS "migrations" ("id" integer,"name" TEXT, PRIMARY KEY (id))'); db.run('CREATE TABLE IF NOT EXISTS "migrations" ("id" integer,"name" TEXT, PRIMARY KEY (id))');
db.all('SELECT id FROM migrations', (err, rows: Migration[]) => { db.all('SELECT id FROM migrations', (err, rows: Migration[]) => {
if (err !== null) { if (err !== null) {
@ -339,6 +356,26 @@ function getMigrations(): Migration[] {
name: 'song tidal id', name: 'song tidal id',
statement: ` statement: `
ALTER TABLE songs ADD COLUMN tidalId TEXT NULL;` ALTER TABLE songs ADD COLUMN tidalId TEXT NULL;`
},
{
id: 10,
name: 'add indexes',
statement: `
CREATE INDEX posts_created_at ON posts(created_at);
CREATE INDEX accounts_acct ON accounts(acct);
CREATE INDEX accounts_username ON accounts(username);`
},
{
id: 11,
name: 'add FK indexes',
statement: `
CREATE INDEX migrations_id ON migrations(id);
CREATE INDEX accountsavatars_account_url ON accountsavatars(account_url);
CREATE INDEX posts_account_id ON posts(account_id);
CREATE INDEX poststags_post_id ON poststags(post_id);
CREATE INDEX poststags_tag_url ON poststags(tag_url);
CREATE INDEX songs_post_url ON songs(post_url);
CREATE INDEX songsthumbnails_song_thumbnailUrl ON songsthumbnails(song_thumbnailUrl);`
} }
]; ];
} }
@ -613,7 +650,6 @@ function getSongData(postIdsParams: string, postIds: string[]): Promise<Map<stri
}, },
new Map() new Map()
); );
logger.verbose('songMap', songMap);
resolve(songMap); resolve(songMap);
} }
); );
@ -803,6 +839,7 @@ async function getPostsInternal(
.flatMap((x) => x) .flatMap((x) => x)
.map((x) => x.thumbnailUrl) .map((x) => x.thumbnailUrl)
.filter((x) => x !== undefined) .filter((x) => x !== undefined)
.filter((x) => getCachedThumbnail(x) === null)
.toArray(); .toArray();
if (turls) { if (turls) {
const tMap = await getSongThumbnailData('?, '.repeat(turls.length).slice(0, -2), turls); const tMap = await getSongThumbnailData('?, '.repeat(turls.length).slice(0, -2), turls);
@ -811,7 +848,11 @@ async function getPostsInternal(
if (songInfo.thumbnailUrl === undefined) { if (songInfo.thumbnailUrl === undefined) {
continue; continue;
} }
const thumbs = tMap.get(songInfo.thumbnailUrl) ?? []; let thumbs = getCachedThumbnail(songInfo.thumbnailUrl);
if (thumbs === null) {
thumbs = tMap.get(songInfo.thumbnailUrl) ?? [];
cacheThumbnail(songInfo.thumbnailUrl, thumbs);
}
songInfo.resizedThumbnails = thumbs; songInfo.resizedThumbnails = thumbs;
} }
} }
@ -969,6 +1010,79 @@ export async function getSongThumbnails(song: SongInfo): Promise<SongThumbnailIm
if (!song.thumbnailUrl) { if (!song.thumbnailUrl) {
return []; return [];
} }
const cachedThumbnail = getCachedThumbnail(song.thumbnailUrl);
if (cachedThumbnail !== null) {
return cachedThumbnail;
}
const rows = await getSongThumbnailData('?', [song.thumbnailUrl]); const rows = await getSongThumbnailData('?', [song.thumbnailUrl]);
return rows.get(song.thumbnailUrl) ?? []; const data = rows.get(song.thumbnailUrl) ?? [];
cacheThumbnail(song.thumbnailUrl, data);
return data;
}
function getCachedThumbnail(thumbnailUrl: string): SongThumbnailImage[] | null {
const cachedThumbnail = thumbnailCache.get(thumbnailUrl);
if (cachedThumbnail == undefined) {
thumbnailCacheMisses++;
return null;
}
const age = new Date().getTime() - cachedThumbnail.ts;
if (age <= maxThumbnailCacheAge) {
thumbnailCacheHits++;
return cachedThumbnail.data;
}
thumbnailCache.delete(thumbnailUrl);
thumbnailCacheMisses++;
return null;
}
function cacheThumbnail(thumbnailUrl: string, thumbnails: SongThumbnailImage[]) {
if (!thumbnails) {
// This usually means, that the data is being saved to cached,
// while the thumbnail generation is not finished yet
logger.debug('will not cache empty thumbnail list', thumbnailUrl);
return;
}
const now = new Date().getTime();
const initialSize = thumbnailCache.size;
if (initialSize >= maxThumbnailCacheSize) {
logger.debug('Sweeping cache. Current size', initialSize);
const deleteTimestampsOlderThan =
thumbnailCache
.values()
.map((x) => x.ts)
.toArray()
.sort((a, b) => a - b)
.slice(0, 20)
.pop() ?? 0;
const timestampExpired = now - maxThumbnailCacheAge;
const threshold = Math.max(timestampExpired, deleteTimestampsOlderThan);
thumbnailCache.forEach((v, k) => {
if (v.ts <= threshold) {
thumbnailCache.delete(k);
}
});
if (Logger.isDebugEnabled()) {
logger.debug(
'Swept cache. New size',
thumbnailCache.size,
'deleted',
initialSize - thumbnailCache.size,
'entries'
);
logger.debug(
'Current hitrate',
thumbnailCacheHits,
'/',
thumbnailCacheHits + thumbnailCacheMisses,
'=',
((100.0 * thumbnailCacheHits) / (thumbnailCacheHits + thumbnailCacheMisses)).toFixed(2),
'%'
);
}
}
thumbnailCache.set(thumbnailUrl, {
data: thumbnails,
ts: now
});
} }

View File

@ -1,4 +1,5 @@
import { BASE_URL, WEBSUB_HUB } from '$env/static/private'; import { BASE_URL } from '$env/static/private';
import { PUBLIC_WEBSUB_HUB } from '$env/static/public';
import { PUBLIC_MASTODON_INSTANCE_DISPLAY_NAME } from '$env/static/public'; import { PUBLIC_MASTODON_INSTANCE_DISPLAY_NAME } from '$env/static/public';
import type { Post } from '$lib//mastodon/response'; import type { Post } from '$lib//mastodon/response';
import { Logger } from '$lib/log'; import { Logger } from '$lib/log';
@ -10,7 +11,7 @@ const logger = new Logger('RSS');
export function createFeed(posts: Post[]): Feed { export function createFeed(posts: Post[]): Feed {
const baseUrl = BASE_URL.endsWith('/') ? BASE_URL : BASE_URL + '/'; const baseUrl = BASE_URL.endsWith('/') ? BASE_URL : BASE_URL + '/';
const hub = WEBSUB_HUB ? WEBSUB_HUB : undefined; const hub = PUBLIC_WEBSUB_HUB ? PUBLIC_WEBSUB_HUB : undefined;
const feed = new Feed({ const feed = new Feed({
title: `${PUBLIC_MASTODON_INSTANCE_DISPLAY_NAME} music feed`, title: `${PUBLIC_MASTODON_INSTANCE_DISPLAY_NAME} music feed`,
description: `Posts about music on ${PUBLIC_MASTODON_INSTANCE_DISPLAY_NAME}`, description: `Posts about music on ${PUBLIC_MASTODON_INSTANCE_DISPLAY_NAME}`,
@ -51,15 +52,15 @@ export function createFeed(posts: Post[]): Feed {
} }
export async function saveAtomFeed(feed: Feed) { export async function saveAtomFeed(feed: Feed) {
await fs.writeFile('feed.xml', feed.atom1(), { encoding: 'utf8' }); await fs.writeFile('feed.xml', feed.atom1(), { encoding: 'utf8' });
if (!WEBSUB_HUB || !PROD) { if (!PUBLIC_WEBSUB_HUB || !PROD) {
logger.info('Skipping Websub publish. hub configured?', WEBSUB_HUB, 'Production?', PROD); logger.info('Skipping Websub publish. hub configured?', PUBLIC_WEBSUB_HUB, 'Production?', PROD);
return; return;
} }
try { try {
const param = new FormData(); const param = new FormData();
param.append('hub.mode', 'publish'); param.append('hub.mode', 'publish');
param.append('hub.url', `${BASE_URL}/feed.xml`); param.append('hub.url', `${BASE_URL}/feed.xml`);
await fetch(WEBSUB_HUB, { await fetch(PUBLIC_WEBSUB_HUB, {
method: 'POST', method: 'POST',
headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
body: param body: param

View File

@ -335,7 +335,7 @@ export class TimelineReader {
50, 50,
3, 3,
account.url, account.url,
['webp', 'avif', 'jpeg'], ['avif', 'jpeg'],
avatar avatar
) )
); );
@ -363,7 +363,7 @@ export class TimelineReader {
200, 200,
3, 3,
song.thumbnailUrl, song.thumbnailUrl,
['webp', 'avif', 'jpeg'], ['avif', 'jpeg'],
avatar, avatar,
SongThumbnailImageKind.Big SongThumbnailImageKind.Big
) )
@ -374,7 +374,7 @@ export class TimelineReader {
60, 60,
3, 3,
song.thumbnailUrl, song.thumbnailUrl,
['webp', 'avif', 'jpeg'], ['avif', 'jpeg'],
avatar, avatar,
SongThumbnailImageKind.Small SongThumbnailImageKind.Small
) )

View File

@ -18,6 +18,7 @@
let { data = $bindable() }: Props = $props(); let { data = $bindable() }: Props = $props();
let posts: Post[] = $state(data.posts); let posts: Post[] = $state(data.posts);
let lastPostId = $derived(posts.length > 0 ? posts[posts.length - 1].id : null);
interface FetchOptions { interface FetchOptions {
since?: string; since?: string;
@ -163,7 +164,7 @@
{#if posts.length === 0} {#if posts.length === 0}
Sorry, no posts recommending music have been found yet Sorry, no posts recommending music have been found yet
{/if} {/if}
{#each posts as post (post.url)} {#each posts as post, index (post.url)}
<div <div
class="post" class="post"
transition:edgeFly|global={{ transition:edgeFly|global={{
@ -173,13 +174,14 @@
easing: cubicInOut easing: cubicInOut
}} }}
> >
<PostComponent {post} /> <PostComponent {post} lazyLoadImages={index >= 4} />
</div> </div>
{/each} {/each}
<LoadMoreComponent <LoadMoreComponent
{loadOlderPosts} {loadOlderPosts}
moreAvailable={moreOlderPostsAvailable} moreAvailable={moreOlderPostsAvailable}
isLoading={loadingOlderPosts} isLoading={loadingOlderPosts}
{lastPostId}
/> />
</div> </div>
<div></div> <div></div>

View File

@ -1,19 +1,20 @@
import type { Post } from '$lib/mastodon/response'; import type { Post } from '$lib/mastodon/response';
import type { PageLoad } from './$types'; import type { PageLoad } from './$types';
export const load = (async ({ fetch, setHeaders }) => { export const load = (async ({ fetch, setHeaders, url }) => {
const start = performance.now(); let count = 5;
const p = await fetch('/'); const countParam = url.searchParams.get('count');
const afterFetch = performance.now(); if (countParam) {
console.debug('+page.ts: Fetch took', afterFetch - start, 'ms'); const parsed = parseInt(countParam);
if (!isNaN(parsed)) {
count = parsed;
}
}
const p = await fetch('/api/posts?count=' + count);
setHeaders({ setHeaders({
'cache-control': 'public,max-age=60' 'cache-control': 'public,max-age=300'
}); });
const afterHeaders = performance.now();
console.debug('+page.ts: Headers took', afterHeaders - afterFetch, 'ms');
const j: Post[] = await p.json(); const j: Post[] = await p.json();
const afterJson = performance.now();
console.debug('+page.ts: JSON took', afterJson - afterHeaders, 'ms');
return { return {
posts: j posts: j
}; };

View File

@ -1,17 +0,0 @@
import { Logger } from '$lib/log';
import type { RequestHandler } from './$types';
const logger = new Logger('+server.ts /');
export const GET = (async ({ fetch, setHeaders }) => {
const start = performance.now();
setHeaders({
'cache-control': 'max-age=10'
});
const afterHeaders = performance.now();
logger.debug('Headers took', afterHeaders - start, 'ms');
const f = await fetch('api/posts?count=5');
const afterFetch = performance.now();
logger.debug('Fetch took', afterFetch - afterHeaders, 'ms');
return f;
}) satisfies RequestHandler;

View File

@ -7,7 +7,10 @@ import { performance } from 'perf_hooks';
const logger = new Logger('+server.ts API'); const logger = new Logger('+server.ts API');
export const GET = (async ({ url }) => { export const GET = (async ({ url, setHeaders }) => {
setHeaders({
'cache-control': 'max-age=10'
});
const start = performance.now(); const start = performance.now();
const since = url.searchParams.get('since'); const since = url.searchParams.get('since');
const before = url.searchParams.get('before'); const before = url.searchParams.get('before');

View File

@ -1,3 +1,5 @@
// Does not seem to work
//import adapter from 'svelte-adapter-bun';
import adapter from '@sveltejs/adapter-node'; import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';