chore: additional tags

This commit is contained in:
Cory Dransfeldt 2023-09-13 18:04:31 -07:00
parent d2a1f766ef
commit 0168d8acc4
No known key found for this signature in database
4 changed files with 23 additions and 18 deletions

2
.env
View file

@ -1,7 +1,7 @@
API_KEY_LASTFM= API_KEY_LASTFM=
API_KEY_TRAKT= API_KEY_TRAKT=
API_KEY_WEBMENTIONS_CORYD_DEV= API_KEY_WEBMENTIONS_CORYD_DEV=
ACCESS_TOKEN_MATTER= API_TOKEN_READWISE=
SITE_ID_CLICKY= SITE_ID_CLICKY=
SITE_KEY_CLICKY= SITE_KEY_CLICKY=
SECRET_FEED_ALBUM_RELEASES= SECRET_FEED_ALBUM_RELEASES=

View file

@ -42,7 +42,12 @@ module.exports = {
return visitors(b) - visitors(a) return visitors(b) - visitors(a)
}) })
}, },
tagLookup: (url, tagMap) => tagMap[url], tagLookup: (url, tagMap) => {
if (!url) return
if (url.includes('goodreads.com')) return '#Books #Reading'
if (url.includes('letterboxd.com')) return '#Movies #Letterboxd'
return tagMap[url] || ''
},
webmentionsByUrl: (webmentions, url) => { webmentionsByUrl: (webmentions, url) => {
const allowedTypes = ['mention-of', 'in-reply-to', 'like-of', 'repost-of'] const allowedTypes = ['mention-of', 'in-reply-to', 'like-of', 'repost-of']

View file

@ -1,27 +1,27 @@
const EleventyFetch = require('@11ty/eleventy-fetch') const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () { module.exports = async function () {
const MATTER_TOKEN = process.env.ACCESS_TOKEN_MATTER const READWISE_TOKEN = process.env.API_TOKEN_READWISE
const headers = { Cookie: MATTER_TOKEN } const headers = { Authorization: `Token ${READWISE_TOKEN}` }
const url = `https://web.getmatter.com/api/library_items/favorites_feed` const url = 'https://readwise.io/api/v3/list?category=article'
const res = EleventyFetch(url, { const res = EleventyFetch(url, {
duration: '1h', duration: '1h',
type: 'json', type: 'json',
fetchOptions: { headers }, fetchOptions: { headers },
}) })
const feed = await res const data = await res
return feed.feed.map((article) => { const links = data['results'].filter((result) => Object.keys(result.tags).includes('share'))
const tags = article['content']['tags'].map((tag) => tag['name']) return links.map((link) => {
return { return {
url: article['content']['url'], title: link['title'],
title: article['content']['title'], url: link['source_url'],
date: article['content']['library']['modified_date'] date: link['published_date']
? new Date(article['content']['library']['modified_date']) ? new Date(link['published_date'])
: new Date(article['content']['publication_date']), : new Date(link['created_at']),
description: article['content']['excerpt'], summary: link['summary'],
notes: article['content']['my_notes'] || '', notes: link['notes'],
tags, tags: Object.keys(link.tags).filter((tag) => tag !== 'share' && tag !== 'shortlist'),
id: btoa(article['id']), id: btoa(link['source_url']),
} }
}) })
} }

View file

@ -85,7 +85,7 @@ Software and services that I use for work and my own enjoyment.
- [Trakt](https://trakt.tv) - [Trakt](https://trakt.tv)
- [Letterboxd](https://letterboxd.com) - [Letterboxd](https://letterboxd.com)
- [Goodreads](https://goodreads.com) - [Goodreads](https://goodreads.com)
- [Matter](https://getmatter.com) - [Reader](https://readwise.io/read)
- [Slack](http://slack.com) - [Slack](http://slack.com)
- [Discord](http://discord.com) - [Discord](http://discord.com)