This repository was archived by the owner on Apr 2, 2024. It is now read-only.
generated from mrz1836/go-template
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsync_tx_repository.go
183 lines (158 loc) · 4.44 KB
/
sync_tx_repository.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
package bux
import (
"context"
"encoding/hex"
"errors"
"github.com/libsv/go-bt/v2"
"github.com/mrz1836/go-datastore"
)
/*** exported funcs ***/
// GetSyncTransactionByID will get a sync transaction
func GetSyncTransactionByID(ctx context.Context, id string, opts ...ModelOps) (*SyncTransaction, error) {
// Get the records by status
txs, err := _getSyncTransactionsByConditions(ctx,
map[string]interface{}{
idField: id,
},
nil, opts...,
)
if err != nil {
return nil, err
}
if len(txs) != 1 {
return nil, nil
}
return txs[0], nil
}
// GetSyncTransactionByTxID will get a sync transaction by it's transaction id.
func GetSyncTransactionByTxID(ctx context.Context, txID string, opts ...ModelOps) (*SyncTransaction, error) {
// Get the records by status
txs, err := _getSyncTransactionsByConditions(ctx,
map[string]interface{}{
idField: txID,
},
nil, opts...,
)
if err != nil {
return nil, err
}
if len(txs) != 1 {
return nil, nil
}
return txs[0], nil
}
/*** /exported funcs ***/
/*** public unexported funcs ***/
// getTransactionsToBroadcast will get the sync transactions to broadcast
func getTransactionsToBroadcast(ctx context.Context, queryParams *datastore.QueryParams,
opts ...ModelOps,
) ([]*SyncTransaction, error) {
// Get the records by status
scTxs, err := _getSyncTransactionsByConditions(
ctx,
map[string]interface{}{
broadcastStatusField: SyncStatusReady.String(),
},
queryParams, opts...,
)
if err != nil {
return nil, err
} else if len(scTxs) == 0 {
return nil, nil
}
// hydrate and see if it's ready to sync
res := make([]*SyncTransaction, 0, len(scTxs))
for _, sTx := range scTxs {
// hydrate
sTx.transaction, err = getTransactionByID(
ctx, "", sTx.ID, opts...,
)
if err != nil {
return nil, err
} else if sTx.transaction == nil {
return nil, ErrMissingTransaction
}
parentsBroadcast, err := _areParentsBroadcasted(ctx, sTx.transaction, opts...)
if err != nil {
return nil, err
}
if !parentsBroadcast {
// if all parents are not broadcast, then we cannot broadcast this tx
continue
}
res = append(res, sTx)
}
return res, nil
}
// getTransactionsToSync will get the sync transactions to sync
func getTransactionsToSync(ctx context.Context, queryParams *datastore.QueryParams,
opts ...ModelOps,
) ([]*SyncTransaction, error) {
// Get the records by status
txs, err := _getSyncTransactionsByConditions(
ctx,
map[string]interface{}{
syncStatusField: SyncStatusReady.String(),
},
queryParams, opts...,
)
if err != nil {
return nil, err
}
return txs, nil
}
/*** /public unexported funcs ***/
// getTransactionsToSync will get the sync transactions to sync
func _getSyncTransactionsByConditions(ctx context.Context, conditions map[string]interface{},
queryParams *datastore.QueryParams, opts ...ModelOps,
) ([]*SyncTransaction, error) {
if queryParams == nil {
queryParams = &datastore.QueryParams{
OrderByField: createdAtField,
SortDirection: datastore.SortAsc,
}
} else if queryParams.OrderByField == "" || queryParams.SortDirection == "" {
queryParams.OrderByField = createdAtField
queryParams.SortDirection = datastore.SortAsc
}
// Get the records
var models []SyncTransaction
if err := getModels(
ctx, NewBaseModel(ModelNameEmpty, opts...).Client().Datastore(),
&models, conditions, queryParams, defaultDatabaseReadTimeout,
); err != nil {
if errors.Is(err, datastore.ErrNoResults) {
return nil, nil
}
return nil, err
}
// Loop and enrich
txs := make([]*SyncTransaction, 0)
for index := range models {
models[index].enrich(ModelSyncTransaction, opts...)
txs = append(txs, &models[index])
}
return txs, nil
}
func _areParentsBroadcasted(ctx context.Context, tx *Transaction, opts ...ModelOps) (bool, error) {
// get the sync transaction of all inputs
btTx, err := bt.NewTxFromString(tx.Hex)
if err != nil {
return false, err
}
// check that all inputs we handled have been broadcast, or are not handled by Bux
parentsBroadcasted := true
for _, input := range btTx.Inputs {
var parentTx *SyncTransaction
previousTxID := hex.EncodeToString(bt.ReverseBytes(input.PreviousTxID()))
parentTx, err = GetSyncTransactionByID(ctx, previousTxID, opts...)
if err != nil {
return false, err
}
// if we have a sync transaction, and it is not complete, then we cannot broadcast
if parentTx != nil && parentTx.BroadcastStatus != SyncStatusComplete {
parentsBroadcasted = false
}
}
return parentsBroadcasted, nil
}