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

23 lines
641 B
TypeScript
Raw Normal View History

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