feat: tv posters

This commit is contained in:
Cory Dransfeldt 2023-05-26 20:25:18 -07:00
parent 71fd6da548
commit 06484abc42
No known key found for this signature in database
3 changed files with 38 additions and 27 deletions

View file

@ -11,6 +11,7 @@ module.exports = {
) )
: `https://cdn.coryd.dev/albums/${media.name.replace(/\s+/g, '-').toLowerCase()}.jpg` : `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) => { movie: (url, host, cdn) => {
return url.replace(host, cdn).replace('600', '200').replace('900', '300') return url.replace(host, cdn).replace('600', '200').replace('900', '300')
}, },

View file

@ -1,23 +1,19 @@
const { extract } = require('@extractus/feed-extractor') const EleventyFetch = require('@11ty/eleventy-fetch')
const { AssetCache } = require('@11ty/eleventy-fetch')
module.exports = async function () { module.exports = async function () {
const TV_KEY = process.env.API_KEY_TRAKT const TV_KEY = process.env.API_KEY_TRAKT
const url = `https://trakt.tv/users/cdransf/history.atom?slurm=${TV_KEY}` const url = 'https://api.trakt.tv/users/cdransf/history/shows'
// noinspection JSCheckFunctionSignatures const res = EleventyFetch(url, {
const asset = new AssetCache('tv_data') duration: '1h',
if (asset.isCacheValid('1h')) return await asset.getCachedValue() type: 'json',
const res = await extract(url, { fetchOptions: {
getExtraEntryFields: (feedEntry) => { headers: {
const image = feedEntry['media:thumbnail']['@_url'] 'Content-Type': 'application/json',
return { 'trakt-api-version': 2,
image, 'trakt-api-key': TV_KEY,
} },
}, },
}).catch((error) => { }).catch()
console.log(error.message) const shows = await res
}) return shows.splice(0, 6)
const data = res.entries.splice(0, 6)
await asset.save(data, 'json')
return data
} }

View file

@ -163,18 +163,32 @@ layout: main
Watching: tv Watching: tv
</h2> </h2>
<div> <div>
<ul class="list-inside list-disc pl-5 md:pl-10"> <div class="grid grid-cols-3 gap-2 md:grid-cols-6 not-prose">
{% for show in tv %} {% for episode in tv %}
<li class="mt-1.5 mb-2"> <a href="https://trakt.tv/shows/{{episode.show.ids.slug}}/seasons/{{ episode.episode.season }}/episodes/{{ episode.episode.number }}" title="{{ episode.episode.title | escape}} {{ episode.show.title | escape }}">
<a href="{{show.link}}" title="{{show.title | escape}}"> <div class="relative block" style="max-width:226px">
{{ show.title }} <div class="absolute left-0 top-0 h-full w-full rounded-lg border border-purple-600 hover:border-purple-500 bg-cover-gradient dark:border-gray-500 dark:hover:border-purple-400"></div>
</a> <div class="absolute left-1 bottom-2 drop-shadow-md">
</li> <div class="px-1 text-xs font-bold text-white">{{ episode.episode.title }}</div>
<div class="px-1 text-xs text-white">
{{ episode.show.title }} • <strong>S</strong>{{ episode.episode.season }}<strong>E</strong>{{ episode.episode.number }}
</div>
</div>
<img
src="{{ episode.show.title | tv }}"
onerror="this.onerror=null; this.src='/assets/img/media/404-movie.jpg'"
width="226"
height="337"
class="rounded-lg"
alt="{{ episode.episode.title | escape}} {{ episode.show.title | escape }}"
loading="lazy" />
</div>
</a>
{% endfor %} {% endfor %}
</ul> </div>
</div> </div>
{% endif %} {% endif %}
<p class="text-xs text-center">This is a <p class="text-xs text-center pt-4">This is a
<a href="https://nownownow.com/about">now page</a>, and if you have your own site, <a href="https://nownownow.com/about">now page</a>, and if you have your own site,
<a href="https://nownownow.com/about">you should make one too</a>.</p> <a href="https://nownownow.com/about">you should make one too</a>.</p>
</div> </div>