PeerTube/server/helpers/custom-validators/webfinger.ts

22 lines
636 B
TypeScript
Raw Normal View History

import { CONFIG, REMOTE_SCHEME } from '../../initializers'
import { sanitizeHost } from '../core-utils'
2017-11-14 17:31:26 +01:00
import { exists } from './misc'
function isWebfingerResourceValid (value: string) {
if (!exists(value)) return false
if (value.startsWith('acct:') === false) return false
2017-12-14 17:38:41 +01:00
const actorWithHost = value.substr(5)
const actorParts = actorWithHost.split('@')
if (actorParts.length !== 2) return false
2017-11-14 17:31:26 +01:00
2017-12-14 17:38:41 +01:00
const host = actorParts[1]
2017-12-21 10:16:20 +01:00
return sanitizeHost(host, REMOTE_SCHEME.HTTP) === CONFIG.WEBSERVER.HOST
2017-11-14 17:31:26 +01:00
}
// ---------------------------------------------------------------------------
export {
isWebfingerResourceValid
}