From 8cdacbb9e5d3efd43b4748b3e0609318372ac0e6 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Wed, 6 Dec 2023 11:13:46 -0800 Subject: [PATCH] Revert "feat: add cache headers" This reverts commit e4b76652cabd45d22eaa20d45771b0c508cd09e7. --- netlify/edge-functions/now-playing.js | 47 +++++++-------------------- 1 file changed, 12 insertions(+), 35 deletions(-) diff --git a/netlify/edge-functions/now-playing.js b/netlify/edge-functions/now-playing.js index 322d1b91..5e2dde04 100644 --- a/netlify/edge-functions/now-playing.js +++ b/netlify/edge-functions/now-playing.js @@ -46,6 +46,13 @@ export default async () => { const TV_KEY = Netlify.env.get('API_KEY_TRAKT') // eslint-disable-next-line no-undef 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', + }, + } const traktRes = await fetch('https://api.trakt.tv/users/cdransf/watching', { headers: { @@ -66,13 +73,7 @@ export default async () => { { content: `📺 ${traktRes['show']['title']} • ${traktRes['episode']['title']}`, }, - { - 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', - }, - } + headers ) } @@ -81,13 +82,7 @@ export default async () => { { content: `🎥 ${traktRes['movie']['title']}`, }, - { - 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', - }, - } + headers ) } } @@ -131,22 +126,10 @@ export default async () => { if (isCorrectDate) { if (nowHour === startHour && nowMinutes >= startMinutes && nowHour < endHour) - return Response.json(res, { - 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', - }, - }) + return Response.json(res, headers) if (nowHour > startHour && nowHour < endHour) return Response.json(res) if (nowHour > startHour && nowMinutes <= endMinutes && nowHour == endHour) - return Response.json(res, { - 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', - }, - }) + return Response.json(res, headers) } } } @@ -194,13 +177,7 @@ export default async () => { track['name'] } by ${track['artist']['#text']}`, }, - { - 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', - }, - } + headers ) }