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