feat: links from matter
This commit is contained in:
parent
512fcd0167
commit
51d2a1c7d9
4 changed files with 14 additions and 26 deletions
3
.env
3
.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=
|
|
@ -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
|
||||
}
|
||||
|
|
|
@ -119,6 +119,7 @@ layout: main
|
|||
</h2>
|
||||
<div class="grid grid-cols-3 gap-2 md:grid-cols-6 not-prose">
|
||||
{% for book in books %}
|
||||
{% if book.cover %}
|
||||
<a href="{{book.link}}" title="{{book.title | escape}}">
|
||||
<div class="relative block" style="max-width:226px">
|
||||
<div class="absolute left-0 top-0 h-full w-full rounded-lg border border-purple-600 hover:border-purple-500 dark:border-purple-400 dark:hover:border-purple-500"></div>
|
||||
|
@ -127,6 +128,7 @@ layout: main
|
|||
{% image bookImg, bookName, 'rounded-lg w-full h-full', '180px' %}
|
||||
</div>
|
||||
</a>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
|
|
@ -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)
|
||||
|
||||
<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">iOS</h3>
|
||||
|
@ -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)
|
||||
|
|
Reference in a new issue