mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
37 lines
1 KiB
TypeScript
37 lines
1 KiB
TypeScript
import { NIP05, NostrEvent, NSchema as n } from '@nostrify/nostrify';
|
|
|
|
import { getAuthor } from '@/queries.ts';
|
|
import { bech32ToPubkey } from '@/utils.ts';
|
|
import { nip05Cache } from '@/utils/nip05.ts';
|
|
import { Stickynotes } from '@soapbox/stickynotes';
|
|
|
|
/** Resolve a bech32 or NIP-05 identifier to an account. */
|
|
export async function lookupAccount(
|
|
value: string,
|
|
signal = AbortSignal.timeout(3000),
|
|
): Promise<NostrEvent | undefined> {
|
|
const pubkey = await lookupPubkey(value, signal);
|
|
|
|
if (pubkey) {
|
|
return getAuthor(pubkey);
|
|
}
|
|
}
|
|
|
|
/** Resolve a bech32 or NIP-05 identifier to a pubkey. */
|
|
export async function lookupPubkey(value: string, signal?: AbortSignal): Promise<string | undefined> {
|
|
const console = new Stickynotes('ditto:lookup');
|
|
|
|
if (n.bech32().safeParse(value).success) {
|
|
return bech32ToPubkey(value);
|
|
}
|
|
|
|
if (NIP05.regex().test(value)) {
|
|
try {
|
|
const { pubkey } = await nip05Cache.fetch(value, { signal });
|
|
return pubkey;
|
|
} catch (e) {
|
|
console.debug(e);
|
|
return;
|
|
}
|
|
}
|
|
}
|