fix: feed cleanup
This commit is contained in:
parent
7133b3d589
commit
94f77a46dd
7 changed files with 13 additions and 10 deletions
|
@ -3,7 +3,8 @@ const BASE_URL = 'https://coryd.dev'
|
|||
|
||||
module.exports = {
|
||||
normalizeEntries: (entries) => {
|
||||
return entries.map((entry) => {
|
||||
const posts = []
|
||||
entries.forEach((entry) => {
|
||||
const dateKey = Object.keys(entry).find((key) => key.includes('date'))
|
||||
const date = new Date(entry[dateKey])
|
||||
let excerpt = ''
|
||||
|
@ -14,14 +15,15 @@ module.exports = {
|
|||
|
||||
// if there's a valid entry return a normalized object
|
||||
if (entry && !entry.data?.link) {
|
||||
return {
|
||||
posts.push({
|
||||
title: entry.data?.title || entry.title,
|
||||
url: entry.url.includes('http') ? entry.url : new URL(entry.url, BASE_URL).toString(),
|
||||
content: entry.description,
|
||||
date,
|
||||
excerpt,
|
||||
}
|
||||
})
|
||||
}
|
||||
})
|
||||
return posts
|
||||
},
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
layout: null
|
||||
permalink: /feeds/books
|
||||
---
|
||||
{% render "partials/feeds/content.liquid"
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/books"
|
||||
title:"Books • Cory Dransfeldt"
|
||||
description:"Books I'm currently reading."
|
||||
|
|
|
@ -3,7 +3,7 @@ layout: null
|
|||
permalink: /feeds/posts
|
||||
---
|
||||
{%- assign posts = collections.posts | reverse -%}
|
||||
{% render "partials/feeds/content.liquid"
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/posts"
|
||||
title:"Cory Dransfeldt"
|
||||
description:"Posts from my site."
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
layout: null
|
||||
permalink: /feeds/follow
|
||||
---
|
||||
{% render "partials/feeds/content.liquid"
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/follow"
|
||||
title:"Follow • Cory Dransfeldt"
|
||||
description:"My activity from around the web."
|
||||
|
|
|
@ -2,11 +2,12 @@
|
|||
layout: null
|
||||
permalink: /feeds/links
|
||||
---
|
||||
{% render "partials/feeds/content.liquid"
|
||||
{%- assign links = collections.links | reverse -%}
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/links"
|
||||
title:"Links • Cory Dransfeldt"
|
||||
description:"Links I've shared."
|
||||
data:collections.links
|
||||
updated:collections.links[0].date
|
||||
data:links
|
||||
updated:links[0].date
|
||||
site:site
|
||||
%}
|
|
@ -8,6 +8,6 @@ link: https://pxlnv.com/linklog/stream-buy-music/
|
|||
---
|
||||
> Streaming services are all the piracy with none of the guilt. It is a broken model that is only slightly better than when this stuff came through illicit downloads from risky places. If someone can buy music outright, artists will benefit, but I cannot see how it implicitly makes them a better music enjoyer.
|
||||
|
||||
[I've been streaming music again](https://coryd.dev/posts/2023/i-dont-want-streaming-music/) in part (and I know this is ridiculous) because Spotify is ubiquitous, well-integrated and has a — well — [API that's usable for my purposes](https://coryd.dev/posts/2023/road-to-madness-apple-music-charts/). I still buy music I stream from Bandcamp and archive it and I still buy too many shirts to support bands (I also import missing music into playlists and playlist folders as an analog to albums). I've also been able to scrobble listens more reliably and found some really great bands like PUP. We'll see if it lasts, but it feels like a good balance for now.<!-- excerpt -->
|
||||
[I've been streaming music again](https://coryd.dev/posts/2023/i-dont-want-streaming-music/) in part (and I know this is ridiculous) because Spotify is ubiquitous, well-integrated and has a — well — [API that's usable for my purposes](https://coryd.dev/posts/2023/road-to-madness-apple-music-charts/). I still buy music I stream from Bandcamp and archive it and I still buy too many shirts to support bands (I also import missing music into playlists and playlist folders as an analog to albums). I've also been able to scrobble listens more reliably and found some really great bands like [PUP](https://open.spotify.com/artist/6A7uqgC2N1nUhrCLAytHxN). We'll see if it lasts, but it feels like a good balance for now.<!-- excerpt -->
|
||||
|
||||
<https://www.youtube.com/watch?v=iVuB1ZASrGw&pp=ygUHcHVwIGR2cA%3D%3D>
|
||||
|
|
Reference in a new issue