summaryrefslogtreecommitdiff
path: root/src/misc/convert-host.ts
blob: dbf78645503604855691ac1e830477983894c730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import config from '../config';
import { toASCII } from 'punycode';
import { URL } from 'url';

export function getFullApAccount(username: string, host: string | null) {
	return host ? `${username}@${toPuny(host)}` : `${username}@${toPuny(config.host)}`;
}

export function isSelfHost(host: string) {
	if (host == null) return true;
	return toPuny(config.host) === toPuny(host);
}

export function extractDbHost(uri: string) {
	const url = new URL(uri);
	return toPuny(url.hostname);
}

export function toPuny(host: string) {
	return toASCII(host.toLowerCase());
}