chore: move webfinger to cms

This commit is contained in:
Cory Dransfeldt 2024-10-13 11:59:35 -07:00
parent c23ef6bd0d
commit 84cdf1c44a
No known key found for this signature in database
2 changed files with 9 additions and 7 deletions

View file

@ -4,30 +4,30 @@ layout: null
eleventyExcludeFromCollections: true eleventyExcludeFromCollections: true
--- ---
{ {
"subject":"acct:cory@follow.coryd.dev", "subject":"acct:{{ globals.webfinger_username }}@{{ globals.webfinger_hostname }}",
"aliases":[ "aliases":[
"https://follow.coryd.dev/@cory", "https://{{ globals.webfinger_hostname }}/@{{ globals.webfinger_username }}",
"https://follow.coryd.dev/users/cory" "https://{{ globals.webfinger_hostname }}/users/{{ globals.webfinger_username }}"
], ],
"links":[ "links":[
{ {
"rel":"http://webfinger.net/rel/profile-page", "rel":"http://webfinger.net/rel/profile-page",
"type":"text/html", "type":"text/html",
"href":"https://follow.coryd.dev/@cory" "href":"https://{{ globals.webfinger_hostname }}/@{{ globals.webfinger_username }}"
}, },
{ {
"rel":"self", "rel":"self",
"type":"application/activity+json", "type":"application/activity+json",
"href":"https://follow.coryd.dev/users/cory" "href":"https://{{ globals.webfinger_hostname }}/users/{{ globals.webfinger_username }}"
}, },
{ {
"rel":"http://ostatus.org/schema/1.0/subscribe", "rel":"http://ostatus.org/schema/1.0/subscribe",
"template":"https://follow.coryd.dev/authorize_interaction?uri={uri}" "template":"https://{{ globals.webfinger_hostname }}/authorize_interaction?uri={uri}"
}, },
{ {
"rel":"http://webfinger.net/rel/avatar", "rel":"http://webfinger.net/rel/avatar",
"type":"image/png", "type":"image/png",
"href":"{{ globals.cdn_url }}/f7516bb2-d914-479f-91c6-1bf96f3968bf.png?class=squarebase" "href":"{{ globals.cdn_url }}{{ globals.avatar }}?class=squarebase"
} }
] ]
} }

View file

@ -12,6 +12,8 @@ SELECT
g.site_type, g.site_type,
g.locale, g.locale,
g.lang, g.lang,
g.webfinger_username,
g.webfinger_hostname,
CONCAT('/', df.filename_disk) AS avatar, CONCAT('/', df.filename_disk) AS avatar,
CONCAT('/', df2.filename_disk) AS avatar_transparent CONCAT('/', df2.filename_disk) AS avatar_transparent
FROM FROM