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