From d6cd60fe6e817f4adfa44058c3bd493fc486dcb8 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Fri, 7 Mar 2025 15:53:38 +0100 Subject: [PATCH 1/2] Fix nodeinfo query on split-domain instances --- src/utils/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/api.js b/src/utils/api.js index e9c08afc..ea4c7fd1 100644 --- a/src/utils/api.js +++ b/src/utils/api.js @@ -119,7 +119,7 @@ export async function initInstance(client, instance) { typeof link.rel === 'string' && link.rel.startsWith('http://nodeinfo.diaspora.software/ns/schema/'), )?.href; - if (nodeInfoUrl && nodeInfoUrl.startsWith(urlBase)) { + if (nodeInfoUrl) { nodeInfo = await (await fetch(nodeInfoUrl)).json(); } } From 90dff99608fd86c4b47c9123a5822305ce7de1c5 Mon Sep 17 00:00:00 2001 From: Victoria Brekenfeld Date: Fri, 7 Mar 2025 16:20:07 +0100 Subject: [PATCH 2/2] Fix nodeinfo query just using the first entry --- src/utils/api.js | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/src/utils/api.js b/src/utils/api.js index ea4c7fd1..3171c309 100644 --- a/src/utils/api.js +++ b/src/utils/api.js @@ -1,3 +1,4 @@ +import { compareVersions, satisfies, validate } from 'compare-versions'; import { createRestAPIClient, createStreamingAPIClient } from 'masto'; import store from './store'; @@ -114,11 +115,23 @@ export async function initInstance(client, instance) { await fetch(`${urlBase}/.well-known/nodeinfo`) ).json(); if (Array.isArray(wellKnown?.links)) { - const nodeInfoUrl = wellKnown.links.find( - (link) => - typeof link.rel === 'string' && - link.rel.startsWith('http://nodeinfo.diaspora.software/ns/schema/'), - )?.href; + const schema = 'http://nodeinfo.diaspora.software/ns/schema/'; + const nodeInfoUrl = wellKnown.links + .filter( + (link) => + typeof link.rel === 'string' && + link.rel.startsWith(schema) && + validate(link.rel.slice(schema.length)), + ) + .map((link) => { + let version = link.rel.slice(schema.length); + return { + version, + href: link.href, + }; + }) + .sort((a, b) => -compareVersions(a.version, b.version)) + .find((x) => satisfies(x.version, '<=2'))?.href; if (nodeInfoUrl) { nodeInfo = await (await fetch(nodeInfoUrl)).json(); }