2019-04-11 14:26:41 +02:00
|
|
|
import { REMOTE_SCHEME, WEBSERVER } from '../../initializers/constants'
|
2017-12-21 09:56:59 +01:00
|
|
|
import { sanitizeHost } from '../core-utils'
|
2017-11-14 17:31:26 +01:00
|
|
|
import { exists } from './misc'
|
|
|
|
|
2018-08-16 15:25:20 +02:00
|
|
|
function isWebfingerLocalResourceValid (value: string) {
|
2017-11-14 17:31:26 +01:00
|
|
|
if (!exists(value)) return false
|
|
|
|
if (value.startsWith('acct:') === false) return false
|
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
const actorWithHost = value.substr(5)
|
|
|
|
const actorParts = actorWithHost.split('@')
|
|
|
|
if (actorParts.length !== 2) return false
|
2017-11-14 17:31:26 +01:00
|
|
|
|
2017-12-14 17:38:41 +01:00
|
|
|
const host = actorParts[1]
|
2019-04-11 11:33:44 +02:00
|
|
|
return sanitizeHost(host, REMOTE_SCHEME.HTTP) === WEBSERVER.HOST
|
2017-11-14 17:31:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export {
|
2018-08-16 15:25:20 +02:00
|
|
|
isWebfingerLocalResourceValid
|
2017-11-14 17:31:26 +01:00
|
|
|
}
|