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 (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
|
return tags
|
||||||
})
|
})
|
||||||
|
|
4
.env
4
.env
|
@ -1,8 +1,8 @@
|
||||||
API_KEY_LASTFM=
|
API_KEY_LASTFM=
|
||||||
API_KEY_TRAKT=
|
API_KEY_TRAKT=
|
||||||
API_KEY_WEBMENTIONS_CORYD_DEV=
|
API_KEY_WEBMENTIONS_CORYD_DEV=
|
||||||
|
ACCESS_TOKEN_MATTER=
|
||||||
SITE_ID_CLICKY=
|
SITE_ID_CLICKY=
|
||||||
SITE_KEY_CLICKY=
|
SITE_KEY_CLICKY=
|
||||||
SECRET_FEED_ALBUM_RELEASES=
|
SECRET_FEED_ALBUM_RELEASES=
|
||||||
SECRET_FEED_GOODREADS=
|
SECRET_FEED_GOODREADS=
|
||||||
SECRET_FEED_INSTAPAPER_LIKES=
|
|
|
@ -1,24 +1,28 @@
|
||||||
const Parser = require('rss-parser')
|
const EleventyFetch = require('@11ty/eleventy-fetch')
|
||||||
const { AssetCache } = require('@11ty/eleventy-fetch')
|
|
||||||
|
|
||||||
module.exports = async function () {
|
module.exports = async function () {
|
||||||
const parser = new Parser()
|
const MATTER_TOKEN = process.env.ACCESS_TOKEN_MATTER
|
||||||
const url = process.env.SECRET_FEED_INSTAPAPER_LIKES
|
const headers = { Cookie: MATTER_TOKEN }
|
||||||
const asset = new AssetCache('articles_data')
|
const url = `https://web.getmatter.com/api/library_items/favorites_feed`
|
||||||
if (asset.isCacheValid('1h')) return await asset.getCachedValue()
|
const res = EleventyFetch(url, {
|
||||||
const res = await parser.parseURL(url).catch((error) => {
|
duration: '1h',
|
||||||
console.log(error.message)
|
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 {
|
return {
|
||||||
title: item['title'],
|
url: article['content']['url'],
|
||||||
date: item['pubDate'],
|
title: article['content']['title'],
|
||||||
description: item['contentSnippet'],
|
date: article['content']['library']['modified_date']
|
||||||
url: item['link'],
|
? new Date(article['content']['library']['modified_date'])
|
||||||
id: item['guid'],
|
: new Date(article['content']['publication_date']),
|
||||||
type: 'article',
|
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)
|
- [Orion](https://browser.kagi.com)
|
||||||
- [Obsidian](https://obsidian.md)
|
- [Obsidian](https://obsidian.md)
|
||||||
- [Mona](https://mastodon.social/@MonaApp)
|
- [Mona](https://mastodon.social/@MonaApp)
|
||||||
- [ReadKit](https://readkit.app)
|
- [NetNewsWire](https://netnewswire.com)
|
||||||
- [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>
|
||||||
|
@ -52,6 +52,7 @@ Software and services that I use for work and my own enjoyment.
|
||||||
- [VS Code](https://code.visualstudio.com)
|
- [VS Code](https://code.visualstudio.com)
|
||||||
- [iTerm2](https://iterm2.com)
|
- [iTerm2](https://iterm2.com)
|
||||||
- [Magnet](https://magnet.crowdcafe.com)
|
- [Magnet](https://magnet.crowdcafe.com)
|
||||||
|
- [Keyboard Maestro](https://www.keyboardmaestro.com)
|
||||||
- [Bartender](https://www.macbartender.com)
|
- [Bartender](https://www.macbartender.com)
|
||||||
- [AirBuddy](https://v2.airbuddy.app)
|
- [AirBuddy](https://v2.airbuddy.app)
|
||||||
- [Lingon](https://www.peterborgapps.com/lingon)
|
- [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)
|
- [Mullvad](https://mullvad.net)
|
||||||
- [Kagi](https://kagi.com)
|
- [Kagi](https://kagi.com)
|
||||||
- [Feedbin](https://feedbin.com)
|
- [Feedbin](https://feedbin.com)
|
||||||
- [Instapaper](https://instapaper.com)
|
- [Matter](https://getmatter.com)
|
||||||
- [forwardemail.net](https://forwardemail.net)
|
- [forwardemail.net](https://forwardemail.net)
|
||||||
- [1Password](https://1password.com)
|
- [1Password](https://1password.com)
|
||||||
- [Spotify](https://spotify.com)
|
- [Spotify](https://spotify.com)
|
||||||
|
|
Reference in a new issue