2021-06-16 10:14:22 +00:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2021-10-28 19:26:25 +00:00
|
|
|
"math/rand"
|
2021-06-16 10:14:22 +00:00
|
|
|
|
|
|
|
logging "github.com/ipfs/go-log"
|
|
|
|
"github.com/libp2p/go-libp2p-core/host"
|
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
|
|
)
|
|
|
|
|
|
|
|
var log = logging.Logger("utils")
|
|
|
|
|
2021-10-28 19:26:25 +00:00
|
|
|
// SelectPeer is used to return a random peer that supports a given protocol.
|
2021-06-16 10:14:22 +00:00
|
|
|
func SelectPeer(host host.Host, protocolId string) (*peer.ID, error) {
|
|
|
|
// @TODO We need to be more strategic about which peers we dial. Right now we just set one on the service.
|
|
|
|
// Ideally depending on the query and our set of peers we take a subset of ideal peers.
|
|
|
|
// This will require us to check for various factors such as:
|
|
|
|
// - which topics they track
|
|
|
|
// - latency?
|
|
|
|
// - default store peer?
|
|
|
|
var peers peer.IDSlice
|
|
|
|
for _, peer := range host.Peerstore().Peers() {
|
|
|
|
protocols, err := host.Peerstore().SupportsProtocols(peer, protocolId)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("error obtaining the protocols supported by peers", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(protocols) > 0 {
|
|
|
|
peers = append(peers, peer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(peers) >= 1 {
|
2021-10-28 19:26:25 +00:00
|
|
|
// TODO: proper heuristic here that compares peer scores and selects "best" one. For now a random peer for the given protocol is returned
|
|
|
|
return &peers[rand.Intn(len(peers))], nil // nolint: gosec
|
2021-06-16 10:14:22 +00:00
|
|
|
}
|
|
|
|
|
2021-10-09 18:18:53 +00:00
|
|
|
return nil, errors.New("no suitable peers found")
|
2021-06-16 10:14:22 +00:00
|
|
|
}
|