chore: feed tweaks
This commit is contained in:
parent
e56c4d1ce4
commit
2c517144d7
4 changed files with 22 additions and 4 deletions
2
cache/jsonfeed-to-mastodon-timestamp.json
vendored
2
cache/jsonfeed-to-mastodon-timestamp.json
vendored
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"timestamp": 1699977789529
|
||||
"timestamp": 1699992177903
|
||||
}
|
11
cache/jsonfeed-to-mastodon.json
vendored
11
cache/jsonfeed-to-mastodon.json
vendored
|
@ -7243,5 +7243,16 @@
|
|||
"https://social.lol/users/cory/statuses/111409744410391018"
|
||||
],
|
||||
"lastTootTimestamp": 1699977789523
|
||||
},
|
||||
"https://jarango.com/2022/09/15/against-superficial-simplicity/": {
|
||||
"id": "aHR0cHM6Ly9qYXJhbmdvLmNvbS8yMDIyLzA5LzE1L2FnYWluc3Qtc3VwZXJmaWNpYWwtc2ltcGxpY2l0eS8=",
|
||||
"title": "🔗: Against Superficial Simplicity",
|
||||
"url": "https://jarango.com/2022/09/15/against-superficial-simplicity/",
|
||||
"content_text": "🔗: Against Superficial Simplicity #WebDev https://jarango.com/2022/09/15/against-superficial-simplicity/",
|
||||
"date_published": "Tue, 14 Nov 2023 16:21:47 +0000",
|
||||
"toots": [
|
||||
"https://social.lol/users/cory/statuses/111410687363653746"
|
||||
],
|
||||
"lastTootTimestamp": 1699992177896
|
||||
}
|
||||
}
|
|
@ -13,8 +13,14 @@ module.exports = {
|
|||
let excerpt = ''
|
||||
|
||||
// set the entry excerpt
|
||||
if (entry.description) excerpt = entry.description
|
||||
if (entry.data?.post_excerpt) excerpt = md.render(entry.data.post_excerpt)
|
||||
if (entry.description)
|
||||
excerpt = entry.description.includes('p>')
|
||||
? entry.description
|
||||
: `<p>${entry.description}</p>`
|
||||
if (entry.data?.post_excerpt)
|
||||
excerpt = md.render(entry.data.post_excerpt).includes('p>')
|
||||
? md.render(entry.data.post_excerpt)
|
||||
: `<p>${md.render(entry.data.post_excerpt)}</p>`
|
||||
|
||||
// if there's a valid entry return a normalized object
|
||||
if (entry)
|
||||
|
|
|
@ -3,7 +3,7 @@ const EleventyFetch = require('@11ty/eleventy-fetch')
|
|||
module.exports = async function () {
|
||||
const TV_KEY = process.env.API_KEY_TRAKT
|
||||
const MOVIEDB_KEY = process.env.API_KEY_MOVIEDB
|
||||
const url = 'https://api.trakt.tv/users/cdransf/history/movies?page=1&limit=30'
|
||||
const url = 'https://api.trakt.tv/users/cdransf/history/movies?page=1&limit=6&extended=full'
|
||||
const res = EleventyFetch(url, {
|
||||
duration: '1h',
|
||||
type: 'json',
|
||||
|
@ -23,6 +23,7 @@ module.exports = async function () {
|
|||
url: `https://trakt.tv/movies/${item['movie']['ids']['slug']}`,
|
||||
id: item['movie']['ids']['trakt'],
|
||||
tmdbId: item['movie']['ids']['tmdb'],
|
||||
description: item['movie']['overview'],
|
||||
type: 'movie',
|
||||
}
|
||||
})
|
||||
|
|
Reference in a new issue