PeerTube/server/helpers/custom-validators/webfinger.ts

22 lines
553 B
TypeScript
Raw Normal View History

2017-12-12 17:53:50 +01:00
import { CONFIG } from '../../initializers'
2017-11-14 17:31:26 +01:00
import { exists } from './misc'
function isWebfingerResourceValid (value: string) {
if (!exists(value)) return false
if (value.startsWith('acct:') === false) return false
const accountWithHost = value.substr(5)
const accountParts = accountWithHost.split('@')
if (accountParts.length !== 2) return false
const host = accountParts[1]
2017-12-12 17:53:50 +01:00
return host === CONFIG.WEBSERVER.HOST
2017-11-14 17:31:26 +01:00
}
// ---------------------------------------------------------------------------
export {
isWebfingerResourceValid
}