30 lines
1.2 KiB
Go
30 lines
1.2 KiB
Go
|
package protocol
|
||
|
|
||
|
import (
|
||
|
"git.lumeweb.com/LumeWeb/libs5-go/encoding"
|
||
|
"git.lumeweb.com/LumeWeb/libs5-go/net"
|
||
|
"git.lumeweb.com/LumeWeb/libs5-go/storage"
|
||
|
"git.lumeweb.com/LumeWeb/libs5-go/structs"
|
||
|
"git.lumeweb.com/LumeWeb/libs5-go/types"
|
||
|
"net/url"
|
||
|
)
|
||
|
|
||
|
type Mediator interface {
|
||
|
NetworkId() string
|
||
|
NodeId() *encoding.NodeId
|
||
|
SelfConnectionUris() []*url.URL
|
||
|
SignMessageSimple(message []byte) ([]byte, error)
|
||
|
GetCachedStorageLocations(hash *encoding.Multihash, kinds []types.StorageLocationType) (map[string]storage.StorageLocation, error)
|
||
|
SortNodesByScore(nodes []*encoding.NodeId) ([]*encoding.NodeId, error)
|
||
|
ProviderStore() storage.ProviderStore
|
||
|
AddStorageLocation(hash *encoding.Multihash, nodeId *encoding.NodeId, location storage.StorageLocation, message []byte) error
|
||
|
HashQueryRoutingTable() structs.Map
|
||
|
Peers() structs.Map
|
||
|
RegistrySet(sre SignedRegistryEntry, trusted bool, receivedFrom net.Peer) error
|
||
|
RegistryGet(pk []byte) (SignedRegistryEntry, error)
|
||
|
ConnectToNode(connectionUris []*url.URL, retried bool, fromPeer net.Peer) error
|
||
|
ServicesStarted() bool
|
||
|
AddPeer(peer net.Peer) error
|
||
|
SendPublicPeersToPeer(peer net.Peer, peersToSend []net.Peer) error
|
||
|
}
|