diff --git a/.eleventy.js b/.eleventy.js index 21ca6ef7..10099f02 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -8,6 +8,7 @@ const markdownItFootnote = require('markdown-it-footnote') const filters = require('./config/filters.js') const dateFilters = require('./config/dateFilters.js') const mediaFilters = require('./config/mediaFilters.js') +const activityPubPlugin = require('eleventy-plugin-activity-pub') const now = String(Date.now()) // load .env @@ -19,6 +20,16 @@ module.exports = function (eleventyConfig) { eleventyConfig.addPlugin(heroIcons) eleventyConfig.addPlugin(pluginUnfurl) eleventyConfig.addPlugin(pluginFilesMinifier) + eleventyConfig.addPlugin(activityPubPlugin, { + username: 'hi', + domain: 'coryd.dev', + outbox: true, + outboxCollection: 'posts', + alias: { + username: 'cory', + domain: 'social.lol', + }, + }) // tailwind watches eleventyConfig.addWatchTarget('./tailwind.config.js') diff --git a/package.json b/package.json index b528db8b..4daef721 100644 --- a/package.json +++ b/package.json @@ -42,6 +42,7 @@ "@typescript-eslint/parser": "^5.59.2", "autoprefixer": "^10.4.2", "dotenv-flow": "^3.2.0", + "eleventy-plugin-activity-pub": "^0.1.1", "eleventy-plugin-unfurl": "^1.0.0", "eslint-plugin-jsx-a11y": "^6.7.1", "husky": "^8.0.3", diff --git a/src/feeds/webfinger.liquid b/src/feeds/webfinger.liquid deleted file mode 100644 index 3e73c4a4..00000000 --- a/src/feeds/webfinger.liquid +++ /dev/null @@ -1,35 +0,0 @@ ---- -permalink: '.well-known/webfinger.json' -eleventyExcludeFromCollections: true -dynamicPermalink: false ---- -{ - "subject": "acct:coryd@social.lol", - "aliases": ["https://coryd.dev", "https://social.lol/@coryd", "https://social.lol/users/coryd"], - "links": [ - { - "rel": "http://webfinger.net/rel/avatar", - "type": "image/webp", - "href": "https://coryd.dev/static/images/avatar.webp" - }, - { - "rel": "http://webfinger.net/rel/profile-page", - "type": "text/html", - "href": "https://coryd.dev" - }, - { - "rel": "http://webfinger.net/rel/profile-page", - "type": "text/html", - "href": "https://social.lol/users/coryd" - }, - { - "rel": "self", - "type": "application/activity+json", - "href": "https://social.lol/users/coryd" - }, - { - "rel": "http://ostatus.org/schema/1.0/subscribe", - "template": "social.lol/authorize_interaction?uri={uri}" - } - ] -} \ No newline at end of file diff --git a/vercel.json b/vercel.json index 1b15abfe..cc797e92 100644 --- a/vercel.json +++ b/vercel.json @@ -28,12 +28,24 @@ "value": "nosniff" } ] - } - ], - "rewrites": [ + }, { "source": "/.well-known/webfinger", - "destination": "/.well-known/webfinger.json" + "headers": [ + { + "key": "Content-Type", + "value": "application/jrd+json; charset=utf-8" + } + ] + }, + { + "source": "/hi", + "headers": [ + { + "key": "Content-Type", + "value": "application/activity+json; charset=utf-8" + } + ] } ], "redirects": [ diff --git a/yarn.lock b/yarn.lock index 73a5ee98..1bd21ce6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1865,6 +1865,13 @@ electron-to-chromium@^1.4.284: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.373.tgz#58eb1c180e56550fdbf8cd6e4f04a84abd414bb9" integrity sha512-whGyixOVSRlyOBQDsRH9xltFaMij2/+DQRdaYahCq0P/fiVnAVGaW7OVsFnEjze/qUo298ez9C46gnALpo6ukg== +eleventy-plugin-activity-pub@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/eleventy-plugin-activity-pub/-/eleventy-plugin-activity-pub-0.1.1.tgz#1e23e71a3502154d599c3e1bb2dccf16c3838236" + integrity sha512-9U4gEKi5mlk4J73NF6i33Qyp5+GKm20A9D6ExwuJnQP7nalbFpSblpTsdebU6/vDJeC82fsP/Klt2jNPFPsLew== + dependencies: + node-fetch "^2.6.7" + eleventy-plugin-heroicons@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/eleventy-plugin-heroicons/-/eleventy-plugin-heroicons-1.1.0.tgz#5799b37251269e9d3b46c27185f724d319f4b28b"