egirlskey/src/misc/convert-host.ts

22 lines
565 B
TypeScript
Raw Normal View History

import config from '../config';
import { toASCII } from 'punycode';
2019-03-13 02:21:16 +00:00
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);
}
2019-03-13 02:21:16 +00:00
export function extractDbHost(uri: string) {
const url = new URL(uri);
return toPuny(url.hostname);
2019-03-13 02:21:16 +00:00
}
export function toPuny(host: string) {
return toASCII(host.toLowerCase());
}