mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-04-03 09:28:14 +02:00
nson: test encoder with events from the wild.
This commit is contained in:
parent
6f03e6b82c
commit
7ba3844a6f
@ -45,7 +45,7 @@ const (
|
||||
var NotNSON = fmt.Errorf("not nson")
|
||||
|
||||
// Unmarshal turns a NSON string into a nostr.Event struct
|
||||
func Unmarshal(data string) (evt *nostr.Event, err error) {
|
||||
func Unmarshal(data string, evt *nostr.Event) (err error) {
|
||||
defer func() {
|
||||
if r := recover(); r != nil {
|
||||
err = fmt.Errorf("failed to decode nson: %v", r)
|
||||
@ -54,14 +54,12 @@ func Unmarshal(data string) (evt *nostr.Event, err error) {
|
||||
|
||||
// check if it's nson
|
||||
if data[NSON_MARKER_START:NSON_MARKER_END] != ",\"nson\":" {
|
||||
return nil, NotNSON
|
||||
return NotNSON
|
||||
}
|
||||
|
||||
// nson values
|
||||
nsonSize, nsonDescriptors := parseDescriptors(data)
|
||||
|
||||
evt = &nostr.Event{}
|
||||
|
||||
// static fields
|
||||
evt.ID = data[ID_START:ID_END]
|
||||
evt.PubKey = data[PUBKEY_START:PUBKEY_END]
|
||||
@ -104,7 +102,7 @@ func Unmarshal(data string) (evt *nostr.Event, err error) {
|
||||
evt.Tags[t] = tag
|
||||
}
|
||||
|
||||
return evt, err
|
||||
return err
|
||||
}
|
||||
|
||||
func Marshal(evt nostr.Event) (string, error) {
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user