chore: refactor book data

This commit is contained in:
Cory Dransfeldt 2023-06-28 20:18:39 -07:00
parent 44937c864c
commit b58ea63bc1
No known key found for this signature in database
4 changed files with 31 additions and 33 deletions

View file

@ -1,29 +1,29 @@
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 url = 'https://oku.club/rss/collection/POaRa' const OKU_URL = 'https://oku.club/api/collections/user/cory/reading'
// noinspection JSCheckFunctionSignatures const OPEN_LIBRARY_URL = 'https://openlibrary.org/search.json?title='
const asset = new AssetCache('books_data') const res = EleventyFetch(OKU_URL, {
if (asset.isCacheValid('1h')) return await asset.getCachedValue() duration: '1h',
const res = await extract(url, { type: 'json',
getExtraEntryFields: (feedEntry) => { }).catch()
return { const data = await res
image: const books = []
feedEntry['oku:cover'] || for (const book of data['books']) {
`https://cdn.coryd.dev/books/${feedEntry.title const res = await fetch(`${OPEN_LIBRARY_URL}${book.title.replace(/\s+/g, '+')}`)
.replace(/\s+/g, '-') .then((res) => res.json())
.replace(':', '') .catch()
.toLowerCase()}.jpg` || const data = await res
'https://cdn.coryd.dev/books/missing-book.jpg', const coverId = data['docs'].find((b) => {
} return b['author_name'][0] === book['authors'][0].name
}, })?.['cover_i']
}) books.push({
.catch((error) => { title: book.title,
console.log(error.message) url: `https://oku.club/book/${book.slug}`,
cover: coverId
? `https://books.coryd.dev/b/id/${coverId}-L.jpg`
: `https://cdn.coryd.dev/books/${book.title.toLowerCase().replace(/\s+/g, '-')}.jpg`,
}) })
.catch() }
const data = res.entries return books
await asset.save(data, 'json')
return data
} }

View file

@ -13,10 +13,8 @@
"instapaper": "https://www.instapaper.com/p/coryd", "instapaper": "https://www.instapaper.com/p/coryd",
"letterboxd": "https://letterboxd.com/cdme", "letterboxd": "https://letterboxd.com/cdme",
"letterboxd-host": "https://a.ltrbxd.com", "letterboxd-host": "https://a.ltrbxd.com",
"oku-host": "https://oku.ams3.cdn.digitaloceanspaces.com",
"trakt": "https://trakt.tv/users/cdransf", "trakt": "https://trakt.tv/users/cdransf",
"oku": "https://oku.club/user/cory", "oku": "https://oku.club/user/cory",
"coffee": "https://www.buymeacoffee.com/cory", "coffee": "https://www.buymeacoffee.com/cory",
"cdn-movies": "https://movies.coryd.dev", "cdn-movies": "https://movies.coryd.dev"
"cdn-books": "https://books.coryd.dev"
} }

View file

@ -6,8 +6,8 @@
</h2> </h2>
<div class="dark:text-white text-gray-800"> <div class="dark:text-white text-gray-800">
<p>I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, music, writing, reading and tv and movies.</p> <p>I'm a software developer in Camarillo, California. I enjoy hanging out with my beautiful family and 4 rescue dogs, technology, automation, music, writing, reading and tv and movies.</p>
<p class="mb-0 flex flex-row items-center"> <p class="mb-0 flex flex-row items-start md:items-center">
<span class="mr-1">{{ status.emoji }}</span> <span class="pt-1 md:pt-0 mr-1">{{ status.emoji }}</span>
<span>{{ status.content }}</span> <span>{{ status.content }}</span>
</p> </p>
</div> </div>

View file

@ -119,13 +119,13 @@ layout: main
</h2> </h2>
<div class="grid grid-cols-3 gap-2 md:grid-cols-6 not-prose"> <div class="grid grid-cols-3 gap-2 md:grid-cols-6 not-prose">
{% for book in books %} {% for book in books %}
<a href="{{book.link}}" title="{{book.title | escape}}"> <a href="{{book.url}}" title="{{book.title | escape}}">
<div class="relative block" style="max-width:226px"> <div class="relative block" style="max-height:226px">
<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-purple-400 dark:hover:border-purple-500"></div> <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-purple-400 dark:hover:border-purple-500"></div>
<div class="absolute left-1 bottom-2 drop-shadow-md"> <div class="absolute left-1 bottom-2 drop-shadow-md">
<div class="px-1 text-xs font-bold text-white line-clamp-3">{{ book.title }}</div> <div class="px-1 text-xs font-bold text-white line-clamp-3">{{ book.title }}</div>
</div> </div>
{%- capture bookImg %}{{book.image | cdn: site.oku-host, site.cdn-books}}{% endcapture -%} {%- capture bookImg %}{{book.cover}}{% endcapture -%}
{%- capture bookName %}{{book.title | escape}}{% endcapture -%} {%- capture bookName %}{{book.title | escape}}{% endcapture -%}
{% image bookImg, bookName, 'rounded-lg w-full', '180px' %} {% image bookImg, bookName, 'rounded-lg w-full', '180px' %}
</div> </div>