From 51d2a1c7d904049d4ed034b1140c276938822ca7 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sat, 8 Jul 2023 20:00:08 -0700 Subject: [PATCH] feat: links from matter --- .env | 3 +-- src/_data/links.js | 31 ++++++++++--------------------- src/_includes/now.liquid | 2 ++ src/uses.md | 4 +--- 4 files changed, 14 insertions(+), 26 deletions(-) diff --git a/.env b/.env index bc39b647..357bd97c 100644 --- a/.env +++ b/.env @@ -1,9 +1,8 @@ API_KEY_PLAUSIBLE= API_KEY_TRAKT= API_KEY_WEBMENTIONS_CORYD_DEV= +API_TOKEN_MATTER= API_BEARER_APPLE_MUSIC= API_TOKEN_APPLE_MUSIC= APPLE_RENEW_TOKEN_URL= -CONSUMER_KEY_POCKET= -ACCESS_TOKEN_POCKET= SECRET_FEED_ALBUM_RELEASES= \ No newline at end of file diff --git a/src/_data/links.js b/src/_data/links.js index 10e26a59..0ecfd9fb 100644 --- a/src/_data/links.js +++ b/src/_data/links.js @@ -1,31 +1,20 @@ const EleventyFetch = require('@11ty/eleventy-fetch') module.exports = async function () { - const KEY = process.env.CONSUMER_KEY_POCKET - const TOKEN = process.env.ACCESS_TOKEN_POCKET - const url = 'https://getpocket.com/v3/get' + const MATTER_TOKEN = process.env.API_TOKEN_MATTER + const headers = { Authorization: `Bearer ${MATTER_TOKEN}` } + const url = `https://web.getmatter.com/api/library_items/favorites_feed` const res = EleventyFetch(url, { duration: '1h', type: 'json', - fetchOptions: { - method: 'POST', - body: JSON.stringify({ - 'consumer_key': KEY, - 'access_token': TOKEN, - 'favorite': 1, - }), - headers: { - 'Content-Type': 'application/json', - }, - }, - }).catch() - const data = await res - const articles = Object.values(data.list).map(article => { + fetchOptions: { headers }, + }) + const feed = await res + const links = feed.feed.splice(0, 5).map(link => { return { - title: article['resolved_title'], - url: article['resolved_url'], - time: article['time_added'] + title: link.content.title, + url: link.content.url } }) - return articles.sort((a, b) => b.time - a.time).splice(0, 5) + return links } diff --git a/src/_includes/now.liquid b/src/_includes/now.liquid index aebb6139..930cf604 100644 --- a/src/_includes/now.liquid +++ b/src/_includes/now.liquid @@ -119,6 +119,7 @@ layout: main
{% for book in books %} + {% if book.cover %}
@@ -127,6 +128,7 @@ layout: main {% image bookImg, bookName, 'rounded-lg w-full h-full', '180px' %}
+ {% endif %} {% endfor %}
{% endif %} diff --git a/src/uses.md b/src/uses.md index 0ccdcb55..11dee6d1 100644 --- a/src/uses.md +++ b/src/uses.md @@ -39,7 +39,6 @@ Software and services that I use for work and my own enjoyment. - [Things](https://culturedcode.com/things/) - [Ivory](https://tapbots.com/ivory) -- [Readkit](https://readkit.app) - [Parcel](https://parcelapp.net)

iOS

@@ -77,10 +76,9 @@ Software and services that I use for work and my own enjoyment. - [Mullvad](https://mullvad.net) - [forwardemail.net](https://forwardemail.net) - [1Password](https://1password.com) -- [Feedbin](https://feedbin.com) -- [Pocket](https://getpocket.com) - [Trakt](https://trakt.tv) - [Letterboxd](https://letterboxd.com) +- [Matter](https://getmatter.com) - [Whereby](https://whereby.com) - [Slack](http://slack.com) - [Discord](http://discord.com)