mirror of
https://github.com/fiatjaf/nak.git
synced 2024-10-30 00:59:07 -04:00
147 lines
3.8 KiB
Go
147 lines
3.8 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/url"
|
|
"os"
|
|
|
|
"github.com/fatih/color"
|
|
"github.com/nbd-wtf/go-nostr"
|
|
"github.com/nbd-wtf/go-nostr/nip19"
|
|
"github.com/nbd-wtf/go-nostr/nip46"
|
|
"github.com/urfave/cli/v2"
|
|
"golang.org/x/exp/slices"
|
|
)
|
|
|
|
var bunker = &cli.Command{
|
|
Name: "bunker",
|
|
Usage: "starts a NIP-46 signer daemon with the given --sec key",
|
|
ArgsUsage: "[relay...]",
|
|
Description: ``,
|
|
Flags: []cli.Flag{
|
|
&cli.StringFlag{
|
|
Name: "sec",
|
|
Usage: "secret key to sign the event, as hex or nsec",
|
|
DefaultText: "the key '1'",
|
|
Value: "0000000000000000000000000000000000000000000000000000000000000001",
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "prompt-sec",
|
|
Usage: "prompt the user to paste a hex or nsec with which to sign the event",
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "yes",
|
|
Aliases: []string{"y"},
|
|
Usage: "always respond to any NIP-46 requests from anyone",
|
|
},
|
|
},
|
|
Action: func(c *cli.Context) error {
|
|
// try to connect to the relays here
|
|
qs := url.Values{}
|
|
relayURLs := make([]string, 0, c.Args().Len())
|
|
if relayUrls := c.Args().Slice(); len(relayUrls) > 0 {
|
|
_, relays := connectToAllRelays(c.Context, relayUrls)
|
|
if len(relays) == 0 {
|
|
log("failed to connect to any of the given relays.\n")
|
|
os.Exit(3)
|
|
}
|
|
for _, relay := range relays {
|
|
relayURLs = append(relayURLs, relay.URL)
|
|
qs.Add("relay", relay.URL)
|
|
}
|
|
}
|
|
if len(relayURLs) == 0 {
|
|
return fmt.Errorf("not connected to any relays: please specify at least one")
|
|
}
|
|
|
|
// gather the secret key
|
|
sec, _, err := gatherSecretKeyOrBunkerFromArguments(c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
pubkey, err := nostr.GetPublicKey(sec)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
npub, _ := nip19.EncodePublicKey(pubkey)
|
|
bold := color.New(color.Bold).Sprint
|
|
log("listening at %v:\n pubkey: %s \n npub: %s\n bunker: %s\n\n",
|
|
bold(relayURLs),
|
|
bold(pubkey),
|
|
bold(npub),
|
|
bold(fmt.Sprintf("bunker://%s?%s", pubkey, qs.Encode())),
|
|
)
|
|
|
|
alwaysYes := c.Bool("yes")
|
|
|
|
// subscribe to relays
|
|
pool := nostr.NewSimplePool(c.Context)
|
|
events := pool.SubMany(c.Context, relayURLs, nostr.Filters{
|
|
{
|
|
Kinds: []int{24133},
|
|
Tags: nostr.TagMap{"p": []string{pubkey}},
|
|
},
|
|
})
|
|
|
|
signer := nip46.NewStaticKeySigner(sec)
|
|
for ie := range events {
|
|
req, resp, eventResponse, harmless, err := signer.HandleRequest(ie.Event)
|
|
if err != nil {
|
|
log("< failed to handle request from %s: %s", ie.Event.PubKey, err.Error())
|
|
continue
|
|
}
|
|
|
|
jreq, _ := json.MarshalIndent(req, " ", " ")
|
|
log("- got request from '%s': %s\n", color.New(color.Bold, color.FgBlue).Sprint(ie.Event.PubKey), string(jreq))
|
|
jresp, _ := json.MarshalIndent(resp, " ", " ")
|
|
log("~ responding with %s\n", string(jresp))
|
|
|
|
if alwaysYes || harmless || askProceed(ie.Event.PubKey) {
|
|
for _, relayURL := range relayURLs {
|
|
if relay, _ := pool.EnsureRelay(relayURL); relay != nil {
|
|
if err := relay.Publish(c.Context, eventResponse); err == nil {
|
|
log("* sent response through %s\n", relay.URL)
|
|
} else {
|
|
log("* failed to send response: %s\n", err)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return nil
|
|
},
|
|
}
|
|
|
|
var allowedSources = make([]string, 0, 2)
|
|
|
|
func askProceed(source string) bool {
|
|
if slices.Contains(allowedSources, source) {
|
|
return true
|
|
}
|
|
|
|
fmt.Fprintf(os.Stderr, "request from %s:\n", color.New(color.Bold, color.FgBlue).Sprint(source))
|
|
res, err := ask(" proceed to fulfill this request? (yes/no/always from this) (y/n/a): ", "",
|
|
func(answer string) bool {
|
|
if answer != "y" && answer != "n" && answer != "a" {
|
|
return true
|
|
}
|
|
return false
|
|
})
|
|
if err != nil {
|
|
return false
|
|
}
|
|
switch res {
|
|
case "n":
|
|
return false
|
|
case "y":
|
|
return true
|
|
case "a":
|
|
allowedSources = append(allowedSources, source)
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|