mirror of
https://github.com/svemagie/blog-eleventy-indiekit.git
synced 2026-04-02 16:44:56 +02:00
Introduce shared cachedFetch helper (lib/data-fetch.js) wrapping EleventyFetch with two protections: - 10-second hard timeout via AbortController on every network request, preventing slow or unresponsive APIs from hanging the build - 4-hour cache TTL in watch/serve mode (vs 5-15 min originals), so incremental rebuilds serve from disk cache instead of re-fetching APIs every time a markdown file changes All 13 network _data files updated to use cachedFetch. Production builds keep original short TTLs for fresh data. Targets the "Data File" benchmark (12,169ms / 32% of incremental rebuild) — the largest remaining bottleneck after filter memoization. Confab-Link: http://localhost:8080/sessions/0b241cd6-aff2-4fec-853c-2b5a61e61946
84 lines
2.3 KiB
JavaScript
84 lines
2.3 KiB
JavaScript
/**
|
|
* Last.fm Activity Data
|
|
* Fetches from Indiekit's endpoint-lastfm public API
|
|
*/
|
|
|
|
import { cachedFetch } from "../lib/data-fetch.js";
|
|
|
|
const INDIEKIT_URL = process.env.SITE_URL || "https://example.com";
|
|
const LASTFM_USERNAME = process.env.LASTFM_USERNAME || "";
|
|
|
|
/**
|
|
* Fetch from Indiekit's public Last.fm API endpoint
|
|
*/
|
|
async function fetchFromIndiekit(endpoint) {
|
|
try {
|
|
const url = `${INDIEKIT_URL}/lastfmapi/api/${endpoint}`;
|
|
console.log(`[lastfmActivity] Fetching from Indiekit: ${url}`);
|
|
const data = await cachedFetch(url, {
|
|
duration: "15m",
|
|
type: "json",
|
|
});
|
|
console.log(`[lastfmActivity] Indiekit ${endpoint} success`);
|
|
return data;
|
|
} catch (error) {
|
|
console.log(
|
|
`[lastfmActivity] Indiekit API unavailable for ${endpoint}: ${error.message}`
|
|
);
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default async function () {
|
|
try {
|
|
console.log("[lastfmActivity] Fetching Last.fm data...");
|
|
|
|
// Fetch all data from Indiekit API
|
|
const [nowPlaying, scrobbles, loved, stats] = await Promise.all([
|
|
fetchFromIndiekit("now-playing"),
|
|
fetchFromIndiekit("scrobbles"),
|
|
fetchFromIndiekit("loved"),
|
|
fetchFromIndiekit("stats"),
|
|
]);
|
|
|
|
// Check if we got data
|
|
const hasData = nowPlaying || scrobbles?.scrobbles?.length || stats?.summary;
|
|
|
|
if (!hasData) {
|
|
console.log("[lastfmActivity] No data available from Indiekit");
|
|
return {
|
|
nowPlaying: null,
|
|
scrobbles: [],
|
|
loved: [],
|
|
stats: null,
|
|
username: LASTFM_USERNAME,
|
|
profileUrl: LASTFM_USERNAME ? `https://www.last.fm/user/${LASTFM_USERNAME}` : null,
|
|
source: "unavailable",
|
|
};
|
|
}
|
|
|
|
console.log("[lastfmActivity] Using Indiekit API data");
|
|
|
|
return {
|
|
nowPlaying: nowPlaying || null,
|
|
scrobbles: scrobbles?.scrobbles || [],
|
|
loved: loved?.loved || [],
|
|
stats: stats || null,
|
|
username: LASTFM_USERNAME,
|
|
profileUrl: LASTFM_USERNAME ? `https://www.last.fm/user/${LASTFM_USERNAME}` : null,
|
|
source: "indiekit",
|
|
};
|
|
} catch (error) {
|
|
console.error("[lastfmActivity] Error:", error.message);
|
|
return {
|
|
nowPlaying: null,
|
|
scrobbles: [],
|
|
loved: [],
|
|
stats: null,
|
|
username: LASTFM_USERNAME,
|
|
profileUrl: null,
|
|
source: "error",
|
|
};
|
|
}
|
|
}
|