2019-07-09 13:35:32 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2020-08-20 08:18:05 +00:00
|
|
|
"fmt"
|
2021-03-08 22:49:53 +00:00
|
|
|
"time"
|
2020-08-18 23:26:21 +00:00
|
|
|
|
|
|
|
datatransfer "github.com/filecoin-project/go-data-transfer"
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2020-08-18 23:26:21 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2019-07-09 15:19:27 +00:00
|
|
|
|
2020-06-03 01:13:49 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
2020-07-31 08:27:22 +00:00
|
|
|
pubsub "github.com/libp2p/go-libp2p-pubsub"
|
2019-07-09 13:35:32 +00:00
|
|
|
ma "github.com/multiformats/go-multiaddr"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TODO: check if this exists anywhere else
|
2020-05-27 20:53:20 +00:00
|
|
|
|
2019-07-09 13:35:32 +00:00
|
|
|
type MultiaddrSlice []ma.Multiaddr
|
|
|
|
|
|
|
|
func (m *MultiaddrSlice) UnmarshalJSON(raw []byte) (err error) {
|
|
|
|
var temp []string
|
|
|
|
if err := json.Unmarshal(raw, &temp); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
res := make([]ma.Multiaddr, len(temp))
|
|
|
|
for i, str := range temp {
|
|
|
|
res[i], err = ma.NewMultiaddr(str)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*m = res
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ json.Unmarshaler = new(MultiaddrSlice)
|
2020-03-04 23:52:28 +00:00
|
|
|
|
|
|
|
type ObjStat struct {
|
|
|
|
Size uint64
|
|
|
|
Links uint64
|
|
|
|
}
|
2020-06-03 01:13:49 +00:00
|
|
|
|
|
|
|
type PubsubScore struct {
|
|
|
|
ID peer.ID
|
2020-07-31 08:27:22 +00:00
|
|
|
Score *pubsub.PeerScoreSnapshot
|
2020-06-03 01:13:49 +00:00
|
|
|
}
|
2020-06-09 23:08:43 +00:00
|
|
|
|
2020-08-12 20:17:21 +00:00
|
|
|
type MessageSendSpec struct {
|
|
|
|
MaxFee abi.TokenAmount
|
|
|
|
}
|
|
|
|
|
2020-08-18 23:26:21 +00:00
|
|
|
type DataTransferChannel struct {
|
|
|
|
TransferID datatransfer.TransferID
|
|
|
|
Status datatransfer.Status
|
|
|
|
BaseCID cid.Cid
|
|
|
|
IsInitiator bool
|
|
|
|
IsSender bool
|
2020-08-19 00:36:22 +00:00
|
|
|
Voucher string
|
2020-08-18 23:26:21 +00:00
|
|
|
Message string
|
|
|
|
OtherPeer peer.ID
|
|
|
|
Transferred uint64
|
2021-03-10 12:25:52 +00:00
|
|
|
Stages *datatransfer.ChannelStages
|
2020-08-18 23:26:21 +00:00
|
|
|
}
|
2020-08-20 08:18:05 +00:00
|
|
|
|
|
|
|
// NewDataTransferChannel constructs an API DataTransferChannel type from full channel state snapshot and a host id
|
|
|
|
func NewDataTransferChannel(hostID peer.ID, channelState datatransfer.ChannelState) DataTransferChannel {
|
|
|
|
channel := DataTransferChannel{
|
|
|
|
TransferID: channelState.TransferID(),
|
|
|
|
Status: channelState.Status(),
|
|
|
|
BaseCID: channelState.BaseCID(),
|
|
|
|
IsSender: channelState.Sender() == hostID,
|
|
|
|
Message: channelState.Message(),
|
|
|
|
}
|
|
|
|
stringer, ok := channelState.Voucher().(fmt.Stringer)
|
|
|
|
if ok {
|
|
|
|
channel.Voucher = stringer.String()
|
|
|
|
} else {
|
|
|
|
voucherJSON, err := json.Marshal(channelState.Voucher())
|
|
|
|
if err != nil {
|
|
|
|
channel.Voucher = fmt.Errorf("Voucher Serialization: %w", err).Error()
|
|
|
|
} else {
|
|
|
|
channel.Voucher = string(voucherJSON)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if channel.IsSender {
|
|
|
|
channel.IsInitiator = !channelState.IsPull()
|
|
|
|
channel.Transferred = channelState.Sent()
|
|
|
|
channel.OtherPeer = channelState.Recipient()
|
|
|
|
} else {
|
|
|
|
channel.IsInitiator = channelState.IsPull()
|
|
|
|
channel.Transferred = channelState.Received()
|
|
|
|
channel.OtherPeer = channelState.Sender()
|
|
|
|
}
|
|
|
|
return channel
|
|
|
|
}
|
2020-11-13 19:11:17 +00:00
|
|
|
|
|
|
|
type NetBlockList struct {
|
|
|
|
Peers []peer.ID
|
|
|
|
IPAddrs []string
|
|
|
|
IPSubnets []string
|
|
|
|
}
|
2021-03-06 17:14:13 +00:00
|
|
|
|
|
|
|
type ExtendedPeerInfo struct {
|
2021-03-08 22:49:53 +00:00
|
|
|
ID peer.ID
|
|
|
|
Agent string
|
|
|
|
Addrs []string
|
|
|
|
Protocols []string
|
|
|
|
ConnMgrMeta *ConnMgrInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
type ConnMgrInfo struct {
|
|
|
|
FirstSeen time.Time
|
|
|
|
Value int
|
|
|
|
Tags map[string]int
|
|
|
|
Conns map[string]time.Time
|
2021-03-06 17:14:13 +00:00
|
|
|
}
|
2021-03-10 17:22:35 +00:00
|
|
|
|
|
|
|
type NodeStatus struct {
|
|
|
|
SyncStatus NodeSyncStatus
|
|
|
|
PeerStatus NodePeerStatus
|
|
|
|
ChainStatus NodeChainStatus
|
|
|
|
}
|
|
|
|
|
|
|
|
type NodeSyncStatus struct {
|
|
|
|
Epoch uint64
|
|
|
|
Behind uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
type NodePeerStatus struct {
|
|
|
|
PeersToPublishMsgs int
|
|
|
|
PeersToPublishBlocks int
|
|
|
|
}
|
|
|
|
|
|
|
|
type NodeChainStatus struct {
|
|
|
|
BlocksPerTipsetLast100 float64
|
|
|
|
BlocksPerTipsetLastFinality float64
|
|
|
|
}
|
2021-03-12 15:10:12 +00:00
|
|
|
|
|
|
|
type CheckStatusCode int
|
|
|
|
|
|
|
|
//go:generate go run golang.org/x/tools/cmd/stringer -type=CheckStatusCode -trimprefix=CheckStatus
|
|
|
|
const (
|
|
|
|
_ CheckStatusCode = iota
|
|
|
|
// Message Checks
|
|
|
|
CheckStatusMessageSerialize
|
|
|
|
CheckStatusMessageSize
|
|
|
|
CheckStatusMessageValidity
|
|
|
|
CheckStatusMessageMinGas
|
|
|
|
CheckStatusMessageMinBaseFee
|
|
|
|
CheckStatusMessageBaseFee
|
|
|
|
CheckStatusMessageBaseFeeLowerBound
|
|
|
|
CheckStatusMessageBaseFeeUpperBound
|
|
|
|
CheckStatusMessageGetStateNonce
|
|
|
|
CheckStatusMessageNonce
|
|
|
|
CheckStatusMessageGetStateBalance
|
|
|
|
CheckStatusMessageBalance
|
|
|
|
)
|
|
|
|
|
|
|
|
type CheckStatus struct {
|
|
|
|
Code CheckStatusCode
|
|
|
|
OK bool
|
|
|
|
Err string
|
|
|
|
Hint map[string]interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type MessageCheckStatus struct {
|
|
|
|
Cid cid.Cid
|
|
|
|
CheckStatus
|
|
|
|
}
|