2017-12-12 10:53:50 -06:00
|
|
|
import { CONFIG } from '../../initializers'
|
2017-11-14 10:31:26 -06:00
|
|
|
import { exists } from './misc'
|
|
|
|
|
|
|
|
function isWebfingerResourceValid (value: string) {
|
|
|
|
if (!exists(value)) return false
|
|
|
|
if (value.startsWith('acct:') === false) return false
|
|
|
|
|
2017-12-14 10:38:41 -06:00
|
|
|
const actorWithHost = value.substr(5)
|
|
|
|
const actorParts = actorWithHost.split('@')
|
|
|
|
if (actorParts.length !== 2) return false
|
2017-11-14 10:31:26 -06:00
|
|
|
|
2017-12-14 10:38:41 -06:00
|
|
|
const host = actorParts[1]
|
2017-11-14 10:31:26 -06:00
|
|
|
|
2017-12-19 07:26:32 -06:00
|
|
|
return host === CONFIG.WEBSERVER.HOSTNAME || host === CONFIG.WEBSERVER.HOST
|
2017-11-14 10:31:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
|
|
|
isWebfingerResourceValid
|
|
|
|
}
|