2017-11-09 17:51:58 +01:00
|
|
|
import * as WebFinger from 'webfinger.js'
|
2017-11-20 10:24:29 +01:00
|
|
|
import { WebFingerData } from '../../shared'
|
2017-12-14 17:38:41 +01:00
|
|
|
import { ActorModel } from '../models/activitypub/actor'
|
2017-11-09 17:51:58 +01:00
|
|
|
import { isTestInstance } from './core-utils'
|
2017-12-28 11:16:08 +01:00
|
|
|
import { isActivityPubUrlValid } from './custom-validators/activitypub/misc'
|
2019-04-11 11:33:44 +02:00
|
|
|
import { WEBSERVER } from '../initializers/constants'
|
2020-06-18 10:45:25 +02:00
|
|
|
import { MActorFull } from '../types/models'
|
2017-11-09 17:51:58 +01:00
|
|
|
|
|
|
|
const webfinger = new WebFinger({
|
|
|
|
webfist_fallback: false,
|
|
|
|
tls_only: isTestInstance(),
|
|
|
|
uri_fallback: false,
|
|
|
|
request_timeout: 3000
|
|
|
|
})
|
|
|
|
|
2018-09-17 10:12:30 +02:00
|
|
|
async function loadActorUrlOrGetFromWebfinger (uriArg: string) {
|
|
|
|
// Handle strings like @toto@example.com
|
|
|
|
const uri = uriArg.startsWith('@') ? uriArg.slice(1) : uriArg
|
|
|
|
|
2018-08-16 15:25:20 +02:00
|
|
|
const [ name, host ] = uri.split('@')
|
2019-08-15 11:53:26 +02:00
|
|
|
let actor: MActorFull
|
2018-08-24 11:04:02 +02:00
|
|
|
|
2019-05-28 10:04:07 +02:00
|
|
|
if (!host || host === WEBSERVER.HOST) {
|
2018-08-24 11:04:02 +02:00
|
|
|
actor = await ActorModel.loadLocalByName(name)
|
|
|
|
} else {
|
|
|
|
actor = await ActorModel.loadByNameAndHost(name, host)
|
|
|
|
}
|
2018-08-16 15:25:20 +02:00
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
if (actor) return actor.url
|
2017-11-09 17:51:58 +01:00
|
|
|
|
2018-08-16 15:25:20 +02:00
|
|
|
return getUrlFromWebfinger(uri)
|
2018-01-04 14:04:02 +01:00
|
|
|
}
|
|
|
|
|
2018-08-16 15:25:20 +02:00
|
|
|
async function getUrlFromWebfinger (uri: string) {
|
|
|
|
const webfingerData: WebFingerData = await webfingerLookup(uri)
|
2017-12-14 17:38:41 +01:00
|
|
|
return getLinkOrThrow(webfingerData)
|
2017-11-09 17:51:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-01-04 14:04:02 +01:00
|
|
|
getUrlFromWebfinger,
|
2017-12-14 17:38:41 +01:00
|
|
|
loadActorUrlOrGetFromWebfinger
|
2017-11-09 17:51:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
function getLinkOrThrow (webfingerData: WebFingerData) {
|
|
|
|
if (Array.isArray(webfingerData.links) === false) throw new Error('WebFinger links is not an array.')
|
|
|
|
|
|
|
|
const selfLink = webfingerData.links.find(l => l.rel === 'self')
|
|
|
|
if (selfLink === undefined || isActivityPubUrlValid(selfLink.href) === false) {
|
|
|
|
throw new Error('Cannot find self link or href is not a valid URL.')
|
|
|
|
}
|
|
|
|
|
|
|
|
return selfLink.href
|
|
|
|
}
|
|
|
|
|
2017-11-14 17:31:26 +01:00
|
|
|
function webfingerLookup (nameWithHost: string) {
|
2017-11-09 17:51:58 +01:00
|
|
|
return new Promise<WebFingerData>((res, rej) => {
|
2017-11-14 17:31:26 +01:00
|
|
|
webfinger.lookup(nameWithHost, (err, p) => {
|
2017-11-09 17:51:58 +01:00
|
|
|
if (err) return rej(err)
|
|
|
|
|
2017-11-14 17:31:26 +01:00
|
|
|
return res(p.object)
|
2017-11-09 17:51:58 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|