mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Cache resolved split domain mentions
This commit is contained in:
parent
fb091488d8
commit
1d543b5bf8
1 changed files with 3 additions and 1 deletions
|
@ -8,8 +8,10 @@ import { toPuny } from "@/misc/convert-host.js";
|
|||
import webFinger from "./webfinger.js";
|
||||
import { createPerson, updatePerson } from "./activitypub/models/person.js";
|
||||
import { remoteLogger } from "./logger.js";
|
||||
import { Cache } from "@/misc/cache.js";
|
||||
|
||||
const logger = remoteLogger.createSubLogger("resolve-user");
|
||||
const uriHostCache = new Cache<string>("resolveUserUriHost", 60 * 60 * 24);
|
||||
|
||||
export async function resolveUser(
|
||||
username: string,
|
||||
|
@ -200,7 +202,7 @@ export async function getSubjectHostFromUriAndUsernameCached(uri: string, userna
|
|||
return user.host;
|
||||
}
|
||||
|
||||
return await getSubjectHostFromUri(uri) ?? hostname;
|
||||
return await uriHostCache.fetch(uri, async () => await getSubjectHostFromUri(uri) ?? hostname);
|
||||
}
|
||||
|
||||
export async function getSubjectHostFromAcct(acct: string): Promise<string | null> {
|
||||
|
|
Loading…
Add table
Reference in a new issue