chore: matter -> reader

This commit is contained in:
Cory Dransfeldt 2023-07-14 13:45:38 -07:00
parent d2c5d9a8c1
commit 156b0ff9e3
No known key found for this signature in database
4 changed files with 15 additions and 12 deletions

2
.env
View file

@ -1,7 +1,7 @@
API_KEY_PLAUSIBLE= API_KEY_PLAUSIBLE=
API_KEY_TRAKT= API_KEY_TRAKT=
API_KEY_WEBMENTIONS_CORYD_DEV= API_KEY_WEBMENTIONS_CORYD_DEV=
API_TOKEN_MATTER= API_TOKEN_READWISE=
API_BEARER_APPLE_MUSIC= API_BEARER_APPLE_MUSIC=
API_TOKEN_APPLE_MUSIC= API_TOKEN_APPLE_MUSIC=
APPLE_RENEW_TOKEN_URL= APPLE_RENEW_TOKEN_URL=

View file

@ -1,20 +1,23 @@
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.API_TOKEN_MATTER const READWISE_TOKEN = process.env.API_TOKEN_READWISE
const headers = { Authorization: `Bearer ${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 favorites = await res const data = await res
return favorites.feed.splice(0, 5).map(link => { const links = data.results.filter((result) => Object.keys(result.tags).includes('share'))
return links.splice(0, 5).map((link) => {
return { return {
title: link.content.title, title: link['title'],
url: link.content.url, url: link['source_url'],
time: link.content['publication_date'] time: link['published_date'],
summary: link['summary'],
id: link['id'],
} }
}) })
} }

View file

@ -9,10 +9,10 @@ permalink: '/links.json'
"feed_url": "https://coryd.dev/links.json", "feed_url": "https://coryd.dev/links.json",
"items": [{% for link in links %} "items": [{% for link in links %}
{ {
"id": "{{ link.link }}", "id": "{{ link.id }}",
"title": "{{ link.title | escape }}", "title": "{{ link.title | escape }}",
"url": "{{ link.url }}", "url": "{{ link.url }}",
"content_text": "", "content_text": "{{ link.summary | escape }}",
"date_published": "{{ link.time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}" "date_published": "{{ link.time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}"
}{% if not forloop.last %},{% endif %} }{% if not forloop.last %},{% endif %}
{% endfor %} {% endfor %}

View file

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