feat: edge funcs -> api; cache things

This commit is contained in:
Cory Dransfeldt 2024-02-29 13:15:57 -08:00
parent f844fe5e04
commit 471ec18dd7
No known key found for this signature in database
3 changed files with 7 additions and 10 deletions

View file

@ -57,12 +57,8 @@ export default async () => {
const TV_KEY = Netlify.env.get("API_KEY_TRAKT");
const MUSIC_KEY = Netlify.env.get("API_KEY_LASTFM");
const headers = {
headers: {
"Content-Type": "application/json",
"Cache-Control": "public, max-age=0, must-revalidate",
"Netlify-CDN-Cache-Control":
"public, max-age=0, stale-while-revalidate=210",
},
"Cache-Control": "public, s-maxage=3600",
};
const traktRes = await fetch("https://api.trakt.tv/users/cdransf/watching", {
@ -87,7 +83,7 @@ export default async () => {
{
content: `📺 <a href="https://trakt.tv/shows/${traktRes["show"]["ids"]["slug"]}">${traktRes["show"]["title"]}</a> • <a href="https://trakt.tv/shows/${traktRes["show"]["ids"]["slug"]}/seasons/${traktRes["episode"]["season"]}/episodes/${traktRes["episode"]["number"]}">${traktRes["episode"]["title"]}</a>`,
},
headers
{...headers}
);
}
@ -96,7 +92,7 @@ export default async () => {
{
content: `🎥 <a href="https://trakt.tv/movies/${traktRes["movie"]["ids"]["slug"]}">${traktRes["movie"]["title"]}</a>`,
},
headers
{...headers}
);
}
}
@ -167,7 +163,7 @@ export default async () => {
track["artist"]["#text"]
}</a>`,
},
headers
{...headers}
);
};

View file

@ -4,6 +4,7 @@
[build]
command = "npm run build"
publish = "_site"
edge_functions = "api"
###
# URLs

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "6.8.0",
"version": "6.9.0",
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
"type": "module",
"scripts": {