feat: album releases feeds + tv in search

This commit is contained in:
Cory Dransfeldt 2024-09-01 22:05:24 -07:00
parent cf33610473
commit 84b718f24e
No known key found for this signature in database
7 changed files with 71 additions and 41 deletions

View file

@ -29,7 +29,7 @@ export const processContent = (collection) => {
let id = 0 let id = 0
const collectionData = collection.getAll()[0] const collectionData = collection.getAll()[0]
const { data } = collectionData const { data } = collectionData
const { posts, links, movies, books, pages, artists, genres, tv, concerts } = data const { posts, links, movies, books, pages, artists, genres, tv, concerts, albumReleases } = data
const parseDate = (date) => { const parseDate = (date) => {
if (!date) return null if (!date) return null
@ -66,6 +66,7 @@ export const processContent = (collection) => {
} }
const movieData = movies['movies'].filter((movie) => movie['rating']) const movieData = movies['movies'].filter((movie) => movie['rating'])
const showData = tv['shows'].filter((show) => show['last_watched_at'])
const bookData = books.all.filter((book) => book['rating']) const bookData = books.all.filter((book) => book['rating'])
const addItemToIndex = (items, icon, getUrl, getTitle, getTags) => { const addItemToIndex = (items, icon, getUrl, getTitle, getTags) => {
@ -87,6 +88,7 @@ export const processContent = (collection) => {
items.forEach((item) => { items.forEach((item) => {
let attribution let attribution
let hashTags = tagsToHashtags(item) ? ' ' + tagsToHashtags(item) : '' let hashTags = tagsToHashtags(item) ? ' ' + tagsToHashtags(item) : ''
if (item['type'] === 'album-release') hashTags = ' #Music #NewMusic'
// link attribution if properties exist // link attribution if properties exist
if (item?.['authors']?.['mastodon']) { if (item?.['authors']?.['mastodon']) {
@ -97,7 +99,7 @@ export const processContent = (collection) => {
} }
const content = { const content = {
url: `${BASE_URL}${item['url']}`, url: !item['url']?.includes('http') ? `${BASE_URL}${item['url']}` : item['url'],
title: `${icon}: ${getTitle(item)}${attribution ? ' via ' + attribution : ''}${hashTags}`, title: `${icon}: ${getTitle(item)}${attribution ? ' via ' + attribution : ''}${hashTags}`,
type: item['type'] type: item['type']
} }
@ -130,6 +132,7 @@ export const processContent = (collection) => {
addItemToIndex(artists, '🎙️', (item) => item['url'], (item) => `${item['name']} (${item['country']}) - ${item['genre']}`, (item) => `['${item['genre']}']`) addItemToIndex(artists, '🎙️', (item) => item['url'], (item) => `${item['name']} (${item['country']}) - ${item['genre']}`, (item) => `['${item['genre']}']`)
addItemToIndex(genres, '🎵', (item) => item['url'], (item) => item['name'], (item) => item.artists.map(artist => artist['name_string'])) addItemToIndex(genres, '🎵', (item) => item['url'], (item) => item['name'], (item) => item.artists.map(artist => artist['name_string']))
if (movieData) addItemToIndex(movieData, '🎥', (item) => item['url'], (item) => `${item['title']} (${item['rating']})`, (item) => item['tags']) if (movieData) addItemToIndex(movieData, '🎥', (item) => item['url'], (item) => `${item['title']} (${item['rating']})`, (item) => item['tags'])
if (showData) addItemToIndex(showData, '📺', (item) => item['url'], (item) => `${item['title']} (${item['year']})`, (item) => item['tags'])
if (bookData) addItemToIndex(bookData, '📖', (item) => item['url'], (item) => `${item['title']} (${item['rating']})`, (item) => item['tags']) if (bookData) addItemToIndex(bookData, '📖', (item) => item['url'], (item) => `${item['title']} (${item['rating']})`, (item) => item['tags'])
addContent(posts, '📝', (item) => item['title'], (item) => item['date']) addContent(posts, '📝', (item) => item['title'], (item) => item['date'])
@ -137,6 +140,7 @@ export const processContent = (collection) => {
addContent(books.all.filter((book) => book['status'] === 'finished'), '📖', (item) => `${item['title']}${item['rating'] ? ' (' + item['rating'] + ')' : ''}`, (item) => item['date']) addContent(books.all.filter((book) => book['status'] === 'finished'), '📖', (item) => `${item['title']}${item['rating'] ? ' (' + item['rating'] + ')' : ''}`, (item) => item['date'])
addContent(movies['movies'], '🎥', (item) => `${item['title']}${item['rating'] ? ' (' + item['rating'] + ')' : ''}`, (item) => item['lastWatched']) addContent(movies['movies'], '🎥', (item) => `${item['title']}${item['rating'] ? ' (' + item['rating'] + ')' : ''}`, (item) => item['lastWatched'])
addContent(concerts, '🎤', (item) => `${item['artistNameString'] ? item['artistNameString'] : item['artist']['name']} at ${item['venue']['name'].split(',')[0].trim()}`, (item) => item['date']) addContent(concerts, '🎤', (item) => `${item['artistNameString'] ? item['artistNameString'] : item['artist']['name']} at ${item['venue']['name'].split(',')[0].trim()}`, (item) => item['date'])
addContent([...albumReleases['current']].reverse(), '📆', (item) => `${item['title']} by ${item['artist']}`, (item) => item['release_date'])
addSiteMapContent(posts, (item) => item.title, (item) => item.date) addSiteMapContent(posts, (item) => item.title, (item) => item.date)
addSiteMapContent(pages, (item) => item.title, (item) => item.date) addSiteMapContent(pages, (item) => item.title, (item) => item.date)

View file

@ -4,7 +4,6 @@ import markdownIt from 'markdown-it'
import markdownItAnchor from 'markdown-it-anchor' import markdownItAnchor from 'markdown-it-anchor'
import markdownItFootnote from 'markdown-it-footnote' import markdownItFootnote from 'markdown-it-footnote'
import sanitizeHtml from 'sanitize-html' import sanitizeHtml from 'sanitize-html'
import { shuffleArray, sanitizeMediaString } from '../utilities/index.js' import { shuffleArray, sanitizeMediaString } from '../utilities/index.js'
const BASE_URL = 'https://coryd.dev' const BASE_URL = 'https://coryd.dev'
@ -108,47 +107,43 @@ export default {
const entryData = limit ? entries.slice(0, limit) : entries const entryData = limit ? entries.slice(0, limit) : entries
entryData.forEach((entry) => { entryData.forEach((entry) => {
const dateKey = Object.keys(entry).find(key => key.includes('date'))
const date = new Date(entry[dateKey])
const md = mdGenerator() const md = mdGenerator()
let excerpt = '' const dateKey = Object.keys(entry).find(key => key.includes('date'))
let url = '' let { title, image, url, slug, link, authors, description, type, content, backdrop, rating, tags } = entry
let author
let title = entry['title']
let image = entry['image']
const feedNote = '<hr/><p>This is a full text feed, but not all content can be rendered perfectly within the feed. If something looks off, feel free to <a href="https://coryd.dev">visit my site</a> for the original post.</p>' const feedNote = '<hr/><p>This is a full text feed, but not all content can be rendered perfectly within the feed. If something looks off, feel free to <a href="https://coryd.dev">visit my site</a> for the original post.</p>'
const processedEntry = { title: title.trim(), date: new Date(entry[dateKey]), content: description }
if (entry['url']?.includes('http')) url = entry.url if (url?.includes('http')) processedEntry['url'] = url
if (!entry['url']?.includes('http')) url = new URL(entry['url'], BASE_URL).toString() if (!url?.includes('http')) processedEntry['url'] = new URL(url, BASE_URL).toString()
if (entry?.['slug']) url = new URL(entry['slug'], BASE_URL).toString() if (slug) processedEntry['url'] = new URL(slug, BASE_URL).toString()
if (entry?.['link']) { if (link) {
title = `${entry['title']} via ${entry['authors']['name']}` processedEntry['title'] = `${title} via ${authors['name']}`
url = entry['link'], processedEntry['url'] = link,
author = { processedEntry['author'] = {
name: entry['authors']['name'], name: authors['name'],
url: entry['authors']['url'], url: authors['url'],
mastodon: entry['.authors']?.['mastodon'] || '', mastodon: authors?.['mastodon'] || '',
rss: entry['authors']?.['rss_feed'] || '' rss: authors?.['rss_feed'] || ''
} }
} }
if (entry['description']) excerpt = entry['description'] if (description) processedEntry['excerpt'] = description
if (entry['type'] === 'book' || entry['type'] === 'movie' || entry['type'] === 'link') excerpt = sanitizeHtml(`${md.render(entry.description)}`) if (['book', 'movie', 'link'].includes(type)) processedEntry['excerpt'] = sanitizeHtml(`${md.render(description)}`)
if (entry?.['slug'] && entry['content']) excerpt = sanitizeHtml(`${md.render(entry['content'])}${feedNote}`, { if (slug && content) processedEntry['excerpt'] = sanitizeHtml(`${md.render(content)}${feedNote}`, {
disallowedTagsMode: 'completelyDiscard' disallowedTagsMode: 'completelyDiscard'
}) })
if (entry['backdrop']) image = entry['backdrop']
if (entry) posts.push({ processedEntry['image'] = backdrop || image
title: title.trim(),
url, if (rating) processedEntry['rating'] = rating
image, if (tags) processedEntry['tags'] = tags
content: entry['description'], if (type === 'album-release') {
date, processedEntry['excerpt'] = `Check out the new release: <a href="${url}">${url}</a>`
excerpt, processedEntry['content'] = `Check out the new release: ${url}`
rating: entry?.['rating'] || '', }
tags: entry?.['tags'] || '',
author if (entry) posts.push(processedEntry)
})
}) })
return posts return posts
}, },

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.4.5", "version": "24.5.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.4.5", "version": "24.5.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.5.0", "@cdransf/api-text": "^1.5.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "24.4.5", "version": "24.5.0",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -38,9 +38,10 @@ const fetchAlbumReleases = async () => {
timestamp: releaseDate.toSeconds(), timestamp: releaseDate.toSeconds(),
} }
}).sort((a, b) => a['timestamp'] - b['timestamp']) }).sort((a, b) => a['timestamp'] - b['timestamp'])
const upcoming = all.filter(album => (!album['total_plays'] || album['total_plays'] <= 0) && album['release_date'] > today); const upcoming = all.filter(album => (!album['total_plays'] || album['total_plays'] <= 0) && album['release_date'] > today)
const current = all.filter(album => album['release_date'] <= today)
return { all, upcoming } return { all, upcoming, current }
} }
export default async function () { export default async function () {

View file

@ -0,0 +1,15 @@
---
layout: null
eleventyExcludeFromCollections: true
permalink: "/feeds/album-releases.json"
---
{%- assign releases = albumReleases.current | reverse -%}
{% render "partials/feeds/json.liquid"
permalink:"/feeds/album-releases.json"
title:"Album releases / Cory Dransfeldt"
globals:globals
data:releases
updated:releases[0].release_date
utm_campaign:"album_releases_feed"
appVersion:appVersion
%}

View file

@ -0,0 +1,15 @@
---
layout: null
eleventyExcludeFromCollections: true
permalink: "/feeds/album-releases"
---
{%- assign releases = albumReleases.current | reverse -%}
{% render "partials/feeds/rss.liquid"
permalink:"/feeds/album-releases"
title:"Album releases / Cory Dransfeldt"
globals:globals
data:releases
updated:releases[0].release_date
utm_campaign:"album_releases_feed"
appVersion:appVersion
%}