feat: explore

This commit is contained in:
codytseng
2025-09-07 22:23:01 +08:00
parent f2bb65acf0
commit ace4e94071
11 changed files with 240 additions and 233 deletions

View File

@@ -1,12 +1,8 @@
import { MONITOR, MONITOR_RELAYS } from '@/constants'
import { tagNameEquals } from '@/lib/tag'
import { isWebsocketUrl, simplifyUrl } from '@/lib/url'
import { TNip66RelayInfo, TRelayInfo } from '@/types'
import { simplifyUrl } from '@/lib/url'
import indexDb from '@/services/indexed-db.service'
import { TAwesomeRelayCollection, TRelayInfo } from '@/types'
import DataLoader from 'dataloader'
import FlexSearch from 'flexsearch'
import { Event } from 'nostr-tools'
import client from './client.service'
import indexedDb from './indexed-db.service'
class RelayInfoService {
static instance: RelayInfoService
@@ -14,14 +10,13 @@ class RelayInfoService {
public static getInstance(): RelayInfoService {
if (!RelayInfoService.instance) {
RelayInfoService.instance = new RelayInfoService()
RelayInfoService.instance.init()
}
return RelayInfoService.instance
}
private initPromise: Promise<void> | null = null
private relayInfoMap = new Map<string, TNip66RelayInfo>()
private awesomeRelayCollections: Promise<TAwesomeRelayCollection[]> | null = null
private relayInfoMap = new Map<string, TRelayInfo>()
private relayInfoIndex = new FlexSearch.Index({
tokenize: 'forward',
encode: (str) =>
@@ -32,19 +27,15 @@ class RelayInfoService {
.toLocaleLowerCase()
.split(/\s+/)
})
private fetchDataloader = new DataLoader<string, TNip66RelayInfo | undefined>(
(urls) => Promise.all(urls.map((url) => this._getRelayInfo(url))),
private fetchDataloader = new DataLoader<string, TRelayInfo | undefined>(
async (urls) => {
const results = await Promise.allSettled(urls.map((url) => this._getRelayInfo(url)))
return results.map((res) => (res.status === 'fulfilled' ? res.value : undefined))
},
{ maxBatchSize: 1 }
)
private relayUrlsForRandom: string[] = []
async init() {
if (!this.initPromise) {
this.initPromise = this.loadRelayInfos()
}
await this.initPromise
}
async search(query: string) {
if (this.initPromise) {
await this.initPromise
@@ -60,9 +51,7 @@ class RelayInfoService {
}
const result = await this.relayInfoIndex.searchAsync(query)
return result
.map((url) => this.relayInfoMap.get(url as string))
.filter(Boolean) as TNip66RelayInfo[]
return result.map((url) => this.relayInfoMap.get(url as string)).filter(Boolean) as TRelayInfo[]
}
async getRelayInfos(urls: string[]) {
@@ -82,7 +71,7 @@ class RelayInfoService {
await this.initPromise
}
const relayInfos: TNip66RelayInfo[] = []
const relayInfos: TRelayInfo[] = []
while (relayInfos.length < count) {
const randomIndex = Math.floor(Math.random() * this.relayUrlsForRandom.length)
const url = this.relayUrlsForRandom[randomIndex]
@@ -99,146 +88,81 @@ class RelayInfoService {
return relayInfos
}
async getAwesomeRelayCollections() {
if (this.awesomeRelayCollections) return this.awesomeRelayCollections
this.awesomeRelayCollections = (async () => {
try {
const res = await fetch(
'https://raw.githubusercontent.com/CodyTseng/awesome-nostr-relays/master/dist/collections.json'
)
if (!res.ok) {
throw new Error('Failed to fetch awesome relay collections')
}
const data = (await res.json()) as { collections: TAwesomeRelayCollection[] }
return data.collections
} catch (error) {
console.error('Error fetching awesome relay collections:', error)
return []
}
})()
return this.awesomeRelayCollections
}
private async _getRelayInfo(url: string) {
const exist = this.relayInfoMap.get(url)
if (exist && (exist.hasNip11 || exist.triedNip11)) {
if (exist) {
return exist
}
const nip11 = await this.fetchRelayInfoByNip11(url)
const relayInfo = nip11
? {
...nip11,
url,
shortUrl: simplifyUrl(url),
hasNip11: Object.keys(nip11).length > 0,
triedNip11: true
}
: {
url,
shortUrl: simplifyUrl(url),
hasNip11: false,
triedNip11: true
}
const storedRelayInfo = await indexDb.getRelayInfo(url)
if (storedRelayInfo) {
return await this.addRelayInfo(storedRelayInfo)
}
const nip11 = await this.fetchRelayNip11(url)
const relayInfo = {
...(nip11 ?? {}),
url,
shortUrl: simplifyUrl(url)
}
return await this.addRelayInfo(relayInfo)
}
private async fetchRelayInfoByNip11(url: string) {
private async fetchRelayNip11(url: string) {
try {
console.log('Fetching NIP-11 for', url)
const res = await fetch(url.replace('ws://', 'http://').replace('wss://', 'https://'), {
headers: { Accept: 'application/nostr+json' }
})
return res.json() as TRelayInfo
return res.json() as Omit<TRelayInfo, 'url' | 'shortUrl'>
} catch {
return undefined
}
}
private async loadRelayInfos() {
const localRelayInfos = await indexedDb.getAllRelayInfoEvents()
const relayInfos = formatRelayInfoEvents(localRelayInfos)
relayInfos.forEach((relayInfo) => this.addRelayInfo(relayInfo))
this.relayUrlsForRandom = Array.from(this.relayInfoMap.keys())
const loadFromInternet = async (slowFetch: boolean = true) => {
let until: number = Math.round(Date.now() / 1000)
const since = until - 60 * 60 * 48
while (until) {
const relayInfoEvents = await client.fetchEvents(MONITOR_RELAYS, {
authors: [MONITOR],
kinds: [30166],
since,
until,
limit: slowFetch ? 100 : 1000
})
const events = relayInfoEvents.sort((a, b) => b.created_at - a.created_at)
if (events.length === 0) {
break
}
for (const event of events) {
await indexedDb.putRelayInfoEvent(event)
const relayInfo = formatRelayInfoEvents([event])[0]
await this.addRelayInfo(relayInfo)
}
until = events[events.length - 1].created_at - 1
if (slowFetch) {
await new Promise((resolve) => setTimeout(resolve, 1000))
}
}
this.relayUrlsForRandom = Array.from(this.relayInfoMap.keys())
}
if (localRelayInfos.length === 0) {
await loadFromInternet(false)
} else {
setTimeout(loadFromInternet, 1000 * 20) // 20 seconds
}
}
private async addRelayInfo(relayInfo: TNip66RelayInfo) {
const oldRelayInfo = this.relayInfoMap.get(relayInfo.url)
const newRelayInfo = oldRelayInfo
? {
...oldRelayInfo,
...relayInfo,
hasNip11: oldRelayInfo.hasNip11 || relayInfo.hasNip11,
triedNip11: oldRelayInfo.triedNip11 || relayInfo.triedNip11
}
: relayInfo
if (!Array.isArray(newRelayInfo.supported_nips)) {
newRelayInfo.supported_nips = []
private async addRelayInfo(relayInfo: TRelayInfo) {
if (!Array.isArray(relayInfo.supported_nips)) {
relayInfo.supported_nips = []
}
this.relayInfoMap.set(newRelayInfo.url, newRelayInfo)
await this.relayInfoIndex.addAsync(
newRelayInfo.url,
[
newRelayInfo.shortUrl,
...newRelayInfo.shortUrl.split('.'),
newRelayInfo.name ?? '',
newRelayInfo.description ?? ''
].join(' ')
)
return newRelayInfo
this.relayInfoMap.set(relayInfo.url, relayInfo)
await Promise.allSettled([
this.relayInfoIndex.addAsync(
relayInfo.url,
[
relayInfo.shortUrl,
...relayInfo.shortUrl.split('.'),
relayInfo.name ?? '',
relayInfo.description ?? ''
].join(' ')
),
indexDb.putRelayInfo(relayInfo)
])
return relayInfo
}
}
const instance = RelayInfoService.getInstance()
export default instance
function formatRelayInfoEvents(relayInfoEvents: Event[]) {
const urlSet = new Set<string>()
const relayInfos: TNip66RelayInfo[] = []
relayInfoEvents.forEach((event) => {
try {
const url = event.tags.find(tagNameEquals('d'))?.[1]
if (!url || urlSet.has(url) || !isWebsocketUrl(url)) {
return
}
urlSet.add(url)
const basicInfo = event.content ? (JSON.parse(event.content) as TRelayInfo) : {}
const tagInfo: Omit<TNip66RelayInfo, 'url' | 'shortUrl'> = {
hasNip11: Object.keys(basicInfo).length > 0,
triedNip11: false
}
event.tags.forEach((tag) => {
if (tag[0] === 'T') {
tagInfo.relayType = tag[1]
} else if (tag[0] === 'g' && tag[2] === 'countryCode') {
tagInfo.countryCode = tag[1]
}
})
relayInfos.push({
...basicInfo,
...tagInfo,
url,
shortUrl: simplifyUrl(url)
})
} catch (error) {
console.error(error)
}
})
return relayInfos
}