mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-05 00:08:06 +08:00
48 lines
1.0 KiB
Go
48 lines
1.0 KiB
Go
package peer
|
|
|
|
import (
|
|
u "github.com/jbenet/go-ipfs/util"
|
|
ma "github.com/jbenet/go-multiaddr"
|
|
mh "github.com/jbenet/go-multihash"
|
|
)
|
|
|
|
// ID is a byte slice representing the identity of a peer.
|
|
type ID mh.Multihash
|
|
|
|
// Map maps Key (string) : *Peer (slices are not comparable).
|
|
type Map map[u.Key]*Peer
|
|
|
|
// Peer represents the identity information of an IPFS Node, including
|
|
// ID, and relevant Addresses.
|
|
type Peer struct {
|
|
ID ID
|
|
Addresses []*ma.Multiaddr
|
|
}
|
|
|
|
// Key returns the ID as a Key (string) for maps.
|
|
func (p *Peer) Key() u.Key {
|
|
return u.Key(p.ID)
|
|
}
|
|
|
|
// AddAddress adds the given Multiaddr address to Peer's addresses.
|
|
func (p *Peer) AddAddress(a *ma.Multiaddr) {
|
|
p.Addresses = append(p.Addresses, a)
|
|
}
|
|
|
|
// NetAddress returns the first Multiaddr found for a given network.
|
|
func (p *Peer) NetAddress(n string) *ma.Multiaddr {
|
|
for _, a := range p.Addresses {
|
|
ps, err := a.Protocols()
|
|
if err != nil {
|
|
continue // invalid addr
|
|
}
|
|
|
|
for _, p := range ps {
|
|
if p.Name == n {
|
|
return a
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|