forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.go
155 lines (134 loc) · 3.63 KB
/
payment.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package build
import (
"github.com/stellar/go/amount"
"github.com/stellar/go/support/errors"
"github.com/stellar/go/xdr"
)
// Payment groups the creation of a new PaymentBuilder with a call to Mutate.
// Requires the Destination and NativeAmount mutators to be set.
func Payment(muts ...interface{}) (result PaymentBuilder) {
result.Mutate(muts...)
return
}
// PaymentMutator is a interface that wraps the
// MutatePayment operation. types may implement this interface to
// specify how they modify an xdr.PaymentOp object
type PaymentMutator interface {
MutatePayment(interface{}) error
}
// PaymentBuilder represents a transaction that is being built.
type PaymentBuilder struct {
PathPayment bool
O xdr.Operation
P xdr.PaymentOp
PP xdr.PathPaymentOp
Err error
}
// Mutate applies the provided mutators to this builder's payment or operation.
func (b *PaymentBuilder) Mutate(muts ...interface{}) {
for _, m := range muts {
if _, ok := m.(PayWithPath); ok {
b.PathPayment = true
break
}
}
for _, m := range muts {
var err error
switch mut := m.(type) {
case PaymentMutator:
if b.PathPayment {
err = mut.MutatePayment(&b.PP)
} else {
err = mut.MutatePayment(&b.P)
}
case OperationMutator:
err = mut.MutateOperation(&b.O)
default:
err = errors.New("Mutator type not allowed")
}
if err != nil {
b.Err = errors.Wrap(err, "PaymentBuilder error")
return
}
}
}
// MutatePayment for Asset sets the PaymentOp's Asset field
func (m CreditAmount) MutatePayment(o interface{}) (err error) {
switch o := o.(type) {
default:
err = errors.New("Unexpected operation type")
case *xdr.PaymentOp:
o.Amount, err = amount.Parse(m.Amount)
if err != nil {
return
}
o.Asset, err = createAlphaNumAsset(m.Code, m.Issuer)
case *xdr.PathPaymentOp:
o.DestAmount, err = amount.Parse(m.Amount)
if err != nil {
return
}
o.DestAsset, err = createAlphaNumAsset(m.Code, m.Issuer)
}
return
}
// MutatePayment for Destination sets the PaymentOp's Destination field
func (m Destination) MutatePayment(o interface{}) error {
switch o := o.(type) {
default:
return errors.New("Unexpected operation type")
case *xdr.PaymentOp:
return setAccountId(m.AddressOrSeed, &o.Destination)
case *xdr.PathPaymentOp:
return setAccountId(m.AddressOrSeed, &o.Destination)
}
}
// MutatePayment for NativeAmount sets the PaymentOp's currency field to
// native and sets its amount to the provided integer
func (m NativeAmount) MutatePayment(o interface{}) (err error) {
switch o := o.(type) {
default:
err = errors.New("Unexpected operation type")
case *xdr.PaymentOp:
o.Amount, err = amount.Parse(m.Amount)
if err != nil {
return
}
o.Asset, err = xdr.NewAsset(xdr.AssetTypeAssetTypeNative, nil)
case *xdr.PathPaymentOp:
o.DestAmount, err = amount.Parse(m.Amount)
if err != nil {
return
}
o.DestAsset, err = xdr.NewAsset(xdr.AssetTypeAssetTypeNative, nil)
}
return
}
// MutatePayment for PayWithPath sets the PathPaymentOp's SendAsset,
// SendMax and Path fields
func (m PayWithPath) MutatePayment(o interface{}) (err error) {
var pathPaymentOp *xdr.PathPaymentOp
var ok bool
if pathPaymentOp, ok = o.(*xdr.PathPaymentOp); !ok {
return errors.New("Unexpected operation type")
}
// MaxAmount
pathPaymentOp.SendMax, err = amount.Parse(m.MaxAmount)
if err != nil {
return
}
// Path
var path []xdr.Asset
var xdrAsset xdr.Asset
for _, asset := range m.Path {
xdrAsset, err = asset.ToXDR()
if err != nil {
return err
}
path = append(path, xdrAsset)
}
pathPaymentOp.Path = path
// Asset
pathPaymentOp.SendAsset, err = m.Asset.ToXDR()
return
}