You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
413 lines
12 KiB
413 lines
12 KiB
import { BIG_RELAY_URLS, POLL_TYPE } from '@/constants' |
|
import { TEmoji, TPollType, TRelayList, TRelaySet } from '@/types' |
|
import { Event, kinds } from 'nostr-tools' |
|
import { buildATag } from './draft-event' |
|
import { getReplaceableEventIdentifier } from './event' |
|
import { getAmountFromInvoice, getLightningAddressFromProfile } from './lightning' |
|
import { formatPubkey, pubkeyToNpub } from './pubkey' |
|
import { generateBech32IdFromATag, generateBech32IdFromETag, tagNameEquals } from './tag' |
|
import { isWebsocketUrl, normalizeHttpUrl, normalizeUrl } from './url' |
|
import { isTorBrowser } from './utils' |
|
|
|
export function getRelayListFromEvent(event?: Event | null, blockedRelays?: string[]) { |
|
if (!event) { |
|
return { write: BIG_RELAY_URLS, read: BIG_RELAY_URLS, originalRelays: [] } |
|
} |
|
|
|
const torBrowserDetected = isTorBrowser() |
|
const relayList = { write: [], read: [], originalRelays: [] } as TRelayList |
|
|
|
// Normalize blocked relays for comparison |
|
const normalizedBlockedRelays = (blockedRelays || []).map(url => normalizeUrl(url) || url) |
|
|
|
event.tags.filter(tagNameEquals('r')).forEach(([, url, type]) => { |
|
if (!url || !isWebsocketUrl(url)) return |
|
|
|
const normalizedUrl = normalizeUrl(url) |
|
if (!normalizedUrl) return |
|
|
|
// Filter out blocked relays |
|
if (normalizedBlockedRelays.includes(normalizedUrl)) return |
|
|
|
const scope = type === 'read' ? 'read' : type === 'write' ? 'write' : 'both' |
|
relayList.originalRelays.push({ url: normalizedUrl, scope }) |
|
|
|
// Filter out .onion URLs if not using Tor browser |
|
if (normalizedUrl.endsWith('.onion/') && !torBrowserDetected) return |
|
|
|
if (type === 'write') { |
|
relayList.write.push(normalizedUrl) |
|
} else if (type === 'read') { |
|
relayList.read.push(normalizedUrl) |
|
} else { |
|
relayList.write.push(normalizedUrl) |
|
relayList.read.push(normalizedUrl) |
|
} |
|
}) |
|
|
|
// If there are too many relays, use the default BIG_RELAY_URLS |
|
// Because they don't know anything about relays, their settings cannot be trusted |
|
return { |
|
write: relayList.write.length && relayList.write.length <= 8 ? relayList.write : BIG_RELAY_URLS, |
|
read: relayList.read.length && relayList.write.length <= 8 ? relayList.read : BIG_RELAY_URLS, |
|
originalRelays: relayList.originalRelays |
|
} |
|
} |
|
|
|
export function getProfileFromEvent(event: Event) { |
|
try { |
|
const profileObj = JSON.parse(event.content) |
|
const username = |
|
profileObj.display_name?.trim() || |
|
profileObj.name?.trim() || |
|
profileObj.nip05?.split('@')[0]?.trim() |
|
return { |
|
pubkey: event.pubkey, |
|
npub: pubkeyToNpub(event.pubkey) ?? '', |
|
banner: profileObj.banner, |
|
avatar: profileObj.picture, |
|
username: username || formatPubkey(event.pubkey), |
|
original_username: username, |
|
nip05: profileObj.nip05, |
|
about: profileObj.about, |
|
website: profileObj.website ? normalizeHttpUrl(profileObj.website) : undefined, |
|
lud06: profileObj.lud06, |
|
lud16: profileObj.lud16, |
|
lightningAddress: getLightningAddressFromProfile(profileObj), |
|
created_at: event.created_at |
|
} |
|
} catch (err) { |
|
console.error(event.content, err) |
|
return { |
|
pubkey: event.pubkey, |
|
npub: pubkeyToNpub(event.pubkey) ?? '', |
|
username: formatPubkey(event.pubkey) |
|
} |
|
} |
|
} |
|
|
|
export function getRelaySetFromEvent(event: Event, blockedRelays?: string[]): TRelaySet { |
|
const id = getReplaceableEventIdentifier(event) |
|
|
|
// Normalize blocked relays for comparison |
|
const normalizedBlockedRelays = (blockedRelays || []).map(url => normalizeUrl(url) || url) |
|
|
|
const relayUrls = event.tags |
|
.filter(tagNameEquals('relay')) |
|
.map((tag) => tag[1]) |
|
.filter((url) => url && isWebsocketUrl(url)) |
|
.map((url) => normalizeUrl(url)) |
|
.filter((url) => !normalizedBlockedRelays.includes(url)) // Filter out blocked relays |
|
|
|
let name = event.tags.find(tagNameEquals('title'))?.[1] |
|
if (!name) { |
|
name = id |
|
} |
|
|
|
return { id, name, relayUrls, aTag: buildATag(event) } |
|
} |
|
|
|
export function getZapInfoFromEvent(receiptEvent: Event) { |
|
if (receiptEvent.kind !== kinds.Zap) return null |
|
|
|
let senderPubkey: string | undefined |
|
let recipientPubkey: string | undefined |
|
let originalEventId: string | undefined |
|
let eventId: string | undefined |
|
let invoice: string | undefined |
|
let amount: number | undefined |
|
let comment: string | undefined |
|
let description: string | undefined |
|
let preimage: string | undefined |
|
try { |
|
receiptEvent.tags.forEach((tag) => { |
|
const [tagName, tagValue] = tag |
|
switch (tagName) { |
|
case 'P': |
|
senderPubkey = tagValue |
|
break |
|
case 'p': |
|
recipientPubkey = tagValue |
|
break |
|
case 'e': |
|
originalEventId = tag[1] |
|
eventId = generateBech32IdFromETag(tag) |
|
break |
|
case 'a': |
|
originalEventId = tag[1] |
|
eventId = generateBech32IdFromATag(tag) |
|
break |
|
case 'bolt11': |
|
invoice = tagValue |
|
break |
|
case 'description': |
|
description = tagValue |
|
break |
|
case 'preimage': |
|
preimage = tagValue |
|
break |
|
} |
|
}) |
|
if (!recipientPubkey || !invoice) return null |
|
|
|
// Try to parse amount from invoice, fallback to description if invoice is invalid |
|
try { |
|
amount = getAmountFromInvoice(invoice) |
|
} catch { |
|
amount = 0 |
|
} |
|
|
|
if (description) { |
|
try { |
|
const zapRequest = JSON.parse(description) |
|
comment = zapRequest.content |
|
if (!senderPubkey) { |
|
senderPubkey = zapRequest.pubkey |
|
} |
|
// If invoice parsing failed, try to get amount from zap request tags |
|
if (amount === 0 && zapRequest.tags) { |
|
const amountTag = zapRequest.tags.find((tag: string[]) => tag[0] === 'amount') |
|
if (amountTag && amountTag[1]) { |
|
const millisats = parseInt(amountTag[1]) |
|
amount = millisats / 1000 // Convert millisats to sats |
|
} |
|
} |
|
} catch { |
|
// ignore |
|
} |
|
} |
|
|
|
return { |
|
senderPubkey, |
|
recipientPubkey, |
|
eventId, |
|
originalEventId, |
|
invoice, |
|
amount, |
|
comment, |
|
preimage |
|
} |
|
} catch { |
|
return null |
|
} |
|
} |
|
|
|
export function getLongFormArticleMetadataFromEvent(event: Event) { |
|
let title: string | undefined |
|
let summary: string | undefined |
|
let image: string | undefined |
|
const tags = new Set<string>() |
|
|
|
event.tags.forEach(([tagName, tagValue]) => { |
|
if (tagName === 'title') { |
|
title = tagValue |
|
} else if (tagName === 'summary') { |
|
summary = tagValue |
|
} else if (tagName === 'image') { |
|
image = tagValue |
|
} else if (tagName === 't' && tagValue && tags.size < 6) { |
|
tags.add(tagValue.toLocaleLowerCase()) |
|
} |
|
}) |
|
|
|
if (!title) { |
|
title = event.tags.find(tagNameEquals('d'))?.[1] ?? 'no title' |
|
} |
|
|
|
return { title, summary, image, tags: Array.from(tags) } |
|
} |
|
|
|
export function getLiveEventMetadataFromEvent(event: Event) { |
|
let title: string | undefined |
|
let summary: string | undefined |
|
let image: string | undefined |
|
let status: string | undefined |
|
const tags = new Set<string>() |
|
|
|
event.tags.forEach(([tagName, tagValue]) => { |
|
if (tagName === 'title') { |
|
title = tagValue |
|
} else if (tagName === 'summary') { |
|
summary = tagValue |
|
} else if (tagName === 'image') { |
|
image = tagValue |
|
} else if (tagName === 'status') { |
|
status = tagValue |
|
} else if (tagName === 't' && tagValue && tags.size < 6) { |
|
tags.add(tagValue.toLocaleLowerCase()) |
|
} |
|
}) |
|
|
|
if (!title) { |
|
title = event.tags.find(tagNameEquals('d'))?.[1] ?? 'no title' |
|
} |
|
|
|
return { title, summary, image, status, tags: Array.from(tags) } |
|
} |
|
|
|
export function getGroupMetadataFromEvent(event: Event) { |
|
let d: string | undefined |
|
let name: string | undefined |
|
let about: string | undefined |
|
let picture: string | undefined |
|
const tags = new Set<string>() |
|
|
|
event.tags.forEach(([tagName, tagValue]) => { |
|
if (tagName === 'name') { |
|
name = tagValue |
|
} else if (tagName === 'about') { |
|
about = tagValue |
|
} else if (tagName === 'picture') { |
|
picture = tagValue |
|
} else if (tagName === 't' && tagValue) { |
|
tags.add(tagValue.toLocaleLowerCase()) |
|
} else if (tagName === 'd') { |
|
d = tagValue |
|
} |
|
}) |
|
|
|
if (!name) { |
|
name = d ?? 'no name' |
|
} |
|
|
|
return { d, name, about, picture, tags: Array.from(tags) } |
|
} |
|
|
|
export function getCommunityDefinitionFromEvent(event: Event) { |
|
let name: string | undefined |
|
let description: string | undefined |
|
let image: string | undefined |
|
|
|
event.tags.forEach(([tagName, tagValue]) => { |
|
if (tagName === 'name') { |
|
name = tagValue |
|
} else if (tagName === 'description') { |
|
description = tagValue |
|
} else if (tagName === 'image') { |
|
image = tagValue |
|
} |
|
}) |
|
|
|
if (!name) { |
|
name = event.tags.find(tagNameEquals('d'))?.[1] ?? 'no name' |
|
} |
|
|
|
return { name, description, image } |
|
} |
|
|
|
export function getPollMetadataFromEvent(event: Event) { |
|
const options: { id: string; label: string }[] = [] |
|
const relayUrls: string[] = [] |
|
let pollType: TPollType = POLL_TYPE.SINGLE_CHOICE |
|
let endsAt: number | undefined |
|
|
|
for (const [tagName, ...tagValues] of event.tags) { |
|
if (tagName === 'option' && tagValues.length >= 2) { |
|
const [optionId, label] = tagValues |
|
if (optionId && label) { |
|
options.push({ id: optionId, label }) |
|
} |
|
} else if (tagName === 'relay' && tagValues[0]) { |
|
const normalizedUrl = normalizeUrl(tagValues[0]) |
|
if (normalizedUrl) relayUrls.push(tagValues[0]) |
|
} else if (tagName === 'polltype' && tagValues[0]) { |
|
if (tagValues[0] === POLL_TYPE.MULTIPLE_CHOICE) { |
|
pollType = POLL_TYPE.MULTIPLE_CHOICE |
|
} |
|
} else if (tagName === 'endsAt' && tagValues[0]) { |
|
const timestamp = parseInt(tagValues[0]) |
|
if (!isNaN(timestamp)) { |
|
endsAt = timestamp |
|
} |
|
} |
|
} |
|
|
|
if (options.length === 0) { |
|
return null |
|
} |
|
|
|
return { |
|
options, |
|
pollType, |
|
relayUrls, |
|
endsAt |
|
} |
|
} |
|
|
|
export function getPollResponseFromEvent( |
|
event: Event, |
|
optionIds: string[], |
|
isMultipleChoice: boolean |
|
) { |
|
const selectedOptionIds: string[] = [] |
|
|
|
for (const [tagName, ...tagValues] of event.tags) { |
|
if (tagName === 'response' && tagValues[0]) { |
|
if (optionIds && !optionIds.includes(tagValues[0])) { |
|
continue // Skip if the response is not in the provided optionIds |
|
} |
|
selectedOptionIds.push(tagValues[0]) |
|
} |
|
} |
|
|
|
// If no valid responses are found, return null |
|
if (selectedOptionIds.length === 0) { |
|
return null |
|
} |
|
|
|
// If multiple responses are selected but the poll is not multiple choice, return null |
|
if (selectedOptionIds.length > 1 && !isMultipleChoice) { |
|
return null |
|
} |
|
|
|
return { |
|
id: event.id, |
|
pubkey: event.pubkey, |
|
selectedOptionIds, |
|
created_at: event.created_at |
|
} |
|
} |
|
|
|
export function getEmojisAndEmojiSetsFromEvent(event: Event) { |
|
const emojis: TEmoji[] = [] |
|
const emojiSetPointers: string[] = [] |
|
|
|
event.tags.forEach(([tagName, ...tagValues]) => { |
|
if (tagName === 'emoji' && tagValues.length >= 2) { |
|
emojis.push({ |
|
shortcode: tagValues[0], |
|
url: tagValues[1] |
|
}) |
|
} else if (tagName === 'a' && tagValues[0]) { |
|
emojiSetPointers.push(tagValues[0]) |
|
} |
|
}) |
|
|
|
return { emojis, emojiSetPointers } |
|
} |
|
|
|
export function getEmojisFromEvent(event: Event): TEmoji[] { |
|
const emojis: TEmoji[] = [] |
|
|
|
event.tags.forEach(([tagName, ...tagValues]) => { |
|
if (tagName === 'emoji' && tagValues.length >= 2) { |
|
emojis.push({ |
|
shortcode: tagValues[0], |
|
url: tagValues[1] |
|
}) |
|
} |
|
}) |
|
|
|
return emojis |
|
} |
|
|
|
export function getStarsFromRelayReviewEvent(event: Event): number { |
|
const ratingTag = event.tags.find((t) => t[0] === 'rating') |
|
if (ratingTag) { |
|
const stars = parseFloat(ratingTag[1]) * 5 |
|
if (stars > 0 && stars <= 5) { |
|
return stars |
|
} |
|
} |
|
return 0 |
|
}
|
|
|