chore: extract read percentage

This commit is contained in:
Cory Dransfeldt 2023-10-28 19:55:48 -07:00
parent 815552ea27
commit 5bd5aede22
2 changed files with 14 additions and 2 deletions

1
.env
View file

@ -7,3 +7,4 @@ APPLE_RENEW_TOKEN_URL=
SITE_ID_CLICKY= SITE_ID_CLICKY=
SITE_KEY_CLICKY= SITE_KEY_CLICKY=
SECRET_FEED_ALBUM_RELEASES= SECRET_FEED_ALBUM_RELEASES=
COOKIE_STORYGRAPH=

View file

@ -3,11 +3,16 @@ const { AssetCache } = require('@11ty/eleventy-fetch')
const { JSDOM } = jsdom const { JSDOM } = jsdom
module.exports = async function () { module.exports = async function () {
const COOKIE = process.env.COOKIE_STORYGRAPH
const url = 'https://app.thestorygraph.com/currently-reading/coryd' const url = 'https://app.thestorygraph.com/currently-reading/coryd'
const asset = new AssetCache('books_data') const asset = new AssetCache('books_data')
if (asset.isCacheValid('1h')) return await asset.getCachedValue() if (asset.isCacheValid('1h')) return await asset.getCachedValue()
const data = [] const data = []
await fetch(url) await fetch(url, {
headers: {
Cookie: COOKIE,
},
})
.then((res) => res.text()) .then((res) => res.text())
.then((html) => { .then((html) => {
const DOM = new JSDOM(html) const DOM = new JSDOM(html)
@ -33,6 +38,12 @@ module.exports = async function () {
if (!data[index]) data.push({ url: `https://app.thestorygraph.com${url.href}` }) if (!data[index]) data.push({ url: `https://app.thestorygraph.com${url.href}` })
if (data[index]) data[index]['url'] = `https://app.thestorygraph.com${url.href}` if (data[index]) data[index]['url'] = `https://app.thestorygraph.com${url.href}`
}) })
doc
.querySelectorAll('.md\\:block .progress-tracker-pane .font-semibold')
.forEach((percentage, index) => {
if (!data[index]) data.push({ percentage: percentage.textContent })
if (data[index]) data[index]['percentage'] = percentage.textContent
})
}) })
const books = data const books = data
.filter((book) => book.title) .filter((book) => book.title)