mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 22:49:28 -07:00
feat: use nodeinfo for fediverse instance info
This commit is contained in:
parent
cb841fe9b7
commit
8ea07938e4
1 changed files with 124 additions and 0 deletions
|
@ -94,10 +94,134 @@ export const functions = {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Attempt to fetch and process the instance's NodeInfo data
|
||||||
|
const nodeinfo = await _processNodeinfo(new URL(proofData.result.url).hostname)
|
||||||
|
if (nodeinfo) {
|
||||||
|
claimData.about.name = nodeinfo.software.name
|
||||||
|
claimData.about.id = nodeinfo.software.name
|
||||||
|
claimData.about.homepage = nodeinfo.software.homepage
|
||||||
|
}
|
||||||
|
|
||||||
return { claimData, proofData }
|
return { claimData, proofData }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const _processNodeinfo = async (/** @type {string} */ domain) => {
|
||||||
|
const nodeinfoRef = await fetch(`http://${domain}/.well-known/nodeinfo`)
|
||||||
|
.then(res => {
|
||||||
|
if (res.status !== 200) {
|
||||||
|
throw new Error('HTTP Status was not 200')
|
||||||
|
}
|
||||||
|
return res.json()
|
||||||
|
})
|
||||||
|
.catch(_ => {
|
||||||
|
return null
|
||||||
|
})
|
||||||
|
|
||||||
|
if (!nodeinfoRef) return null
|
||||||
|
|
||||||
|
// NodeInfo version 2.1
|
||||||
|
{
|
||||||
|
const nodeinfo = nodeinfoRef.links.find(x => { return x.rel === 'http://nodeinfo.diaspora.software/ns/schema/2.1' })
|
||||||
|
if (nodeinfo) {
|
||||||
|
return await fetch(nodeinfo.href)
|
||||||
|
.then(res => {
|
||||||
|
if (res.status !== 200) {
|
||||||
|
throw new Error('HTTP Status was not 200')
|
||||||
|
}
|
||||||
|
return res.json()
|
||||||
|
})
|
||||||
|
.then(res => {
|
||||||
|
return {
|
||||||
|
software: {
|
||||||
|
name: res.software.name,
|
||||||
|
version: res.software.version,
|
||||||
|
homepage: res.software.homepage || 'https://activitypub.rocks'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(_ => {
|
||||||
|
return null
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// NodeInfo version 2.0
|
||||||
|
{
|
||||||
|
const nodeinfo = nodeinfoRef.links.find(x => { return x.rel === 'http://nodeinfo.diaspora.software/ns/schema/2.0' })
|
||||||
|
if (nodeinfo) {
|
||||||
|
return await fetch(nodeinfo.href)
|
||||||
|
.then(res => {
|
||||||
|
if (res.status !== 200) {
|
||||||
|
throw new Error('HTTP Status was not 200')
|
||||||
|
}
|
||||||
|
return res.json()
|
||||||
|
})
|
||||||
|
.then(res => {
|
||||||
|
return {
|
||||||
|
software: {
|
||||||
|
name: res.software.name,
|
||||||
|
version: res.software.version,
|
||||||
|
homepage: 'https://activitypub.rocks'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(_ => {
|
||||||
|
return null
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// NodeInfo version 1.1
|
||||||
|
{
|
||||||
|
const nodeinfo = nodeinfoRef.links.find(x => { return x.rel === 'http://nodeinfo.diaspora.software/ns/schema/1.1' })
|
||||||
|
if (nodeinfo) {
|
||||||
|
return await fetch(nodeinfo.href)
|
||||||
|
.then(res => {
|
||||||
|
if (res.status !== 200) {
|
||||||
|
throw new Error('HTTP Status was not 200')
|
||||||
|
}
|
||||||
|
return res.json()
|
||||||
|
})
|
||||||
|
.then(res => {
|
||||||
|
return {
|
||||||
|
software: {
|
||||||
|
name: res.software.name,
|
||||||
|
version: res.software.version,
|
||||||
|
homepage: 'https://activitypub.rocks'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(_ => {
|
||||||
|
return null
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// NodeInfo version 1.0
|
||||||
|
{
|
||||||
|
const nodeinfo = nodeinfoRef.links.find(x => { return x.rel === 'http://nodeinfo.diaspora.software/ns/schema/1.0' })
|
||||||
|
if (nodeinfo) {
|
||||||
|
return await fetch(nodeinfo.href)
|
||||||
|
.then(res => {
|
||||||
|
if (res.status !== 200) {
|
||||||
|
throw new Error('HTTP Status was not 200')
|
||||||
|
}
|
||||||
|
return res.json()
|
||||||
|
})
|
||||||
|
.then(res => {
|
||||||
|
return {
|
||||||
|
software: {
|
||||||
|
name: res.software.name,
|
||||||
|
version: res.software.version,
|
||||||
|
homepage: 'https://activitypub.rocks'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(_ => {
|
||||||
|
return null
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export const tests = [
|
export const tests = [
|
||||||
{
|
{
|
||||||
uri: 'https://domain.org',
|
uri: 'https://domain.org',
|
||||||
|
|
Loading…
Reference in a new issue