lotus/node/impl/paych/paych.go

160 lines
4.8 KiB
Go
Raw Normal View History

2019-09-16 13:46:05 +00:00
package paych
2019-08-20 16:48:33 +00:00
import (
"context"
2020-09-01 14:33:44 +00:00
"golang.org/x/xerrors"
2019-09-16 13:46:05 +00:00
"github.com/ipfs/go-cid"
"go.uber.org/fx"
"github.com/filecoin-project/go-address"
2020-09-21 23:01:29 +00:00
"github.com/filecoin-project/lotus/api"
"github.com/filecoin-project/lotus/chain/actors/builtin/paych"
"github.com/filecoin-project/lotus/chain/types"
"github.com/filecoin-project/lotus/paychmgr"
2019-08-20 16:48:33 +00:00
)
type PaychAPI struct {
fx.In
PaychMgr *paychmgr.Manager
2019-08-20 16:48:33 +00:00
}
2020-07-28 23:16:47 +00:00
func (a *PaychAPI) PaychGet(ctx context.Context, from, to address.Address, amt types.BigInt) (*api.ChannelInfo, error) {
ch, mcid, err := a.PaychMgr.GetPaych(ctx, from, to, amt)
2019-08-20 16:48:33 +00:00
if err != nil {
return nil, err
2019-08-20 16:48:33 +00:00
}
return &api.ChannelInfo{
Channel: ch,
WaitSentinel: mcid,
}, nil
}
func (a *PaychAPI) PaychAvailableFunds(ctx context.Context, ch address.Address) (*api.ChannelAvailableFunds, error) {
return a.PaychMgr.AvailableFunds(ch)
}
func (a *PaychAPI) PaychAvailableFundsByFromTo(ctx context.Context, from, to address.Address) (*api.ChannelAvailableFunds, error) {
return a.PaychMgr.AvailableFundsByFromTo(from, to)
2020-09-01 14:33:44 +00:00
}
func (a *PaychAPI) PaychGetWaitReady(ctx context.Context, sentinel cid.Cid) (address.Address, error) {
return a.PaychMgr.GetPaychWaitReady(ctx, sentinel)
2020-07-28 23:16:47 +00:00
}
2020-02-21 17:26:44 +00:00
func (a *PaychAPI) PaychAllocateLane(ctx context.Context, ch address.Address) (uint64, error) {
2019-09-16 13:46:05 +00:00
return a.PaychMgr.AllocateLane(ch)
}
2019-09-24 21:13:47 +00:00
func (a *PaychAPI) PaychNewPayment(ctx context.Context, from, to address.Address, vouchers []api.VoucherSpec) (*api.PaymentInfo, error) {
amount := vouchers[len(vouchers)-1].Amount
2019-09-16 17:23:48 +00:00
// TODO: Fix free fund tracking in PaychGet
2019-09-24 21:13:47 +00:00
// TODO: validate voucher spec before locking funds
2019-09-16 17:23:48 +00:00
ch, err := a.PaychGet(ctx, from, to, amount)
if err != nil {
return nil, err
}
2019-09-16 13:46:05 +00:00
lane, err := a.PaychMgr.AllocateLane(ch.Channel)
if err != nil {
return nil, err
}
svs := make([]*paych.SignedVoucher, len(vouchers))
2019-09-24 21:13:47 +00:00
for i, v := range vouchers {
sv, err := a.PaychMgr.CreateVoucher(ctx, ch.Channel, paych.SignedVoucher{
2019-09-24 21:13:47 +00:00
Amount: v.Amount,
2020-07-28 23:16:47 +00:00
Lane: lane,
2019-09-24 21:13:47 +00:00
2020-02-13 03:50:37 +00:00
Extra: v.Extra,
2020-02-27 21:45:31 +00:00
TimeLockMin: v.TimeLockMin,
TimeLockMax: v.TimeLockMax,
2020-02-13 03:50:37 +00:00
MinSettleHeight: v.MinSettle,
2019-09-24 21:13:47 +00:00
})
if err != nil {
return nil, err
}
2020-09-01 14:33:44 +00:00
if sv.Voucher == nil {
return nil, xerrors.Errorf("Could not create voucher - shortfall of %d", sv.Shortfall)
}
2019-09-24 21:13:47 +00:00
2020-09-01 14:33:44 +00:00
svs[i] = sv.Voucher
}
2019-09-24 21:13:47 +00:00
return &api.PaymentInfo{
Channel: ch.Channel,
WaitSentinel: ch.WaitSentinel,
Vouchers: svs,
}, nil
2019-08-20 16:48:33 +00:00
}
func (a *PaychAPI) PaychList(ctx context.Context) ([]address.Address, error) {
return a.PaychMgr.ListChannels()
}
func (a *PaychAPI) PaychStatus(ctx context.Context, pch address.Address) (*api.PaychStatus, error) {
2019-09-06 22:39:47 +00:00
ci, err := a.PaychMgr.GetChannelInfo(pch)
if err != nil {
return nil, err
}
return &api.PaychStatus{
ControlAddr: ci.Control,
2019-09-06 22:39:47 +00:00
Direction: api.PCHDir(ci.Direction),
}, nil
2019-08-20 16:48:33 +00:00
}
func (a *PaychAPI) PaychSettle(ctx context.Context, addr address.Address) (cid.Cid, error) {
2020-07-28 23:16:47 +00:00
return a.PaychMgr.Settle(ctx, addr)
2019-08-20 16:48:33 +00:00
}
func (a *PaychAPI) PaychCollect(ctx context.Context, addr address.Address) (cid.Cid, error) {
return a.PaychMgr.Collect(ctx, addr)
}
func (a *PaychAPI) PaychVoucherCheckValid(ctx context.Context, ch address.Address, sv *paych.SignedVoucher) error {
2019-08-20 16:48:33 +00:00
return a.PaychMgr.CheckVoucherValid(ctx, ch, sv)
}
func (a *PaychAPI) PaychVoucherCheckSpendable(ctx context.Context, ch address.Address, sv *paych.SignedVoucher, secret []byte, proof []byte) (bool, error) {
2019-08-20 16:48:33 +00:00
return a.PaychMgr.CheckVoucherSpendable(ctx, ch, sv, secret, proof)
}
func (a *PaychAPI) PaychVoucherAdd(ctx context.Context, ch address.Address, sv *paych.SignedVoucher, proof []byte, minDelta types.BigInt) (types.BigInt, error) {
return a.PaychMgr.AddVoucherInbound(ctx, ch, sv, proof, minDelta)
2019-08-20 16:48:33 +00:00
}
// PaychVoucherCreate creates a new signed voucher on the given payment channel
// with the given lane and amount. The value passed in is exactly the value
// that will be used to create the voucher, so if previous vouchers exist, the
// actual additional value of this voucher will only be the difference between
// the two.
2020-09-01 14:33:44 +00:00
// If there are insufficient funds in the channel to create the voucher,
// returns a nil voucher and the shortfall.
func (a *PaychAPI) PaychVoucherCreate(ctx context.Context, pch address.Address, amt types.BigInt, lane uint64) (*api.VoucherCreateResult, error) {
return a.PaychMgr.CreateVoucher(ctx, pch, paych.SignedVoucher{Amount: amt, Lane: lane})
2019-08-20 16:48:33 +00:00
}
func (a *PaychAPI) PaychVoucherList(ctx context.Context, pch address.Address) ([]*paych.SignedVoucher, error) {
2019-09-09 13:59:07 +00:00
vi, err := a.PaychMgr.ListVouchers(ctx, pch)
if err != nil {
return nil, err
}
out := make([]*paych.SignedVoucher, len(vi))
2019-09-09 13:59:07 +00:00
for k, v := range vi {
out[k] = v.Voucher
}
return out, nil
2019-08-20 16:48:33 +00:00
}
func (a *PaychAPI) PaychVoucherSubmit(ctx context.Context, ch address.Address, sv *paych.SignedVoucher, secret []byte, proof []byte) (cid.Cid, error) {
return a.PaychMgr.SubmitVoucher(ctx, ch, sv, secret, proof)
2019-08-20 16:48:33 +00:00
}