2017-11-09 11:51:58 -05:00
|
|
|
import * as WebFinger from 'webfinger.js'
|
2017-11-20 04:24:29 -05:00
|
|
|
import { WebFingerData } from '../../shared'
|
2017-12-14 11:38:41 -05:00
|
|
|
import { ActorModel } from '../models/activitypub/actor'
|
2017-11-09 11:51:58 -05:00
|
|
|
import { isTestInstance } from './core-utils'
|
2017-12-28 05:16:08 -05:00
|
|
|
import { isActivityPubUrlValid } from './custom-validators/activitypub/misc'
|
2019-04-11 05:33:44 -04:00
|
|
|
import { WEBSERVER } from '../initializers/constants'
|
2017-11-09 11:51:58 -05:00
|
|
|
|
|
|
|
const webfinger = new WebFinger({
|
|
|
|
webfist_fallback: false,
|
|
|
|
tls_only: isTestInstance(),
|
|
|
|
uri_fallback: false,
|
|
|
|
request_timeout: 3000
|
|
|
|
})
|
|
|
|
|
2018-09-17 04:12:30 -04:00
|
|
|
async function loadActorUrlOrGetFromWebfinger (uriArg: string) {
|
|
|
|
// Handle strings like @toto@example.com
|
|
|
|
const uri = uriArg.startsWith('@') ? uriArg.slice(1) : uriArg
|
|
|
|
|
2018-08-16 09:25:20 -04:00
|
|
|
const [ name, host ] = uri.split('@')
|
2018-08-24 05:04:02 -04:00
|
|
|
let actor: ActorModel
|
|
|
|
|
2019-05-28 04:04:07 -04:00
|
|
|
if (!host || host === WEBSERVER.HOST) {
|
2018-08-24 05:04:02 -04:00
|
|
|
actor = await ActorModel.loadLocalByName(name)
|
|
|
|
} else {
|
|
|
|
actor = await ActorModel.loadByNameAndHost(name, host)
|
|
|
|
}
|
2018-08-16 09:25:20 -04:00
|
|
|
|
2017-12-14 11:38:41 -05:00
|
|
|
if (actor) return actor.url
|
2017-11-09 11:51:58 -05:00
|
|
|
|
2018-08-16 09:25:20 -04:00
|
|
|
return getUrlFromWebfinger(uri)
|
2018-01-04 08:04:02 -05:00
|
|
|
}
|
|
|
|
|
2018-08-16 09:25:20 -04:00
|
|
|
async function getUrlFromWebfinger (uri: string) {
|
|
|
|
const webfingerData: WebFingerData = await webfingerLookup(uri)
|
2017-12-14 11:38:41 -05:00
|
|
|
return getLinkOrThrow(webfingerData)
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-01-04 08:04:02 -05:00
|
|
|
getUrlFromWebfinger,
|
2017-12-14 11:38:41 -05:00
|
|
|
loadActorUrlOrGetFromWebfinger
|
2017-11-09 11:51:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-12-14 11:38:41 -05: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 11:31:26 -05:00
|
|
|
function webfingerLookup (nameWithHost: string) {
|
2017-11-09 11:51:58 -05:00
|
|
|
return new Promise<WebFingerData>((res, rej) => {
|
2017-11-14 11:31:26 -05:00
|
|
|
webfinger.lookup(nameWithHost, (err, p) => {
|
2017-11-09 11:51:58 -05:00
|
|
|
if (err) return rej(err)
|
|
|
|
|
2017-11-14 11:31:26 -05:00
|
|
|
return res(p.object)
|
2017-11-09 11:51:58 -05:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|