chore: update uses
This commit is contained in:
parent
e977d7ff4f
commit
8079fa1880
4 changed files with 34 additions and 21 deletions
|
@ -91,6 +91,14 @@ module.exports = function (eleventyConfig) {
|
|||
if (tagString) tags[url] = tagString
|
||||
})
|
||||
}
|
||||
if (item.data.articles) {
|
||||
item.data.articles.forEach((article) => {
|
||||
const tagString = [...new Set(article.tags.map((tag) => tagAliases[tag.toLowerCase()]))]
|
||||
.join(' ')
|
||||
.trim()
|
||||
if (tagString) tags[article.url] = tagString
|
||||
})
|
||||
}
|
||||
})
|
||||
return tags
|
||||
})
|
||||
|
|
4
.env
4
.env
|
@ -1,8 +1,8 @@
|
|||
API_KEY_LASTFM=
|
||||
API_KEY_TRAKT=
|
||||
API_KEY_WEBMENTIONS_CORYD_DEV=
|
||||
ACCESS_TOKEN_MATTER=
|
||||
SITE_ID_CLICKY=
|
||||
SITE_KEY_CLICKY=
|
||||
SECRET_FEED_ALBUM_RELEASES=
|
||||
SECRET_FEED_GOODREADS=
|
||||
SECRET_FEED_INSTAPAPER_LIKES=
|
||||
SECRET_FEED_GOODREADS=
|
|
@ -1,24 +1,28 @@
|
|||
const Parser = require('rss-parser')
|
||||
const { AssetCache } = require('@11ty/eleventy-fetch')
|
||||
const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||
|
||||
module.exports = async function () {
|
||||
const parser = new Parser()
|
||||
const url = process.env.SECRET_FEED_INSTAPAPER_LIKES
|
||||
const asset = new AssetCache('articles_data')
|
||||
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
||||
const res = await parser.parseURL(url).catch((error) => {
|
||||
console.log(error.message)
|
||||
const MATTER_TOKEN = process.env.ACCESS_TOKEN_MATTER
|
||||
const headers = { Cookie: MATTER_TOKEN }
|
||||
const url = `https://web.getmatter.com/api/library_items/favorites_feed`
|
||||
const res = EleventyFetch(url, {
|
||||
duration: '1h',
|
||||
type: 'json',
|
||||
fetchOptions: { headers },
|
||||
})
|
||||
const articles = res.items.map((item) => {
|
||||
const feed = await res
|
||||
const articles = feed.feed
|
||||
return articles.reverse().map((article) => {
|
||||
const tags = article['content']['tags'].map((tag) => tag['name'])
|
||||
return {
|
||||
title: item['title'],
|
||||
date: item['pubDate'],
|
||||
description: item['contentSnippet'],
|
||||
url: item['link'],
|
||||
id: item['guid'],
|
||||
type: 'article',
|
||||
url: article['content']['url'],
|
||||
title: article['content']['title'],
|
||||
date: article['content']['library']['modified_date']
|
||||
? new Date(article['content']['library']['modified_date'])
|
||||
: new Date(article['content']['publication_date']),
|
||||
description: article['content']['excerpt'],
|
||||
notes: article['content']['my_notes'] || '',
|
||||
tags,
|
||||
id: btoa(article['id']),
|
||||
}
|
||||
})
|
||||
await asset.save(articles, 'json')
|
||||
return articles
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ Software and services that I use for work and my own enjoyment.
|
|||
- [Orion](https://browser.kagi.com)
|
||||
- [Obsidian](https://obsidian.md)
|
||||
- [Mona](https://mastodon.social/@MonaApp)
|
||||
- [ReadKit](https://readkit.app)
|
||||
- [NetNewsWire](https://netnewswire.com)
|
||||
- [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>
|
||||
|
@ -52,6 +52,7 @@ Software and services that I use for work and my own enjoyment.
|
|||
- [VS Code](https://code.visualstudio.com)
|
||||
- [iTerm2](https://iterm2.com)
|
||||
- [Magnet](https://magnet.crowdcafe.com)
|
||||
- [Keyboard Maestro](https://www.keyboardmaestro.com)
|
||||
- [Bartender](https://www.macbartender.com)
|
||||
- [AirBuddy](https://v2.airbuddy.app)
|
||||
- [Lingon](https://www.peterborgapps.com/lingon)
|
||||
|
@ -75,7 +76,7 @@ Software and services that I use for work and my own enjoyment.
|
|||
- [Mullvad](https://mullvad.net)
|
||||
- [Kagi](https://kagi.com)
|
||||
- [Feedbin](https://feedbin.com)
|
||||
- [Instapaper](https://instapaper.com)
|
||||
- [Matter](https://getmatter.com)
|
||||
- [forwardemail.net](https://forwardemail.net)
|
||||
- [1Password](https://1password.com)
|
||||
- [Spotify](https://spotify.com)
|
||||
|
|
Reference in a new issue