diff --git a/.github/workflows/manual-post.yaml b/.github/workflows/manual-post.yaml new file mode 100644 index 00000000..7682cb00 --- /dev/null +++ b/.github/workflows/manual-post.yaml @@ -0,0 +1,19 @@ +name: Manual follow feed to Mastodon +on: [workflow_dispatch] +jobs: + JSONFeed2Mastodon: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Feed to Mastodon + uses: nhoizey/github-action-feed-to-mastodon@v2 + with: + feedUrl: "https://coryd.dev/follow.json" + mastodonInstance: "https://social.lol" + mastodonToken: ${{ secrets.MASTODON_TOKEN }} + testMode: true + - name: Pull any changes from Git + run: git pull + - name: Commit and push + uses: stefanzweifel/git-auto-commit-action@v4 \ No newline at end of file diff --git a/.github/workflows/scheduled-post.yaml b/.github/workflows/scheduled-post.yaml new file mode 100644 index 00000000..ba341a22 --- /dev/null +++ b/.github/workflows/scheduled-post.yaml @@ -0,0 +1,21 @@ +name: Scheduled follow feed to Mastodon +on: + schedule: + - cron: '0 * * * *' +jobs: + JSONFeed2Mastodon: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Feed to Mastodon + uses: nhoizey/github-action-feed-to-mastodon@v2 + with: + feedUrl: "https://coryd.dev/follow.json" + mastodonInstance: "https://social.lol" + mastodonToken: ${{ secrets.MASTODON_TOKEN }} + testMode: true + - name: Pull any changes from Git + run: git pull + - name: Commit and push + uses: stefanzweifel/git-auto-commit-action@v4 \ No newline at end of file diff --git a/src/_data/follow.js b/src/_data/follow.js new file mode 100644 index 00000000..09a230dc --- /dev/null +++ b/src/_data/follow.js @@ -0,0 +1,13 @@ +module.exports = async function () { + const { ActivityFeed } = await import('@11ty/eleventy-activity-feed') + const feed = new ActivityFeed() + feed.addSource('atom', 'Blog', 'https://coryd.dev/feed.xml') + feed.addSource('rss', 'Letterboxd', 'https://letterboxd.com/cdme/rss') + feed.addSource('rss', 'Glass', 'https://glass.photo/coryd/rss') + feed.addSource('rss', 'Oku', 'https://oku.club/rss/collection/NvEmF') + const entries = feed.getEntries() + const res = await entries + const activity = { posts: [] } + res.forEach((entry) => activity.posts.push({ title: entry.title, url: entry.url })) + return activity +} diff --git a/src/follow.11ty.liquid b/src/follow.11ty.liquid new file mode 100644 index 00000000..1bdf9459 --- /dev/null +++ b/src/follow.11ty.liquid @@ -0,0 +1,14 @@ +--- +permalink: '/follow.json' +--- +{% assign posts = follow.posts %} +{ +"posts": [ +{% for item in posts %} + { + "title": "{{ item.data.title }}", + "url": "{{ item.url }}" + }{% if not loop.last %},{% endif %} +{% endfor %} +] +} \ No newline at end of file