0a0aa0e2db
* Fix #4484 * import order
21 lines
594 B
TypeScript
21 lines
594 B
TypeScript
import config from '../config';
|
|
import { toUnicode, toASCII } from 'punycode';
|
|
|
|
export function getFullApAccount(username: string, host: string) {
|
|
return host ? `${username}@${toApHost(host)}` : `${username}@${toApHost(config.host)}`;
|
|
}
|
|
|
|
export function isSelfHost(host: string) {
|
|
if (host == null) return true;
|
|
return toApHost(config.host) === toApHost(host);
|
|
}
|
|
|
|
export function toDbHost(host: string) {
|
|
if (host == null) return null;
|
|
return toUnicode(host.toLowerCase());
|
|
}
|
|
|
|
export function toApHost(host: string) {
|
|
if (host == null) return null;
|
|
return toASCII(host.toLowerCase());
|
|
}
|