1
0
Fork 0
mirror of https://github.com/cheeaun/phanpy.git synced 2025-05-03 05:33:06 +03:00

Shrink the size of the feature detection change

This commit is contained in:
Scott Feeney 2024-09-20 00:13:02 -07:00
parent 839023cefc
commit ad0ab0c845
5 changed files with 57 additions and 76 deletions
src/utils

View file

@ -89,29 +89,26 @@ export async function initInstance(client, instance) {
configuration: { urls: { streaming } = {} } = {},
} = info;
let nodeInfo;
// GoToSocial requires we get the NodeInfo to identify server type
// spec: https://github.com/jhass/nodeinfo
try {
if (uri || domain) {
let urlBase = uri || `https://${domain}`;
const wellKnownResponse = await fetch(`${urlBase}/.well-known/nodeinfo`);
if (wellKnownResponse.ok) {
const wellKnown = await wellKnownResponse.json();
if (wellKnown && Array.isArray(wellKnown.links)) {
const nodeInfoUrl = wellKnown.links.find(
(link) => typeof link.rel === 'string' &&
link.rel.startsWith('http://nodeinfo.diaspora.software/ns/schema/')
)?.href;
if (nodeInfoUrl && nodeInfoUrl.startsWith(urlBase)) {
const nodeInfoResponse = await fetch(nodeInfoUrl);
nodeInfo = await nodeInfoResponse.json();
const wellKnown = await (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;
if (nodeInfoUrl && nodeInfoUrl.startsWith(urlBase)) {
const nodeInfo = await (await fetch(nodeInfoUrl)).json();
if (typeof nodeInfo?.software?.name === 'string') {
info.software_name = nodeInfo.software.name;
}
}
}
}
} catch (e) {}
if (nodeInfo) {
info.nodeInfo = nodeInfo;
}
console.log(info);
const instances = store.local.getJSON('instances') || {};