2019-03-12 09:38:11 -05:00
|
|
|
import config from '../config';
|
2019-04-09 09:59:32 -05:00
|
|
|
import { toASCII } from 'punycode';
|
2019-03-12 09:38:11 -05:00
|
|
|
|
2019-04-12 11:43:22 -05:00
|
|
|
export function getFullApAccount(username: string, host: string | null) {
|
2019-04-09 09:59:32 -05:00
|
|
|
return host ? `${username}@${toPuny(host)}` : `${username}@${toPuny(config.host)}`;
|
2019-03-12 09:38:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export function isSelfHost(host: string) {
|
|
|
|
if (host == null) return true;
|
2019-04-09 09:59:32 -05:00
|
|
|
return toPuny(config.host) === toPuny(host);
|
2019-03-12 09:38:11 -05:00
|
|
|
}
|
|
|
|
|
2019-03-12 21:21:16 -05:00
|
|
|
export function extractDbHost(uri: string) {
|
|
|
|
const url = new URL(uri);
|
2019-04-09 09:59:32 -05:00
|
|
|
return toPuny(url.hostname);
|
2019-03-12 21:21:16 -05:00
|
|
|
}
|
|
|
|
|
2019-04-09 09:59:32 -05:00
|
|
|
export function toPuny(host: string) {
|
2019-03-12 09:38:11 -05:00
|
|
|
return toASCII(host.toLowerCase());
|
|
|
|
}
|
2019-04-13 02:54:21 -05:00
|
|
|
|
|
|
|
export function toPunyNullable(host: string | null | undefined): string | null {
|
|
|
|
if (host == null) return null;
|
|
|
|
return toASCII(host.toLowerCase());
|
|
|
|
}
|