diff --git a/config/mediaFilters.js b/config/mediaFilters.js index a8a418b2..38fd9c37 100644 --- a/config/mediaFilters.js +++ b/config/mediaFilters.js @@ -11,6 +11,7 @@ module.exports = { ) : `https://cdn.coryd.dev/albums/${media.name.replace(/\s+/g, '-').toLowerCase()}.jpg` }, + tv: (episode) => `https://cdn.coryd.dev/tv/${episode.replace(/\s+/g, '-').toLowerCase()}.jpg`, movie: (url, host, cdn) => { return url.replace(host, cdn).replace('600', '200').replace('900', '300') }, diff --git a/src/_data/tv.js b/src/_data/tv.js index 951d740a..eb16d331 100644 --- a/src/_data/tv.js +++ b/src/_data/tv.js @@ -1,23 +1,19 @@ -const { extract } = require('@extractus/feed-extractor') -const { AssetCache } = require('@11ty/eleventy-fetch') +const EleventyFetch = require('@11ty/eleventy-fetch') module.exports = async function () { const TV_KEY = process.env.API_KEY_TRAKT - const url = `https://trakt.tv/users/cdransf/history.atom?slurm=${TV_KEY}` - // noinspection JSCheckFunctionSignatures - const asset = new AssetCache('tv_data') - if (asset.isCacheValid('1h')) return await asset.getCachedValue() - const res = await extract(url, { - getExtraEntryFields: (feedEntry) => { - const image = feedEntry['media:thumbnail']['@_url'] - return { - image, - } + const url = 'https://api.trakt.tv/users/cdransf/history/shows' + const res = EleventyFetch(url, { + duration: '1h', + type: 'json', + fetchOptions: { + headers: { + 'Content-Type': 'application/json', + 'trakt-api-version': 2, + 'trakt-api-key': TV_KEY, + }, }, - }).catch((error) => { - console.log(error.message) - }) - const data = res.entries.splice(0, 6) - await asset.save(data, 'json') - return data + }).catch() + const shows = await res + return shows.splice(0, 6) } diff --git a/src/_includes/now.liquid b/src/_includes/now.liquid index 55b8b272..d137226f 100644 --- a/src/_includes/now.liquid +++ b/src/_includes/now.liquid @@ -163,18 +163,32 @@ layout: main Watching: tv
- +
{% endif %} -

This is a +

This is a now page, and if you have your own site, you should make one too.