chore: use readwise for links

This commit is contained in:
Cory Dransfeldt 2023-05-12 15:07:40 -07:00
parent 440e7694a9
commit 33d12238e9
No known key found for this signature in database
6 changed files with 19 additions and 19 deletions

View file

@ -1,14 +1,15 @@
const EleventyFetch = require('@11ty/eleventy-fetch')
module.exports = async function () {
const MATTER_TOKEN = process.env.ACCESS_TOKEN_MATTER
const headers = { Authorization: `Bearer ${MATTER_TOKEN}` }
const url = `https://web.getmatter.com/api/library_items/favorites_feed`
const READWISE_KEY = process.env.API_KEY_READWISE
const headers = { Authorization: `Token ${READWISE_KEY}` }
const url = `https://readwise.io/api/v3/list/?category=article`
const res = EleventyFetch(url, {
duration: '1h',
type: 'json',
fetchOptions: { headers },
}).catch()
const feed = await res
return feed.feed.splice(0, 5)
const filtered = feed.results.filter((item) => Object.keys(item.tags).includes('shortlist'))
return filtered.splice(0, 5)
}

View file

@ -7,7 +7,7 @@
<link href="{{ pkg.homepage }}/links.xml" rel="self" />
<link href="{{ pkg.homepage }}/" />
<link rel="hub" href="https://pubsubhubbub.superfeedr.com/" />
<updated>{% block update %}{{ articles[0].content.library.last_favorited_date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}</updated>
<updated>{% block update %}{{ articles[0].created_at | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}</updated>
<id>{{ site.url }}</id>
<author>
<name>{{ site.name }}</name>

View file

@ -119,8 +119,8 @@ layout: main
<ul class="list-inside list-disc pl-5 md:pl-10">
{% for article in articles | reverse %}
<li class="mt-1.5 mb-2">
<a href="{{article.content.url}}" title="{{article.content.title | escape}}">
{{ article.content.title | escape }}
<a href="{{article.url}}" title="{{article.title | escape}}">
{{ article.title | escape }}
</a>
</li>
{% endfor %}

View file

@ -48,7 +48,7 @@ xmlns:atom="http://www.w3.org/2005/Atom">
</svg>
Feed preview • links
</h2>
<p>Recently read and favorited links <a href="/posts/2023/now-page-update-matter-favorites/">sourced from the Matter API.</a></p>
<p>Recently read and favorited links <a href="/posts/2023/now-page-update-matter-favorites/">sourced from the Reader API.</a></p>
<p><xsl:value-of select="atom:feed/atom:description"/></p>
</div>
<ul class="mb-8">

View file

@ -5,17 +5,17 @@ permalink: /links.xml
{% layout "./_includes/feed-links.liquid" %}
{% block title %}Links • Cory Dransfeldt{% endblock %}
{% block self %}links.xml{% endblock %}
{% block update %}{{ articles[0].content.library.last_favorited_date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
{% block update %}{{ articles[0].created_at | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
{% block entries %}
{% assign links = articles | reverse %}
{% for link in links %}
<entry>
<title>{{ link.content.title | escape }}</title>
<link href="{{link.content.url}}" />
<updated>{{ link.content.library.last_favorited_date | date: "%m.%d.%Y" }}</updated>
<id>{{ link.content.url }}</id>
<title>{{ link.title | escape }}</title>
<link href="{{link.url}}" />
<updated>{{ link.created_at | date: "%m.%d.%Y" }}</updated>
<id>{{ link.url }}</id>
<content type="html">
{{ link.excerpt | escape }}
{{ link.summary | escape }}
</content>
</entry>
{% endfor %}

View file

@ -22,9 +22,8 @@ Software and services that I use for work and my own enjoyment.
<h3 className="text-xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-2xl sm:leading-10 md:text-4xl md:leading-14">macOS + iOS</h3>
- [Todoist](https://todoist.com)
- [Obsidian](https://obsidian.md)
- [iBroadcast](https://ibroadcast.com)
- [Plexamp](https://plexamp.com)
- [Ivory](https://tapbots.com/ivory)
- [Parcel](https://parcelapp.net)
@ -58,11 +57,11 @@ Software and services that I use for work and my own enjoyment.
- <a href="https://dnsimple.com/r/3a7cbb9e15df8f" onclick="va('event',{name:'DNSimple referral',data:{location:'Uses'}})">DNSimple</a>
- <a href="https://bunny.net?ref=revw3mehej" onclick="va('event',{name:'Bunny.net referral',data:{location:'Uses'}})">Bunny.net</a>
- [1Password](https://1password.com)
- [Slack](http://slack.com)
- [Discord](http://discord.com)
- [Reader](https://readwise.io/read)
- [Trakt](https://trakt.tv)
- [Letterboxd](https://letterboxd.com)
- [Oku](https://oku.club)
- [Matter](https://getmatter.com)
- [Slack](http://slack.com)
- [Discord](http://discord.com)
Check out [uses.tech](https://uses.tech) for more lists like this one.