forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate_passive_offer.go
99 lines (86 loc) · 3.12 KB
/
create_passive_offer.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
package txnbuild
import (
"github.com/stellar/go/amount"
"github.com/stellar/go/support/errors"
"github.com/stellar/go/xdr"
)
// CreatePassiveSellOffer represents the Stellar create passive offer operation. See
// https://www.stellar.org/developers/guides/concepts/list-of-operations.html
type CreatePassiveSellOffer struct {
Selling Asset
Buying Asset
Amount string
Price string
price price
SourceAccount string
}
// BuildXDR for CreatePassiveSellOffer returns a fully configured XDR Operation.
func (cpo *CreatePassiveSellOffer) BuildXDR(withMuxedAccounts bool) (xdr.Operation, error) {
xdrSelling, err := cpo.Selling.ToXDR()
if err != nil {
return xdr.Operation{}, errors.Wrap(err, "failed to set XDR 'Selling' field")
}
xdrBuying, err := cpo.Buying.ToXDR()
if err != nil {
return xdr.Operation{}, errors.Wrap(err, "failed to set XDR 'Buying' field")
}
xdrAmount, err := amount.Parse(cpo.Amount)
if err != nil {
return xdr.Operation{}, errors.Wrap(err, "failed to parse 'Amount'")
}
if err = cpo.price.parse(cpo.Price); err != nil {
return xdr.Operation{}, errors.Wrap(err, "failed to parse 'Price'")
}
xdrOp := xdr.CreatePassiveSellOfferOp{
Selling: xdrSelling,
Buying: xdrBuying,
Amount: xdrAmount,
Price: cpo.price.toXDR(),
}
opType := xdr.OperationTypeCreatePassiveSellOffer
body, err := xdr.NewOperationBody(opType, xdrOp)
if err != nil {
return xdr.Operation{}, errors.Wrap(err, "failed to build XDR OperationBody")
}
op := xdr.Operation{Body: body}
if withMuxedAccounts {
SetOpSourceMuxedAccount(&op, cpo.SourceAccount)
} else {
SetOpSourceAccount(&op, cpo.SourceAccount)
}
return op, nil
}
// FromXDR for CreatePassiveSellOffer initialises the txnbuild struct from the corresponding xdr Operation.
func (cpo *CreatePassiveSellOffer) FromXDR(xdrOp xdr.Operation, withMuxedAccounts bool) error {
result, ok := xdrOp.Body.GetCreatePassiveSellOfferOp()
if !ok {
return errors.New("error parsing create_passive_sell_offer operation from xdr")
}
cpo.SourceAccount = accountFromXDR(xdrOp.SourceAccount, withMuxedAccounts)
cpo.Amount = amount.String(result.Amount)
if result.Price != (xdr.Price{}) {
cpo.price.fromXDR(result.Price)
cpo.Price = cpo.price.string()
}
buyingAsset, err := assetFromXDR(result.Buying)
if err != nil {
return errors.Wrap(err, "error parsing buying_asset in create_passive_sell_offer operation")
}
cpo.Buying = buyingAsset
sellingAsset, err := assetFromXDR(result.Selling)
if err != nil {
return errors.Wrap(err, "error parsing selling_asset in create_passive_sell_offer operation")
}
cpo.Selling = sellingAsset
return nil
}
// Validate for CreatePassiveSellOffer validates the required struct fields. It returns an error if any
// of the fields are invalid. Otherwise, it returns nil.
func (cpo *CreatePassiveSellOffer) Validate(withMuxedAccounts bool) error {
return validatePassiveOffer(cpo.Buying, cpo.Selling, cpo.Amount, cpo.Price)
}
// GetSourceAccount returns the source account of the operation, or the empty string if not
// set.
func (cpo *CreatePassiveSellOffer) GetSourceAccount() string {
return cpo.SourceAccount
}