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_PLAUSIBLE=
|
||||||
API_KEY_TRAKT=
|
API_KEY_TRAKT=
|
||||||
API_KEY_WEBMENTIONS_CORYD_DEV=
|
API_KEY_WEBMENTIONS_CORYD_DEV=
|
||||||
|
API_TOKEN_MATTER=
|
||||||
API_BEARER_APPLE_MUSIC=
|
API_BEARER_APPLE_MUSIC=
|
||||||
API_TOKEN_APPLE_MUSIC=
|
API_TOKEN_APPLE_MUSIC=
|
||||||
APPLE_RENEW_TOKEN_URL=
|
APPLE_RENEW_TOKEN_URL=
|
||||||
CONSUMER_KEY_POCKET=
|
|
||||||
ACCESS_TOKEN_POCKET=
|
|
||||||
SECRET_FEED_ALBUM_RELEASES=
|
SECRET_FEED_ALBUM_RELEASES=
|
|
@ -1,31 +1,20 @@
|
||||||
const EleventyFetch = require('@11ty/eleventy-fetch')
|
const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||||
|
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const KEY = process.env.CONSUMER_KEY_POCKET
|
const MATTER_TOKEN = process.env.API_TOKEN_MATTER
|
||||||
const TOKEN = process.env.ACCESS_TOKEN_POCKET
|
const headers = { Authorization: `Bearer ${MATTER_TOKEN}` }
|
||||||
const url = 'https://getpocket.com/v3/get'
|
const url = `https://web.getmatter.com/api/library_items/favorites_feed`
|
||||||
const res = EleventyFetch(url, {
|
const res = EleventyFetch(url, {
|
||||||
duration: '1h',
|
duration: '1h',
|
||||||
type: 'json',
|
type: 'json',
|
||||||
fetchOptions: {
|
fetchOptions: { headers },
|
||||||
method: 'POST',
|
})
|
||||||
body: JSON.stringify({
|
const feed = await res
|
||||||
'consumer_key': KEY,
|
const links = feed.feed.splice(0, 5).map(link => {
|
||||||
'access_token': TOKEN,
|
|
||||||
'favorite': 1,
|
|
||||||
}),
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}).catch()
|
|
||||||
const data = await res
|
|
||||||
const articles = Object.values(data.list).map(article => {
|
|
||||||
return {
|
return {
|
||||||
title: article['resolved_title'],
|
title: link.content.title,
|
||||||
url: article['resolved_url'],
|
url: link.content.url
|
||||||
time: article['time_added']
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
return articles.sort((a, b) => b.time - a.time).splice(0, 5)
|
return links
|
||||||
}
|
}
|
||||||
|
|
|
@ -119,6 +119,7 @@ layout: main
|
||||||
</h2>
|
</h2>
|
||||||
<div class="grid grid-cols-3 gap-2 md:grid-cols-6 not-prose">
|
<div class="grid grid-cols-3 gap-2 md:grid-cols-6 not-prose">
|
||||||
{% for book in books %}
|
{% for book in books %}
|
||||||
|
{% if book.cover %}
|
||||||
<a href="{{book.link}}" title="{{book.title | escape}}">
|
<a href="{{book.link}}" title="{{book.title | escape}}">
|
||||||
<div class="relative block" style="max-width:226px">
|
<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>
|
<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' %}
|
{% image bookImg, bookName, 'rounded-lg w-full h-full', '180px' %}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -39,7 +39,6 @@ Software and services that I use for work and my own enjoyment.
|
||||||
|
|
||||||
- [Things](https://culturedcode.com/things/)
|
- [Things](https://culturedcode.com/things/)
|
||||||
- [Ivory](https://tapbots.com/ivory)
|
- [Ivory](https://tapbots.com/ivory)
|
||||||
- [Readkit](https://readkit.app)
|
|
||||||
- [Parcel](https://parcelapp.net)
|
- [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>
|
<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)
|
- [Mullvad](https://mullvad.net)
|
||||||
- [forwardemail.net](https://forwardemail.net)
|
- [forwardemail.net](https://forwardemail.net)
|
||||||
- [1Password](https://1password.com)
|
- [1Password](https://1password.com)
|
||||||
- [Feedbin](https://feedbin.com)
|
|
||||||
- [Pocket](https://getpocket.com)
|
|
||||||
- [Trakt](https://trakt.tv)
|
- [Trakt](https://trakt.tv)
|
||||||
- [Letterboxd](https://letterboxd.com)
|
- [Letterboxd](https://letterboxd.com)
|
||||||
|
- [Matter](https://getmatter.com)
|
||||||
- [Whereby](https://whereby.com)
|
- [Whereby](https://whereby.com)
|
||||||
- [Slack](http://slack.com)
|
- [Slack](http://slack.com)
|
||||||
- [Discord](http://discord.com)
|
- [Discord](http://discord.com)
|
||||||
|
|
Reference in a new issue