1
0
Fork 0
peertube/server/helpers/custom-validators/webfinger.ts

22 lines
652 B
TypeScript
Raw Normal View History

import { REMOTE_SCHEME, WEBSERVER } from '../../initializers/constants'
import { sanitizeHost } from '../core-utils'
2017-11-14 16:31:26 +00:00
import { exists } from './misc'
function isWebfingerLocalResourceValid (value: string) {
2017-11-14 16:31:26 +00:00
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]
2019-04-11 09:33:44 +00:00
return sanitizeHost(host, REMOTE_SCHEME.HTTP) === WEBSERVER.HOST
2017-11-14 16:31:26 +00:00
}
// ---------------------------------------------------------------------------
export {
isWebfingerLocalResourceValid
2017-11-14 16:31:26 +00:00
}