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