mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-08 17:25:13 +00:00
42 lines
940 B
Go
42 lines
940 B
Go
package admin
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"net"
|
|
"slices"
|
|
"strings"
|
|
|
|
"github.com/yggdrasil-network/yggdrasil-go/src/address"
|
|
)
|
|
|
|
type GetTreeRequest struct{}
|
|
|
|
type GetTreeResponse struct {
|
|
Tree []TreeEntry `json:"tree"`
|
|
}
|
|
|
|
type TreeEntry struct {
|
|
IPAddress string `json:"address"`
|
|
PublicKey string `json:"key"`
|
|
Parent string `json:"parent"`
|
|
Sequence uint64 `json:"sequence"`
|
|
}
|
|
|
|
func (a *AdminSocket) getTreeHandler(_ *GetTreeRequest, res *GetTreeResponse) error {
|
|
tree := a.core.GetTree()
|
|
res.Tree = make([]TreeEntry, 0, len(tree))
|
|
for _, d := range tree {
|
|
addr := address.AddrForKey(d.Key)
|
|
res.Tree = append(res.Tree, TreeEntry{
|
|
IPAddress: net.IP(addr[:]).String(),
|
|
PublicKey: hex.EncodeToString(d.Key[:]),
|
|
Parent: hex.EncodeToString(d.Parent[:]),
|
|
Sequence: d.Sequence,
|
|
})
|
|
}
|
|
slices.SortStableFunc(res.Tree, func(a, b TreeEntry) int {
|
|
return strings.Compare(a.PublicKey, b.PublicKey)
|
|
})
|
|
return nil
|
|
}
|