chore: perf improvements
This commit is contained in:
parent
bb9a086c32
commit
de5cb2db8b
4 changed files with 21 additions and 6 deletions
|
@ -5,7 +5,13 @@ module.exports = {
|
||||||
`https://cdn.coryd.dev/artists/${media.replace(/\s+/g, '-').toLowerCase()}.jpg`,
|
`https://cdn.coryd.dev/artists/${media.replace(/\s+/g, '-').toLowerCase()}.jpg`,
|
||||||
album: (media) => {
|
album: (media) => {
|
||||||
return !ALBUM_DENYLIST.includes(media.name.replace(/\s+/g, '-').toLowerCase())
|
return !ALBUM_DENYLIST.includes(media.name.replace(/\s+/g, '-').toLowerCase())
|
||||||
? media.image[media.image.length - 1]['#text']
|
? media.image[media.image.length - 1]['#text'].replace(
|
||||||
: `https://cdn.coryd.dev/artists/${media.name.replace(/\s+/g, '-').toLowerCase()}.jpg`
|
'https://lastfm.freetls.fastly.net',
|
||||||
|
'https://albums.coryd.dev'
|
||||||
|
)
|
||||||
|
: `https://cdn.coryd.dev/albums/${media.name.replace(/\s+/g, '-').toLowerCase()}.jpg`
|
||||||
|
},
|
||||||
|
proxy: (url, host, cdn) => {
|
||||||
|
return url.replace(host, cdn)
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,9 @@
|
||||||
"listenbrainz": "https://listenbrainz.org/user/cdransf/",
|
"listenbrainz": "https://listenbrainz.org/user/cdransf/",
|
||||||
"pinboard": "https://pinboard.in/u:cdme/profile/public/",
|
"pinboard": "https://pinboard.in/u:cdme/profile/public/",
|
||||||
"letterboxd": "https://letterboxd.com/cdme",
|
"letterboxd": "https://letterboxd.com/cdme",
|
||||||
|
"letterboxd-host": "https://a.ltrbxd.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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,10 +7,17 @@ module.exports = async function () {
|
||||||
// noinspection JSCheckFunctionSignatures
|
// noinspection JSCheckFunctionSignatures
|
||||||
const asset = new AssetCache('tv_data')
|
const asset = new AssetCache('tv_data')
|
||||||
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
||||||
const res = await extract(url).catch((error) => {
|
const res = await extract(url, {
|
||||||
|
getExtraEntryFields: (feedEntry) => {
|
||||||
|
const image = feedEntry['media:thumbnail']['@_url']
|
||||||
|
return {
|
||||||
|
image,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
}).catch((error) => {
|
||||||
console.log(error.message)
|
console.log(error.message)
|
||||||
})
|
})
|
||||||
const data = res.entries.splice(0, 5)
|
const data = res.entries.splice(0, 6)
|
||||||
await asset.save(data, 'json')
|
await asset.save(data, 'json')
|
||||||
return data
|
return data
|
||||||
}
|
}
|
||||||
|
|
|
@ -145,7 +145,7 @@ layout: main
|
||||||
<div class="px-1 text-xs font-bold text-white">{{ movie.title }}</div>
|
<div class="px-1 text-xs font-bold text-white">{{ movie.title }}</div>
|
||||||
</div>
|
</div>
|
||||||
<img
|
<img
|
||||||
src="{{movie.image}}"
|
src="{{movie.image | proxy: site.letterboxd-host, site.cdn-movies}}"
|
||||||
onerror="this.onerror=null; this.src='/assets/img/media/404-movie.jpg'"
|
onerror="this.onerror=null; this.src='/assets/img/media/404-movie.jpg'"
|
||||||
width="226"
|
width="226"
|
||||||
height="337"
|
height="337"
|
||||||
|
|
Reference in a new issue