fetch refactoring

This commit is contained in:
Cory Dransfeldt 2023-03-13 19:17:50 -07:00
parent 9a5431cffa
commit 0122e9b456
No known key found for this signature in database
4 changed files with 27 additions and 27 deletions

View file

@ -1,12 +1,12 @@
const EleventyFetch = require('@11ty/eleventy-fetch') const fetch = require('node-fetch')
const { AssetCache } = require('@11ty/eleventy-fetch')
module.exports = async function () { module.exports = async function () {
const url = 'https://utils.coryd.dev/api/now?endpoints=artists,albums,books,movies,tv' const url = 'https://utils.coryd.dev/api/now?endpoints=artists,albums,books,movies,tv'
const res = EleventyFetch(url, { const asset = new AssetCache('now_data')
duration: '1h', if (asset.isCacheValid('1h')) return await asset.getCachedValue()
type: 'json', const now = await fetch(url).then((res) => res.json())
}) await asset.save(now, 'json')
const now = await res
return { return {
artists: now.artists, artists: now.artists,
albums: now.albums, albums: now.albums,

View file

@ -1,15 +1,15 @@
const EleventyFetch = require('@11ty/eleventy-fetch') const fetch = require('node-fetch')
const { AssetCache } = require('@11ty/eleventy-fetch')
module.exports = async function () { module.exports = async function () {
const url = 'https://utils.coryd.dev/api/music?limit=1&period=7day' const url = 'https://utils.coryd.dev/api/music?limit=1&period=7day'
const res = EleventyFetch(url, { const asset = new AssetCache('now_playing_data')
duration: '0s', if (asset.isCacheValid('3m')) return await asset.getCachedValue()
type: 'json', const nowPlaying = await fetch(url).then((res) => res.json())
}) await asset.save(nowPlaying, 'json')
const music = await res
return { return {
artist: music.recenttracks.track[0].artist['#text'], artist: nowPlaying.recenttracks.track[0].artist['#text'],
title: music.recenttracks.track[0].name, title: nowPlaying.recenttracks.track[0].name,
url: music.recenttracks.track[0].url, url: nowPlaying.recenttracks.track[0].url,
} }
} }

View file

@ -1,11 +1,11 @@
const EleventyFetch = require('@11ty/eleventy-fetch') const fetch = require('node-fetch')
const { AssetCache } = require('@11ty/eleventy-fetch')
module.exports = async function () { module.exports = async function () {
const url = 'https://api.omg.lol/address/cory/statuses/' const url = 'https://api.omg.lol/address/cory/statuses/'
const res = EleventyFetch(url, { const asset = new AssetCache('status_data')
duration: '1d', if (asset.isCacheValid('1h')) return await asset.getCachedValue()
type: 'json', const status = await fetch(url).then((res) => res.json())
}) await asset.save(status, 'json')
const status = await res
return status.response.statuses[0] return status.response.statuses[0]
} }

View file

@ -1,12 +1,12 @@
const EleventyFetch = require('@11ty/eleventy-fetch') const fetch = require('node-fetch')
const { AssetCache } = require('@11ty/eleventy-fetch')
module.exports = async function () { module.exports = async function () {
const url = 'https://utils.coryd.dev/api/webmentions' const url = 'https://utils.coryd.dev/api/webmentions'
const res = EleventyFetch(url, { const asset = new AssetCache('webmentions_data')
duration: '1d', if (asset.isCacheValid('1h')) return await asset.getCachedValue()
type: 'json', const webmentions = await fetch(url).then((res) => res.json())
}) await asset.save(webmentions, 'json')
const webmentions = await res
return { return {
mentions: webmentions.children, mentions: webmentions.children,
} }