This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
system.go
158 lines (133 loc) · 3.79 KB
/
system.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package sdk
import (
"context"
"github.com/fiatjaf/eventstore"
"github.com/fiatjaf/eventstore/slicestore"
"github.com/graph-gophers/dataloader/v7"
"github.com/nbd-wtf/go-nostr"
"github.com/nbd-wtf/nostr-sdk/cache"
cache_memory "github.com/nbd-wtf/nostr-sdk/cache/memory"
"github.com/nbd-wtf/nostr-sdk/hints"
memory_hints "github.com/nbd-wtf/nostr-sdk/hints/memory"
)
type System struct {
RelayListCache cache.Cache32[RelayList]
FollowListCache cache.Cache32[FollowList]
MetadataCache cache.Cache32[ProfileMetadata]
Hints hints.HintsDB
Pool *nostr.SimplePool
RelayListRelays []string
FollowListRelays []string
MetadataRelays []string
FallbackRelays []string
UserSearchRelays []string
NoteSearchRelays []string
Store eventstore.Store
StoreRelay nostr.RelayStore
replaceableLoaders map[int]*dataloader.Loader[string, *nostr.Event]
outboxShortTermCache cache.Cache32[[]string]
}
type SystemModifier func(sys *System)
func NewSystem(mods ...SystemModifier) *System {
sys := &System{
RelayListCache: cache_memory.New32[RelayList](1000),
FollowListCache: cache_memory.New32[FollowList](1000),
MetadataCache: cache_memory.New32[ProfileMetadata](1000),
RelayListRelays: []string{"wss://purplepag.es", "wss://user.kindpag.es", "wss://relay.nos.social"},
FollowListRelays: []string{"wss://purplepag.es", "wss://user.kindpag.es", "wss://relay.nos.social"},
MetadataRelays: []string{"wss://purplepag.es", "wss://user.kindpag.es", "wss://relay.nos.social"},
FallbackRelays: []string{
"wss://relay.primal.net",
"wss://relay.damus.io",
"wss://nostr.wine",
"wss://nostr.mom",
"wss://offchain.pub",
"wss://nos.lol",
"wss://mostr.pub",
"wss://relay.nostr.band",
"wss://nostr21.com",
},
UserSearchRelays: []string{
"wss://nostr.wine",
"wss://relay.nostr.band",
"wss://relay.noswhere.com",
},
NoteSearchRelays: []string{
"wss://nostr.wine",
"wss://relay.nostr.band",
"wss://relay.noswhere.com",
},
Hints: memory_hints.NewHintDB(),
outboxShortTermCache: cache_memory.New32[[]string](1000),
}
sys.Pool = nostr.NewSimplePool(context.Background(),
nostr.WithEventMiddleware(sys.trackEventHints),
nostr.WithPenaltyBox(),
)
for _, mod := range mods {
mod(sys)
}
if sys.Store == nil {
sys.Store = &slicestore.SliceStore{}
sys.Store.Init()
}
sys.StoreRelay = eventstore.RelayWrapper{Store: sys.Store}
sys.initializeDataloaders()
return sys
}
func (sys *System) Close() {}
func WithHintsDB(hdb hints.HintsDB) SystemModifier {
return func(sys *System) {
sys.Hints = hdb
}
}
func WithRelayListRelays(list []string) SystemModifier {
return func(sys *System) {
sys.RelayListRelays = list
}
}
func WithMetadataRelays(list []string) SystemModifier {
return func(sys *System) {
sys.MetadataRelays = list
}
}
func WithFollowListRelays(list []string) SystemModifier {
return func(sys *System) {
sys.FollowListRelays = list
}
}
func WithFallbackRelays(list []string) SystemModifier {
return func(sys *System) {
sys.FallbackRelays = list
}
}
func WithUserSearchRelays(list []string) SystemModifier {
return func(sys *System) {
sys.UserSearchRelays = list
}
}
func WithNoteSearchRelays(list []string) SystemModifier {
return func(sys *System) {
sys.NoteSearchRelays = list
}
}
func WithStore(store eventstore.Store) SystemModifier {
return func(sys *System) {
sys.Store = store
}
}
func WithRelayListCache(cache cache.Cache32[RelayList]) SystemModifier {
return func(sys *System) {
sys.RelayListCache = cache
}
}
func WithFollowListCache(cache cache.Cache32[FollowList]) SystemModifier {
return func(sys *System) {
sys.FollowListCache = cache
}
}
func WithMetadataCache(cache cache.Cache32[ProfileMetadata]) SystemModifier {
return func(sys *System) {
sys.MetadataCache = cache
}
}