62 lines
1.4 KiB
Go
62 lines
1.4 KiB
Go
package nostr
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type Pointer interface {
|
|
AsTagReference() string
|
|
AsTag() Tag
|
|
}
|
|
|
|
type ProfilePointer struct {
|
|
PublicKey string `json:"pubkey"`
|
|
Relays []string `json:"relays,omitempty"`
|
|
}
|
|
|
|
func (ep ProfilePointer) AsTagReference() string { return ep.PublicKey }
|
|
|
|
func (ep ProfilePointer) AsTag() Tag {
|
|
if len(ep.Relays) > 0 {
|
|
return Tag{"p", ep.PublicKey, ep.Relays[0]}
|
|
}
|
|
return Tag{"p", ep.PublicKey}
|
|
}
|
|
|
|
type EventPointer struct {
|
|
ID string `json:"id"`
|
|
Relays []string `json:"relays,omitempty"`
|
|
Author string `json:"author,omitempty"`
|
|
Kind int `json:"kind,omitempty"`
|
|
}
|
|
|
|
func (ep EventPointer) AsTagReference() string { return ep.ID }
|
|
|
|
func (ep EventPointer) AsTag() Tag {
|
|
if len(ep.Relays) > 0 {
|
|
if ep.Author != "" {
|
|
return Tag{"e", ep.ID, ep.Relays[0], ep.Author}
|
|
} else {
|
|
return Tag{"e", ep.ID, ep.Relays[0]}
|
|
}
|
|
}
|
|
return Tag{"e", ep.ID}
|
|
}
|
|
|
|
type EntityPointer struct {
|
|
PublicKey string `json:"pubkey"`
|
|
Kind int `json:"kind,omitempty"`
|
|
Identifier string `json:"identifier,omitempty"`
|
|
Relays []string `json:"relays,omitempty"`
|
|
}
|
|
|
|
func (ep EntityPointer) AsTagReference() string {
|
|
return fmt.Sprintf("%d:%s:%s", ep.Kind, ep.PublicKey, ep.Identifier)
|
|
}
|
|
|
|
func (ep EntityPointer) AsTag() Tag {
|
|
if len(ep.Relays) > 0 {
|
|
return Tag{"a", ep.AsTagReference(), ep.Relays[0]}
|
|
}
|
|
return Tag{"a", ep.AsTagReference()}
|
|
}
|