2019-09-16 13:46:05 +00:00
|
|
|
package paych
|
2019-08-20 16:48:33 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
2019-09-16 13:46:05 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"go.uber.org/fx"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2019-12-19 20:13:17 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
2020-08-12 17:06:08 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/paych"
|
|
|
|
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
full "github.com/filecoin-project/lotus/node/impl/full"
|
2020-02-13 00:28:23 +00:00
|
|
|
"github.com/filecoin-project/lotus/paychmgr"
|
2019-08-20 16:48:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type PaychAPI struct {
|
|
|
|
fx.In
|
|
|
|
|
2019-09-16 13:46:05 +00:00
|
|
|
full.MpoolAPI
|
|
|
|
full.WalletAPI
|
|
|
|
full.ChainAPI
|
2019-08-20 16:48:33 +00:00
|
|
|
|
2020-02-13 00:28:23 +00:00
|
|
|
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 {
|
2019-09-13 14:11:40 +00:00
|
|
|
return nil, err
|
2019-08-20 16:48:33 +00:00
|
|
|
}
|
|
|
|
|
2019-09-13 14:11:40 +00:00
|
|
|
return &api.ChannelInfo{
|
2020-08-11 14:45:45 +00:00
|
|
|
Channel: ch,
|
|
|
|
WaitSentinel: api.PaychWaitSentinel(mcid),
|
2019-09-13 14:11:40 +00:00
|
|
|
}, nil
|
2019-09-10 13:43:01 +00:00
|
|
|
}
|
|
|
|
|
2020-08-11 14:45:45 +00:00
|
|
|
func (a *PaychAPI) PaychGetWaitReady(ctx context.Context, sentinel api.PaychWaitSentinel) (address.Address, error) {
|
|
|
|
return a.PaychMgr.GetPaychWaitReady(ctx, cid.Cid(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)
|
2019-09-10 13:43:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-09-16 13:46:05 +00:00
|
|
|
lane, err := a.PaychMgr.AllocateLane(ch.Channel)
|
2019-09-10 13:43:01 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-02-25 21:09:22 +00:00
|
|
|
svs := make([]*paych.SignedVoucher, len(vouchers))
|
2019-09-10 13:43:01 +00:00
|
|
|
|
2019-09-24 21:13:47 +00:00
|
|
|
for i, v := range vouchers {
|
2020-02-25 21:09:22 +00:00
|
|
|
sv, err := a.paychVoucherCreate(ctx, ch.Channel, paych.SignedVoucher{
|
2020-07-15 09:12:03 +00:00
|
|
|
ChannelAddr: ch.Channel,
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
svs[i] = sv
|
2019-09-10 13:43:01 +00:00
|
|
|
}
|
2019-09-24 21:13:47 +00:00
|
|
|
|
2019-09-10 13:43:01 +00:00
|
|
|
return &api.PaymentInfo{
|
2020-08-11 14:45:45 +00:00
|
|
|
Channel: ch.Channel,
|
|
|
|
WaitSentinel: ch.WaitSentinel,
|
|
|
|
Vouchers: svs,
|
2019-09-10 13:43:01 +00:00
|
|
|
}, 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{
|
2019-09-10 13:43:01 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-07-18 03:07:02 +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
|
|
|
}
|
|
|
|
|
2020-07-18 03:07:02 +00:00
|
|
|
func (a *PaychAPI) PaychCollect(ctx context.Context, addr address.Address) (cid.Cid, error) {
|
2020-08-10 17:21:25 +00:00
|
|
|
return a.PaychMgr.Collect(ctx, addr)
|
2020-07-18 03:07:02 +00:00
|
|
|
}
|
|
|
|
|
2020-02-25 21:09:22 +00:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2020-02-25 21:09:22 +00:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2020-02-25 21:09:22 +00:00
|
|
|
func (a *PaychAPI) PaychVoucherAdd(ctx context.Context, ch address.Address, sv *paych.SignedVoucher, proof []byte, minDelta types.BigInt) (types.BigInt, error) {
|
2019-09-09 13:59:07 +00:00
|
|
|
_ = a.PaychMgr.TrackInboundChannel(ctx, ch) // TODO: expose those calls
|
2019-09-06 22:39:47 +00:00
|
|
|
|
2019-09-16 21:25:23 +00:00
|
|
|
return a.PaychMgr.AddVoucher(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-02-25 21:09:22 +00:00
|
|
|
func (a *PaychAPI) PaychVoucherCreate(ctx context.Context, pch address.Address, amt types.BigInt, lane uint64) (*paych.SignedVoucher, error) {
|
2020-07-15 09:12:03 +00:00
|
|
|
return a.paychVoucherCreate(ctx, pch, paych.SignedVoucher{ChannelAddr: pch, Amount: amt, Lane: lane})
|
2019-08-20 16:48:33 +00:00
|
|
|
}
|
|
|
|
|
2020-02-25 21:09:22 +00:00
|
|
|
func (a *PaychAPI) paychVoucherCreate(ctx context.Context, pch address.Address, voucher paych.SignedVoucher) (*paych.SignedVoucher, error) {
|
2019-08-20 16:48:33 +00:00
|
|
|
ci, err := a.PaychMgr.GetChannelInfo(pch)
|
|
|
|
if err != nil {
|
2019-11-04 19:03:11 +00:00
|
|
|
return nil, xerrors.Errorf("get channel info: %w", err)
|
2019-08-20 16:48:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nonce, err := a.PaychMgr.NextNonceForLane(ctx, pch, voucher.Lane)
|
|
|
|
if err != nil {
|
2019-11-04 19:03:11 +00:00
|
|
|
return nil, xerrors.Errorf("getting next nonce for lane: %w", err)
|
2019-08-20 16:48:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sv := &voucher
|
|
|
|
sv.Nonce = nonce
|
|
|
|
|
|
|
|
vb, err := sv.SigningBytes()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-09-10 13:43:01 +00:00
|
|
|
sig, err := a.WalletSign(ctx, ci.Control, vb)
|
2019-08-20 16:48:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
sv.Signature = sig
|
|
|
|
|
2019-09-16 21:25:23 +00:00
|
|
|
if _, err := a.PaychMgr.AddVoucher(ctx, pch, sv, nil, types.NewInt(0)); err != nil {
|
2019-08-20 16:48:33 +00:00
|
|
|
return nil, xerrors.Errorf("failed to persist voucher: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return sv, nil
|
|
|
|
}
|
|
|
|
|
2020-02-25 21:09:22 +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
|
|
|
|
}
|
|
|
|
|
2020-02-25 21:09:22 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-02-25 21:09:22 +00:00
|
|
|
func (a *PaychAPI) PaychVoucherSubmit(ctx context.Context, ch address.Address, sv *paych.SignedVoucher) (cid.Cid, error) {
|
2019-08-20 16:48:33 +00:00
|
|
|
ci, err := a.PaychMgr.GetChannelInfo(ch)
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if sv.Extra != nil || len(sv.SecretPreimage) > 0 {
|
|
|
|
return cid.Undef, fmt.Errorf("cant handle more advanced payment channel stuff yet")
|
|
|
|
}
|
|
|
|
|
2020-02-13 03:50:37 +00:00
|
|
|
enc, err := actors.SerializeParams(&paych.UpdateChannelStateParams{
|
2019-08-20 16:48:33 +00:00
|
|
|
Sv: *sv,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, err
|
|
|
|
}
|
|
|
|
|
|
|
|
msg := &types.Message{
|
2020-07-22 18:02:29 +00:00
|
|
|
From: ci.Control,
|
|
|
|
To: ch,
|
|
|
|
Value: types.NewInt(0),
|
|
|
|
Method: builtin.MethodsPaych.UpdateChannelState,
|
|
|
|
Params: enc,
|
2019-08-20 16:48:33 +00:00
|
|
|
}
|
|
|
|
|
2020-08-12 20:17:21 +00:00
|
|
|
smsg, err := a.MpoolPushMessage(ctx, msg, nil)
|
2019-08-20 16:48:33 +00:00
|
|
|
if err != nil {
|
|
|
|
return cid.Undef, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return smsg.Cid(), nil
|
|
|
|
}
|