forked from stellar/go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransaction_envelope.go
122 lines (99 loc) · 2.99 KB
/
transaction_envelope.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
package build
import (
"bytes"
"encoding/base64"
"fmt"
"github.com/stellar/go/keypair"
"github.com/stellar/go/support/errors"
"github.com/stellar/go/xdr"
)
// TransactionEnvelopeMutator is a interface that wraps the
// MutateTransactionEnvelope operation. types may implement this interface to
// specify how they modify an xdr.TransactionEnvelope object
type TransactionEnvelopeMutator interface {
MutateTransactionEnvelope(*TransactionEnvelopeBuilder) error
}
// TransactionEnvelopeBuilder helps you build a TransactionEnvelope
type TransactionEnvelopeBuilder struct {
E *xdr.TransactionEnvelope
child *TransactionBuilder
}
func (b *TransactionEnvelopeBuilder) Init() {
if b.E == nil {
b.E = &xdr.TransactionEnvelope{}
}
if b.child == nil {
b.child = &TransactionBuilder{TX: &b.E.Tx}
}
}
// Mutate applies the provided TransactionEnvelopeMutators to this builder's
// envelope
func (b *TransactionEnvelopeBuilder) Mutate(muts ...TransactionEnvelopeMutator) error {
b.Init()
for i, m := range muts {
err := m.MutateTransactionEnvelope(b)
if err != nil {
return errors.Wrap(err, fmt.Sprintf("mutator:%d failed", i))
}
}
return nil
}
// MutateTX runs Mutate on the underlying transaction using the provided
// mutators.
func (b *TransactionEnvelopeBuilder) MutateTX(muts ...TransactionMutator) error {
b.Init()
err := b.child.Mutate(muts...)
if err != nil {
return err
}
return nil
}
// Bytes encodes the builder's underlying envelope to XDR
func (b *TransactionEnvelopeBuilder) Bytes() ([]byte, error) {
var txBytes bytes.Buffer
_, err := xdr.Marshal(&txBytes, b.E)
if err != nil {
return nil, errors.Wrap(err, "marshal xdr failed")
}
return txBytes.Bytes(), nil
}
// Base64 returns a string which is the xdr-then-base64-encoded form
// of the builder's underlying transaction envelope
func (b *TransactionEnvelopeBuilder) Base64() (string, error) {
bs, err := b.Bytes()
if err != nil {
return "", errors.Wrap(err, "get raw bytes failed")
}
return base64.StdEncoding.EncodeToString(bs), nil
}
// ------------------------------------------------------------
//
// Mutator implementations
//
// ------------------------------------------------------------
// MutateTransactionEnvelope adds a signature to the provided envelope
func (m Sign) MutateTransactionEnvelope(txe *TransactionEnvelopeBuilder) error {
hash, err := txe.child.Hash()
if err != nil {
return errors.Wrap(err, "hash tx failed")
}
kp, err := keypair.Parse(m.Seed)
if err != nil {
return errors.Wrap(err, "parse failed")
}
sig, err := kp.SignDecorated(hash[:])
if err != nil {
return errors.Wrap(err, "sign tx failed")
}
txe.E.Signatures = append(txe.E.Signatures, sig)
return nil
}
// MutateTransactionEnvelope for TransactionBuilder causes the underylying
// transaction to be set as the provided envelope's Tx field
func (m *TransactionBuilder) MutateTransactionEnvelope(txe *TransactionEnvelopeBuilder) error {
txe.E.Tx = *m.TX
newChild := *m
txe.child = &newChild
m.TX = &txe.E.Tx
return nil
}