mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-06-08 22:20:18 +02:00
64 lines
1.3 KiB
Go
64 lines
1.3 KiB
Go
package nip10
|
|
|
|
import "github.com/nbd-wtf/go-nostr"
|
|
|
|
func GetThreadRoot(tags nostr.Tags) *nostr.EventPointer {
|
|
for _, tag := range tags {
|
|
if len(tag) >= 4 && tag[0] == "e" && tag[3] == "root" {
|
|
p, _ := nostr.EventPointerFromTag(tag)
|
|
return &p
|
|
}
|
|
}
|
|
|
|
firstE := tags.Find("e")
|
|
if firstE != nil {
|
|
return &nostr.EventPointer{
|
|
ID: firstE[1],
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func GetImmediateParent(tags nostr.Tags) *nostr.EventPointer {
|
|
var parent nostr.Tag
|
|
var lastE nostr.Tag
|
|
|
|
for i := 0; i <= len(tags)-1; i++ {
|
|
tag := tags[i]
|
|
|
|
if len(tag) < 2 {
|
|
continue
|
|
}
|
|
if tag[0] != "e" && tag[0] != "a" {
|
|
continue
|
|
}
|
|
|
|
if len(tag) >= 4 {
|
|
if tag[3] == "reply" {
|
|
return &tag
|
|
}
|
|
if tag[3] == "root" {
|
|
// will be used as our first fallback
|
|
root = &tag
|
|
continue
|
|
}
|
|
if tag[3] == "mention" {
|
|
// this invalidates this tag as a second fallback mechanism (clients that don't add markers)
|
|
continue
|
|
}
|
|
}
|
|
|
|
lastE = &tag // will be used as our second fallback (clients that don't add markers)
|
|
}
|
|
|
|
// if we reached this point we don't have a "reply", but if we have a "root"
|
|
// that means this event is a direct reply to the root
|
|
if root != nil {
|
|
return root
|
|
}
|
|
|
|
// if we reached this point and we have at least one "e" we'll use that (the last)
|
|
return lastE
|
|
}
|