feat: explore (#85)
This commit is contained in:
@@ -3,7 +3,7 @@ import { getProfileFromProfileEvent, getRelayListFromRelayListEvent } from '@/li
|
||||
import { formatPubkey, userIdToPubkey } from '@/lib/pubkey'
|
||||
import { extractPubkeysFromEventTags } from '@/lib/tag'
|
||||
import { isLocalNetworkUrl } from '@/lib/url'
|
||||
import { TDraftEvent, TProfile, TRelayInfo, TRelayList } from '@/types'
|
||||
import { TDraftEvent, TProfile, TRelayList } from '@/types'
|
||||
import { sha256 } from '@noble/hashes/sha2'
|
||||
import DataLoader from 'dataloader'
|
||||
import FlexSearch from 'flexsearch'
|
||||
@@ -49,33 +49,19 @@ class ClientService extends EventTarget {
|
||||
private profileEventCache = new LRUCache<string, Promise<NEvent | undefined>>({ max: 10000 })
|
||||
private profileEventDataloader = new DataLoader<string, NEvent | undefined>(
|
||||
(ids) => Promise.all(ids.map((id) => this._fetchProfileEvent(id))),
|
||||
{ cacheMap: this.profileEventCache, maxBatchSize: 10 }
|
||||
{ cacheMap: this.profileEventCache, maxBatchSize: 20 }
|
||||
)
|
||||
private fetchProfileEventFromDefaultRelaysDataloader = new DataLoader<string, NEvent | undefined>(
|
||||
this.profileEventBatchLoadFn.bind(this),
|
||||
{ cache: false, maxBatchSize: 10 }
|
||||
{ cache: false, maxBatchSize: 20 }
|
||||
)
|
||||
private relayListEventDataLoader = new DataLoader<string, NEvent | undefined>(
|
||||
this.relayListEventBatchLoadFn.bind(this),
|
||||
{
|
||||
cacheMap: new LRUCache<string, Promise<NEvent | undefined>>({ max: 10000 }),
|
||||
maxBatchSize: 10
|
||||
maxBatchSize: 20
|
||||
}
|
||||
)
|
||||
private relayInfoDataLoader = new DataLoader<string, TRelayInfo | undefined>(async (urls) => {
|
||||
return await Promise.all(
|
||||
urls.map(async (url) => {
|
||||
try {
|
||||
const res = await fetch(url.replace('ws://', 'http://').replace('wss://', 'https://'), {
|
||||
headers: { Accept: 'application/nostr+json' }
|
||||
})
|
||||
return res.json() as TRelayInfo
|
||||
} catch {
|
||||
return undefined
|
||||
}
|
||||
})
|
||||
)
|
||||
})
|
||||
private followListCache = new LRUCache<string, Promise<NEvent | undefined>>({
|
||||
max: 10000,
|
||||
fetchMethod: this._fetchFollowListEvent.bind(this)
|
||||
@@ -531,11 +517,6 @@ class ClientService extends EventTarget {
|
||||
this.followListCache.set(pubkey, Promise.resolve(event))
|
||||
}
|
||||
|
||||
async fetchRelayInfos(urls: string[]) {
|
||||
const infos = await this.relayInfoDataLoader.loadMany(urls)
|
||||
return infos.map((info) => (info ? (info instanceof Error ? undefined : info) : undefined))
|
||||
}
|
||||
|
||||
async calculateOptimalReadRelays(pubkey: string) {
|
||||
const followings = await this.fetchFollowings(pubkey)
|
||||
const [selfRelayListEvent, ...relayListEvents] = await this.relayListEventDataLoader.loadMany([
|
||||
@@ -597,9 +578,9 @@ class ClientService extends EventTarget {
|
||||
|
||||
async initUserIndexFromFollowings(pubkey: string) {
|
||||
const followings = await this.fetchFollowings(pubkey)
|
||||
for (let i = 0; i * 10 < followings.length; i++) {
|
||||
await this.profileEventDataloader.loadMany(followings.slice(i * 10, (i + 1) * 10))
|
||||
await new Promise((resolve) => setTimeout(resolve, 100))
|
||||
for (let i = 0; i * 20 < followings.length; i++) {
|
||||
await this.profileEventDataloader.loadMany(followings.slice(i * 20, (i + 1) * 20))
|
||||
await new Promise((resolve) => setTimeout(resolve, 200))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
216
src/services/relay-info.service.ts
Normal file
216
src/services/relay-info.service.ts
Normal file
@@ -0,0 +1,216 @@
|
||||
import { MONITOR, MONITOR_RELAYS } from '@/constants'
|
||||
import { tagNameEquals } from '@/lib/tag'
|
||||
import { isWebsocketUrl, simplifyUrl } from '@/lib/url'
|
||||
import { TNip66RelayInfo, TRelayInfo } from '@/types'
|
||||
import DataLoader from 'dataloader'
|
||||
import FlexSearch from 'flexsearch'
|
||||
import { Event } from 'nostr-tools'
|
||||
import client from './client.service'
|
||||
|
||||
class RelayInfoService {
|
||||
static instance: 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 relayInfoIndex = new FlexSearch.Index({
|
||||
tokenize: 'forward',
|
||||
encode: (str) =>
|
||||
str
|
||||
// eslint-disable-next-line no-control-regex
|
||||
.replace(/[^\x00-\x7F]/g, (match) => ` ${match} `)
|
||||
.trim()
|
||||
.toLocaleLowerCase()
|
||||
.split(/\s+/)
|
||||
})
|
||||
private fetchDataloader = new DataLoader<string, TNip66RelayInfo | undefined>(
|
||||
(urls) => Promise.all(urls.map((url) => this._getRelayInfo(url))),
|
||||
{
|
||||
cache: false
|
||||
}
|
||||
)
|
||||
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
|
||||
}
|
||||
|
||||
if (!query) {
|
||||
return Array.from(this.relayInfoMap.values())
|
||||
}
|
||||
|
||||
const result = await this.relayInfoIndex.searchAsync(query)
|
||||
return result
|
||||
.map((url) => this.relayInfoMap.get(url as string))
|
||||
.filter(Boolean) as TNip66RelayInfo[]
|
||||
}
|
||||
|
||||
async getRelayInfos(urls: string[]) {
|
||||
const relayInfos = await this.fetchDataloader.loadMany(urls)
|
||||
return relayInfos.map((relayInfo) => (relayInfo instanceof Error ? undefined : relayInfo))
|
||||
}
|
||||
|
||||
async getRelayInfo(url: string) {
|
||||
return this.fetchDataloader.load(url)
|
||||
}
|
||||
|
||||
async getRandomRelayInfos(count: number) {
|
||||
if (this.initPromise) {
|
||||
await this.initPromise
|
||||
}
|
||||
|
||||
const relayInfos: TNip66RelayInfo[] = []
|
||||
while (relayInfos.length < count) {
|
||||
const randomIndex = Math.floor(Math.random() * this.relayUrlsForRandom.length)
|
||||
const url = this.relayUrlsForRandom[randomIndex]
|
||||
this.relayUrlsForRandom.splice(randomIndex, 1)
|
||||
if (this.relayUrlsForRandom.length === 0) {
|
||||
this.relayUrlsForRandom = Array.from(this.relayInfoMap.keys())
|
||||
}
|
||||
|
||||
const relayInfo = this.relayInfoMap.get(url)
|
||||
if (relayInfo) {
|
||||
relayInfos.push(relayInfo)
|
||||
}
|
||||
}
|
||||
return relayInfos
|
||||
}
|
||||
|
||||
private async _getRelayInfo(url: string) {
|
||||
const exist = this.relayInfoMap.get(url)
|
||||
if (exist && (exist.hasNip11 || exist.triedNip11)) {
|
||||
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
|
||||
}
|
||||
return await this.addRelayInfo(relayInfo)
|
||||
}
|
||||
|
||||
private async fetchRelayInfoByNip11(url: string) {
|
||||
try {
|
||||
const res = await fetch(url.replace('ws://', 'http://').replace('wss://', 'https://'), {
|
||||
headers: { Accept: 'application/nostr+json' }
|
||||
})
|
||||
return res.json() as TRelayInfo
|
||||
} catch {
|
||||
return undefined
|
||||
}
|
||||
}
|
||||
|
||||
private async loadRelayInfos() {
|
||||
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: 1000
|
||||
})
|
||||
const events = relayInfoEvents.sort((a, b) => b.created_at - a.created_at)
|
||||
if (events.length === 0) {
|
||||
break
|
||||
}
|
||||
until = events[events.length - 1].created_at - 1
|
||||
const relayInfos = formatRelayInfoEvents(events)
|
||||
for (const relayInfo of relayInfos) {
|
||||
await this.addRelayInfo(relayInfo)
|
||||
}
|
||||
}
|
||||
this.relayUrlsForRandom = Array.from(this.relayInfoMap.keys())
|
||||
}
|
||||
|
||||
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
|
||||
this.relayInfoMap.set(newRelayInfo.url, newRelayInfo)
|
||||
await this.relayInfoIndex.addAsync(
|
||||
newRelayInfo.url,
|
||||
[
|
||||
newRelayInfo.shortUrl,
|
||||
...newRelayInfo.shortUrl.split('.'),
|
||||
newRelayInfo.name ?? '',
|
||||
newRelayInfo.description ?? ''
|
||||
].join(' ')
|
||||
)
|
||||
return newRelayInfo
|
||||
}
|
||||
}
|
||||
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user