sdk: track query attempts automatically and other small tweaks to replaceable fetching and stuff.

This commit is contained in:
fiatjaf
2024-12-24 00:15:10 -03:00
parent 3b3d5cce7b
commit 95ddacb9f3
4 changed files with 74 additions and 15 deletions

View File

@@ -124,15 +124,19 @@ func (sys *System) determineRelaysToQuery(ctx context.Context, pubkey string, ki
if kind == 10002 {
// prevent infinite loops by jumping directly to this
relays = sys.Hints.TopN(pubkey, 3)
} else if kind == 0 {
// leave room for one hardcoded relay because people are stupid
relays = sys.FetchOutboxRelays(ctx, pubkey, 2)
if len(relays) == 0 {
relays = []string{"wss://relay.damus.io", "wss://nos.lol"}
}
} else if kind == 0 || kind == 3 {
// leave room for two hardcoded relays because people are stupid
relays = sys.FetchOutboxRelays(ctx, pubkey, 1)
} else {
relays = sys.FetchOutboxRelays(ctx, pubkey, 3)
}
// use a different set of extra relays depending on the kind
for i := 0; i < 3-len(relays); i++ {
needed := 3 - len(relays)
for range needed {
var next string
switch kind {
case 0:

View File

@@ -2,6 +2,7 @@ package sdk
import (
"context"
"math/rand/v2"
"github.com/fiatjaf/eventstore"
"github.com/fiatjaf/eventstore/nullstore"
@@ -10,7 +11,7 @@ import (
"github.com/nbd-wtf/go-nostr/sdk/cache"
cache_memory "github.com/nbd-wtf/go-nostr/sdk/cache/memory"
"github.com/nbd-wtf/go-nostr/sdk/hints"
memory_hints "github.com/nbd-wtf/go-nostr/sdk/hints/memory"
"github.com/nbd-wtf/go-nostr/sdk/hints/memoryh"
)
type System struct {
@@ -43,7 +44,7 @@ type RelayStream struct {
}
func NewRelayStream(urls ...string) *RelayStream {
return &RelayStream{URLs: urls, serial: -1}
return &RelayStream{URLs: urls, serial: rand.Int()}
}
func (rs *RelayStream) Next() string {
@@ -82,12 +83,13 @@ func NewSystem(mods ...SystemModifier) *System {
"wss://relay.nostr.band",
"wss://search.nos.today",
),
Hints: memory_hints.NewHintDB(),
Hints: memoryh.NewHintDB(),
outboxShortTermCache: cache_memory.New32[[]string](1000),
}
sys.Pool = nostr.NewSimplePool(context.Background(),
nostr.WithQueryMiddleware(sys.TrackQueryAttempts),
nostr.WithEventMiddleware(sys.TrackEventHints),
nostr.WithPenaltyBox(),
)

View File

@@ -7,6 +7,19 @@ import (
"github.com/nbd-wtf/go-nostr/sdk/hints"
)
func (sys *System) TrackQueryAttempts(relay string, author string, kind int) {
if IsVirtualRelay(relay) {
return
}
if kind < 30000 && kind >= 20000 {
return
}
if kind == 0 || kind == 10002 || kind == 3 {
return
}
sys.Hints.Save(author, relay, hints.LastFetchAttempt, nostr.Now())
}
func (sys *System) TrackEventHints(ie nostr.RelayEvent) {
if IsVirtualRelay(ie.Relay.URL) {
return
@@ -16,7 +29,15 @@ func (sys *System) TrackEventHints(ie nostr.RelayEvent) {
}
switch ie.Kind {
case nostr.KindProfileMetadata:
// this could be anywhere so it doesn't count
return
case nostr.KindRelayListMetadata:
// this is special, we only use it to track relay-list hints
if len(ie.Tags) > 12 {
// too many relays in the list means this person is not using this correctly so we better ignore them
return
}
for _, tag := range ie.Tags {
if len(tag) < 2 || tag[0] != "r" {
continue
@@ -26,8 +47,7 @@ func (sys *System) TrackEventHints(ie nostr.RelayEvent) {
}
}
case nostr.KindFollowList:
sys.Hints.Save(ie.PubKey, ie.Relay.URL, hints.MostRecentEventFetched, ie.CreatedAt)
// this is special, we only use it to check if there are hints for the contacts
for _, tag := range ie.Tags {
if len(tag) < 3 {
continue
@@ -42,7 +62,8 @@ func (sys *System) TrackEventHints(ie nostr.RelayEvent) {
sys.Hints.Save(tag[1], tag[2], hints.LastInTag, ie.CreatedAt)
}
}
case nostr.KindTextNote:
default:
// everything else may have hints
sys.Hints.Save(ie.PubKey, ie.Relay.URL, hints.MostRecentEventFetched, ie.CreatedAt)
for _, tag := range ie.Tags {