go-nostr/event.go

127 lines
3.1 KiB
Go
Raw Permalink Normal View History

2022-01-02 08:44:18 -03:00
package nostr
2021-01-31 11:05:09 -03:00
import (
"crypto/sha256"
"encoding/hex"
"fmt"
"time"
2021-01-31 11:05:09 -03:00
"github.com/btcsuite/btcd/btcec/v2"
"github.com/btcsuite/btcd/btcec/v2/schnorr"
"github.com/valyala/fastjson"
2021-01-31 11:05:09 -03:00
)
type Event struct {
ID string
PubKey string
CreatedAt time.Time
Kind int
Tags Tags
Content string
Sig string
// anything here will be mashed together with the main event object when serializing
extra map[string]any
}
2021-01-31 11:05:09 -03:00
const (
2021-11-28 16:36:42 -03:00
KindSetMetadata int = 0
KindTextNote int = 1
KindRecommendServer int = 2
KindContactList int = 3
KindEncryptedDirectMessage int = 4
2022-01-01 14:14:59 -03:00
KindDeletion int = 5
2022-11-04 08:03:17 -03:00
KindBoost int = 6
KindReaction int = 7
KindChannelCreation int = 40
KindChannelMetadata int = 41
KindChannelMessage int = 42
KindChannelHideMessage int = 43
KindChannelMuteUser int = 44
2021-01-31 11:05:09 -03:00
)
// GetID serializes and returns the event ID as a string
func (evt *Event) GetID() string {
h := sha256.Sum256(evt.Serialize())
return hex.EncodeToString(h[:])
}
2021-01-31 11:05:09 -03:00
// Serialize outputs a byte array that can be hashed/signed to identify/authenticate
func (evt *Event) Serialize() []byte {
// the serialization process is just putting everything into a JSON array
// so the order is kept
var arena fastjson.Arena
arr := arena.NewArray()
2021-01-31 11:05:09 -03:00
// version: 0
arr.SetArrayItem(0, arena.NewNumberInt(0))
2021-01-31 11:05:09 -03:00
// pubkey
arr.SetArrayItem(1, arena.NewString(evt.PubKey))
2021-01-31 11:05:09 -03:00
// created_at
arr.SetArrayItem(2, arena.NewNumberInt(int(evt.CreatedAt.Unix())))
2021-01-31 11:05:09 -03:00
// kind
arr.SetArrayItem(3, arena.NewNumberInt(evt.Kind))
2021-01-31 11:05:09 -03:00
// tags
arr.SetArrayItem(4, tagsToFastjsonArray(&arena, evt.Tags))
2021-01-31 11:05:09 -03:00
// content
arr.SetArrayItem(5, arena.NewString(evt.Content))
2021-02-21 21:42:28 -06:00
return arr.MarshalTo(nil)
2021-01-31 11:05:09 -03:00
}
// CheckSignature checks if the signature is valid for the id
// (which is a hash of the serialized event content).
// returns an error if the signature itself is invalid.
func (evt Event) CheckSignature() (bool, error) {
// read and check pubkey
pk, err := hex.DecodeString(evt.PubKey)
2021-01-31 11:05:09 -03:00
if err != nil {
return false, fmt.Errorf("event pubkey '%s' is invalid hex: %w", evt.PubKey, err)
2021-01-31 11:05:09 -03:00
}
pubkey, err := schnorr.ParsePubKey(pk)
if err != nil {
return false, fmt.Errorf("event has invalid pubkey '%s': %w", evt.PubKey, err)
}
// read signature
s, err := hex.DecodeString(evt.Sig)
2021-01-31 11:05:09 -03:00
if err != nil {
return false, fmt.Errorf("signature '%s' is invalid hex: %w", evt.Sig, err)
2021-01-31 11:05:09 -03:00
}
sig, err := schnorr.ParseSignature(s)
if err != nil {
return false, fmt.Errorf("failed to parse signature: %w", err)
2021-01-31 11:05:09 -03:00
}
// check signature
hash := sha256.Sum256(evt.Serialize())
return sig.Verify(hash[:], pubkey), nil
2021-01-31 11:05:09 -03:00
}
// Sign signs an event with a given privateKey
2021-02-07 07:56:55 -03:00
func (evt *Event) Sign(privateKey string) error {
2021-01-31 11:05:09 -03:00
h := sha256.Sum256(evt.Serialize())
s, err := hex.DecodeString(privateKey)
if err != nil {
return fmt.Errorf("Sign called with invalid private key '%s': %w", privateKey, err)
2021-01-31 11:05:09 -03:00
}
sk, _ := btcec.PrivKeyFromBytes(s)
2021-01-31 11:05:09 -03:00
sig, err := schnorr.Sign(sk, h[:])
2021-01-31 11:05:09 -03:00
if err != nil {
return err
}
2021-02-07 07:56:55 -03:00
evt.ID = hex.EncodeToString(h[:])
evt.Sig = hex.EncodeToString(sig.Serialize())
2021-01-31 11:05:09 -03:00
return nil
}