feat: activity pub plugin

This commit is contained in:
Cory Dransfeldt 2023-05-09 11:50:01 -07:00
parent b3ab989aad
commit 54475a70ea
No known key found for this signature in database
5 changed files with 35 additions and 39 deletions

View file

@ -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')

View file

@ -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",

View file

@ -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}"
}
]
}

View file

@ -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": [

View file

@ -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"