well-goknown/nostr/nostr.go

174 lines
4.4 KiB
Go
Raw Normal View History

package nostr
import (
2023-02-05 02:07:26 +00:00
"context"
2023-04-29 19:25:28 +00:00
b64 "encoding/base64"
2023-02-03 04:56:15 +00:00
"encoding/json"
"errors"
"fmt"
"net/http"
"strings"
2023-02-05 03:24:30 +00:00
"time"
"git.minhas.io/asara/well-goknown/lnd"
2023-04-29 18:01:40 +00:00
"git.minhas.io/asara/well-goknown/logger"
2023-02-03 04:56:15 +00:00
"git.minhas.io/asara/well-goknown/redis"
"github.com/nbd-wtf/go-nostr/nip19"
)
type nostrWellKnown struct {
Names map[string]string `json:"names"`
Relays map[string][]string `json:"relays,omitempty"`
}
type NostrRequest struct {
Name string `json:"name"`
Key string `json:"key"`
Hostname string
2023-02-03 04:56:15 +00:00
Relays []string `json:"relays,omitempty"`
}
func RequestNostrAddr(w http.ResponseWriter, r *http.Request) {
2023-02-05 02:07:26 +00:00
ctx := context.TODO()
2023-04-29 18:01:40 +00:00
l := logger.Get()
switch r.Method {
case "GET":
2023-04-29 18:01:40 +00:00
l.Debug().Msg("get nostr register form")
http.ServeFile(w, r, "html/nostr_form.html")
case "POST":
r.ParseForm()
2023-05-01 22:41:28 +00:00
redisCli := redis.NostrRedisConn
2023-04-29 18:01:40 +00:00
// check if the user already exists
rKey := getRkey("verified", r.FormValue("Name"), getHostname(r.Host))
2023-02-05 02:07:26 +00:00
exists := redisCli.Client.Exists(ctx, rKey)
2023-02-04 23:52:50 +00:00
if exists.Val() == 1 {
w.WriteHeader(http.StatusConflict)
return
}
2023-05-01 22:01:46 +00:00
rKey = getRkey("requested", r.FormValue("Name"), getHostname(r.Host))
exists = redisCli.Client.Exists(ctx, rKey)
if exists.Val() == 1 {
w.WriteHeader(http.StatusConflict)
return
}
2023-02-04 23:52:50 +00:00
// get the hexkey
hexKey, err := convertNpubToHex(r.FormValue("Key"))
if err != nil {
2023-04-29 18:01:40 +00:00
l.Error().Msg("unable to convert npub to hex")
w.WriteHeader(http.StatusBadRequest)
return
}
2023-02-04 23:52:50 +00:00
// create the struct
relays := make(map[string][]string)
names := map[string]string{r.FormValue("Name"): hexKey}
user := nostrWellKnown{}
if r.FormValue("Relays") != "" {
relays = map[string][]string{
hexKey: strings.Split(r.FormValue("Relays"), ","),
}
user = nostrWellKnown{Names: names, Relays: relays}
} else {
user = nostrWellKnown{Names: names}
}
jsonUser, _ := json.Marshal(user)
2023-04-29 19:25:28 +00:00
enc := b64.StdEncoding.EncodeToString([]byte(jsonUser))
2023-02-04 23:52:50 +00:00
// generate the payment request
2023-02-05 03:39:01 +00:00
exp := time.Until(time.Now().Add(time.Minute * 15))
2023-05-01 22:01:46 +00:00
// paymentReq, err := lnd.Request(rKey, jsonUser, exp)
_, err = lnd.Request(rKey, jsonUser, exp)
if err != nil {
w.WriteHeader(http.StatusServiceUnavailable)
return
}
2023-02-05 01:43:38 +00:00
requestKey := getRkey("requested", r.FormValue("Name"), getHostname(r.Host))
2023-04-29 19:25:28 +00:00
err = redisCli.Client.Set(ctx, requestKey, enc, exp).Err()
2023-02-05 01:43:38 +00:00
if err != nil {
2023-04-29 18:01:40 +00:00
l.Error().Msg("unable to connect to redis")
2023-02-05 01:43:38 +00:00
}
}
}
func GetNostrAddr(w http.ResponseWriter, r *http.Request) {
2023-02-05 02:07:26 +00:00
ctx := context.TODO()
// get query string for username
r.ParseForm()
2023-05-01 22:41:28 +00:00
requestedName := r.FormValue("name")
// connect to redis
2023-05-01 22:41:28 +00:00
redisCli := redis.NostrRedisConn
// search for user@domain
2023-02-05 01:43:38 +00:00
search := getRkey("verified", requestedName, getHostname(r.Host))
2023-02-05 02:07:26 +00:00
addr, err := redisCli.Client.Get(ctx, search).Result()
if err != nil {
w.WriteHeader(http.StatusNotFound)
return
}
2023-04-29 19:25:28 +00:00
dec, err := b64.StdEncoding.DecodeString(addr)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusOK)
2023-04-29 19:25:28 +00:00
w.Write(dec)
}
func AddNostrAddr(n NostrRequest) {
2023-02-05 02:07:26 +00:00
ctx := context.TODO()
2023-04-29 18:01:40 +00:00
l := logger.Get()
// transform request to well known struct
2023-02-03 04:56:15 +00:00
relays := make(map[string][]string)
user := nostrWellKnown{}
2023-02-04 22:46:13 +00:00
hexKey, err := convertNpubToHex(n.Key)
if err != nil {
2023-04-29 18:01:40 +00:00
l.Error().Msg("unable to convert npub to hex")
2023-02-04 22:46:13 +00:00
}
names := map[string]string{n.Name: hexKey}
2023-02-04 05:32:25 +00:00
2023-02-03 04:56:15 +00:00
if n.Relays != nil {
2023-02-04 22:46:13 +00:00
relays = map[string][]string{hexKey: n.Relays}
2023-02-03 04:56:15 +00:00
user = nostrWellKnown{Names: names, Relays: relays}
} else {
user = nostrWellKnown{Names: names}
}
jsonUser, _ := json.Marshal(user)
2023-05-01 22:41:28 +00:00
redisCli := redis.NostrRedisConn
2023-02-05 01:43:38 +00:00
nameKey := getRkey("verified", n.Name, n.Hostname)
2023-04-29 19:25:28 +00:00
enc := b64.StdEncoding.EncodeToString([]byte(jsonUser))
err = redisCli.Client.Set(ctx, nameKey, enc, 0).Err()
if err != nil {
2023-04-29 18:01:40 +00:00
l.Error().Msg("unable to connect to redis")
}
}
2023-02-03 04:56:15 +00:00
func getHostname(hostname string) string {
// remove port for local testing
return hostname
2023-02-03 04:56:15 +00:00
}
2023-02-04 22:46:13 +00:00
func convertNpubToHex(npub string) (string, error) {
if !strings.HasPrefix(npub, "npub1") {
return "", errors.New("Not an npub key")
2023-02-03 04:56:15 +00:00
}
_, hex, err := nip19.Decode(npub)
if err != nil {
2023-02-05 03:39:01 +00:00
return "", errors.New("Unable to decode npub")
}
return hex.(string), nil
}
2023-02-04 23:52:50 +00:00
2023-02-05 01:43:38 +00:00
func getRkey(prefix string, user string, hostname string) string {
2023-02-04 23:52:50 +00:00
if strings.Contains(hostname, ":") {
hostname = strings.Split(hostname, ":")[0]
}
2023-02-05 01:43:38 +00:00
return fmt.Sprintf("%s:%s@%s", prefix, user, hostname)
2023-02-04 23:52:50 +00:00
}