mirror of
https://github.com/fiatjaf/nak.git
synced 2024-11-21 15:59:07 -05:00
127 lines
3.5 KiB
Go
127 lines
3.5 KiB
Go
package main
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"math"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/bep/debounce"
|
|
"github.com/fatih/color"
|
|
"github.com/fiatjaf/cli/v3"
|
|
"github.com/fiatjaf/eventstore/slicestore"
|
|
"github.com/fiatjaf/khatru"
|
|
"github.com/nbd-wtf/go-nostr"
|
|
)
|
|
|
|
var serve = &cli.Command{
|
|
Name: "serve",
|
|
Usage: "starts an in-memory relay for testing purposes",
|
|
DisableSliceFlagSeparator: true,
|
|
Flags: []cli.Flag{
|
|
&cli.StringFlag{
|
|
Name: "hostname",
|
|
Usage: "hostname where to listen for connections",
|
|
Value: "localhost",
|
|
},
|
|
&cli.UintFlag{
|
|
Name: "port",
|
|
Usage: "port where to listen for connections",
|
|
Value: 10547,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "events",
|
|
Usage: "file containing the initial batch of events that will be served by the relay as newline-separated JSON (jsonl)",
|
|
DefaultText: "the relay will start empty",
|
|
},
|
|
},
|
|
Action: func(ctx context.Context, c *cli.Command) error {
|
|
db := slicestore.SliceStore{MaxLimit: math.MaxInt}
|
|
|
|
var scanner *bufio.Scanner
|
|
if path := c.String("events"); path != "" {
|
|
f, err := os.Open(path)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to file at '%s': %w", path, err)
|
|
}
|
|
scanner = bufio.NewScanner(f)
|
|
} else if isPiped() {
|
|
scanner = bufio.NewScanner(os.Stdin)
|
|
}
|
|
|
|
if scanner != nil {
|
|
scanner.Buffer(make([]byte, 16*1024*1024), 256*1024*1024)
|
|
i := 0
|
|
for scanner.Scan() {
|
|
var evt nostr.Event
|
|
if err := json.Unmarshal(scanner.Bytes(), &evt); err != nil {
|
|
return fmt.Errorf("invalid event received at line %d: %s (`%s`)", i, err, scanner.Text())
|
|
}
|
|
db.SaveEvent(ctx, &evt)
|
|
i++
|
|
}
|
|
}
|
|
|
|
rl := khatru.NewRelay()
|
|
rl.QueryEvents = append(rl.QueryEvents, db.QueryEvents)
|
|
rl.CountEvents = append(rl.CountEvents, db.CountEvents)
|
|
rl.DeleteEvent = append(rl.DeleteEvent, db.DeleteEvent)
|
|
rl.StoreEvent = append(rl.StoreEvent, db.SaveEvent)
|
|
|
|
started := make(chan bool)
|
|
exited := make(chan error)
|
|
|
|
hostname := c.String("hostname")
|
|
port := int(c.Uint("port"))
|
|
|
|
go func() {
|
|
err := rl.Start(hostname, port, started)
|
|
exited <- err
|
|
}()
|
|
|
|
bold := color.New(color.Bold).Sprintf
|
|
italic := color.New(color.Italic).Sprint
|
|
|
|
var printStatus func()
|
|
|
|
// relay logging
|
|
rl.RejectFilter = append(rl.RejectFilter, func(ctx context.Context, filter nostr.Filter) (reject bool, msg string) {
|
|
log(" got %s %v\n", color.HiYellowString("request"), italic(filter))
|
|
printStatus()
|
|
return false, ""
|
|
})
|
|
rl.RejectCountFilter = append(rl.RejectCountFilter, func(ctx context.Context, filter nostr.Filter) (reject bool, msg string) {
|
|
log(" got %s %v\n", color.HiCyanString("count request"), italic(filter))
|
|
printStatus()
|
|
return false, ""
|
|
})
|
|
rl.RejectEvent = append(rl.RejectEvent, func(ctx context.Context, event *nostr.Event) (reject bool, msg string) {
|
|
log(" got %s %v\n", color.BlueString("event"), italic(event))
|
|
printStatus()
|
|
return false, ""
|
|
})
|
|
|
|
d := debounce.New(time.Second * 2)
|
|
printStatus = func() {
|
|
d(func() {
|
|
totalEvents := 0
|
|
ch, _ := db.QueryEvents(ctx, nostr.Filter{})
|
|
for range ch {
|
|
totalEvents++
|
|
}
|
|
subs := rl.GetListeningFilters()
|
|
|
|
log(" %s events stored: %s, subscriptions opened: %s\n", color.HiMagentaString("•"), color.HiMagentaString("%d", totalEvents), color.HiMagentaString("%d", len(subs)))
|
|
})
|
|
}
|
|
|
|
<-started
|
|
log("%s relay running at %s\n", color.HiRedString(">"), bold("ws://%s:%d", hostname, port))
|
|
|
|
return <-exited
|
|
},
|
|
}
|