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_service.go
426 lines (359 loc) · 11.4 KB
/
sync_tx_service.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
package bux
import (
"context"
"database/sql"
"encoding/json"
"errors"
"fmt"
"runtime"
"sync"
"time"
"github.com/BuxOrg/bux/chainstate"
"github.com/BuxOrg/bux/notifications"
"github.com/bitcoin-sv/go-paymail"
"github.com/mrz1836/go-datastore"
customTypes "github.com/mrz1836/go-datastore/custom_types"
)
// processSyncTransactions will process sync transaction records
func processSyncTransactions(ctx context.Context, maxTransactions int, opts ...ModelOps) error {
queryParams := &datastore.QueryParams{
Page: 1,
PageSize: maxTransactions,
OrderByField: "created_at",
SortDirection: "desc",
}
// Get x records
records, err := getTransactionsToSync(
ctx, queryParams, opts...,
)
if err != nil {
return err
} else if len(records) == 0 {
return nil
}
for index := range records {
if err = _syncTxDataFromChain(
ctx, records[index], nil,
); err != nil {
return err
}
}
return nil
}
// processBroadcastTransactions will process sync transaction records
func processBroadcastTransactions(ctx context.Context, maxTransactions int, opts ...ModelOps) error {
queryParams := &datastore.QueryParams{
Page: 1,
PageSize: maxTransactions,
OrderByField: createdAtField,
SortDirection: datastore.SortAsc,
}
// Get maxTransactions records, grouped by xpub
snTxs, err := getTransactionsToBroadcast(ctx, queryParams, opts...)
if err != nil {
return err
} else if len(snTxs) == 0 {
return nil
}
// Process the transactions per xpub, in parallel
txsByXpub := _groupByXpub(snTxs)
// we limit the number of concurrent broadcasts to the number of cpus*2, since there is lots of IO wait
limit := make(chan bool, runtime.NumCPU()*2)
wg := new(sync.WaitGroup)
for xPubID := range txsByXpub {
limit <- true // limit the number of routines running at the same time
wg.Add(1)
go func(xPubID string) {
defer wg.Done()
defer func() { <-limit }()
for _, tx := range txsByXpub[xPubID] {
if err = broadcastSyncTransaction(
ctx, tx,
); err != nil {
tx.Client().Logger().Error().
Str("txID", tx.ID).
Str("xpubID", xPubID).
Msgf("error running broadcast tx: %s", err.Error())
return // stop processing transactions for this xpub if we found an error
}
}
}(xPubID)
}
wg.Wait()
return nil
}
// broadcastSyncTransaction will broadcast transaction related to syncTx record
func broadcastSyncTransaction(ctx context.Context, syncTx *SyncTransaction) error {
// Successfully capture any panics, convert to readable string and log the error
defer recoverAndLog(syncTx.Client().Logger())
// Create the lock and set the release for after the function completes
unlock, err := newWriteLock(
ctx, fmt.Sprintf(lockKeyProcessBroadcastTx, syncTx.GetID()), syncTx.Client().Cachestore(),
)
defer unlock()
if err != nil {
return err
}
// Get the transaction HEX
var txHex string
if syncTx.transaction != nil && syncTx.transaction.Hex != "" {
// the transaction has already been retrieved and added to the syncTx object, just use that
txHex = syncTx.transaction.Hex
} else {
// else get hex from DB
var transaction *Transaction
transaction, err = getTransactionByID(
ctx, "", syncTx.ID, syncTx.GetOptions(false)...,
)
if err != nil {
return err
}
if transaction == nil {
return errors.New("transaction was expected but not found, using ID: " + syncTx.ID)
}
txHex = transaction.Hex
}
// Broadcast
var provider string
if provider, err = syncTx.Client().Chainstate().Broadcast(
ctx, syncTx.ID, txHex, defaultBroadcastTimeout,
); err != nil {
_bailAndSaveSyncTransaction(ctx, syncTx, SyncStatusReady, syncActionBroadcast, provider, err.Error())
return err
}
// Create status message
message := "broadcast success"
// Update the sync information
syncTx.BroadcastStatus = SyncStatusComplete
syncTx.Results.LastMessage = message
syncTx.LastAttempt = customTypes.NullTime{
NullTime: sql.NullTime{
Time: time.Now().UTC(),
Valid: true,
},
}
syncTx.Results.Results = append(syncTx.Results.Results, &SyncResult{
Action: syncActionBroadcast,
ExecutedAt: time.Now().UTC(),
Provider: provider,
StatusMessage: message,
})
// Update sync status to be ready now
if syncTx.SyncStatus == SyncStatusPending {
syncTx.SyncStatus = SyncStatusReady
}
// Update the sync transaction record
if err = syncTx.Save(ctx); err != nil {
_bailAndSaveSyncTransaction(
ctx, syncTx, SyncStatusError, syncActionBroadcast, "internal", err.Error(),
)
return err
}
// Fire a notification
notify(notifications.EventTypeBroadcast, syncTx)
return nil
}
/////////////////
// _syncTxDataFromChain will process the sync transaction record, or save the failure
func _syncTxDataFromChain(ctx context.Context, syncTx *SyncTransaction, transaction *Transaction) error {
// Successfully capture any panics, convert to readable string and log the error
defer recoverAndLog(syncTx.Client().Logger())
var err error
// Get the transaction
if transaction == nil {
if transaction, err = getTransactionByID(
ctx, "", syncTx.ID, syncTx.GetOptions(false)...,
); err != nil {
return err
}
}
if transaction == nil {
return ErrMissingTransaction
}
// Find on-chain
var txInfo *chainstate.TransactionInfo
// only mAPI currently provides merkle proof, so QueryTransaction should be used here
if txInfo, err = syncTx.Client().Chainstate().QueryTransaction(
ctx, syncTx.ID, chainstate.RequiredOnChain, defaultQueryTxTimeout,
); err != nil {
if errors.Is(err, chainstate.ErrTransactionNotFound) {
syncTx.Client().Logger().Info().
Str("txID", syncTx.ID).
Msgf("Transaction not found on-chain, will try again later")
_bailAndSaveSyncTransaction(
ctx, syncTx, SyncStatusReady, syncActionSync, "all", "transaction not found on-chain",
)
return nil
}
return err
}
return processSyncTxSave(ctx, txInfo, syncTx, transaction)
}
func processSyncTxSave(ctx context.Context, txInfo *chainstate.TransactionInfo, syncTx *SyncTransaction, transaction *Transaction) error {
if !txInfo.Valid() {
syncTx.Client().Logger().Warn().
Str("txID", syncTx.ID).
Msgf("txInfo is invalid, will try again later")
if syncTx.Client().IsDebug() {
txInfoJSON, _ := json.Marshal(txInfo)
syncTx.Client().Logger().Debug().
Str("txID", syncTx.ID).
Msgf("txInfo: %s", string(txInfoJSON))
}
return nil
}
transaction.setChainInfo(txInfo)
message := "transaction was found on-chain by " + chainstate.ProviderBroadcastClient
if err := transaction.Save(ctx); err != nil {
_bailAndSaveSyncTransaction(
ctx, syncTx, SyncStatusError, syncActionSync, "internal", err.Error(),
)
return err
}
syncTx.SyncStatus = SyncStatusComplete
syncTx.Results.LastMessage = message
syncTx.Results.Results = append(syncTx.Results.Results, &SyncResult{
Action: syncActionSync,
ExecutedAt: time.Now().UTC(),
Provider: chainstate.ProviderBroadcastClient,
StatusMessage: message,
})
if err := syncTx.Save(ctx); err != nil {
_bailAndSaveSyncTransaction(ctx, syncTx, SyncStatusError, syncActionSync, "internal", err.Error())
return err
}
syncTx.Client().Logger().Info().
Str("txID", syncTx.ID).
Msgf("Transaction processed successfully")
return nil
}
// processP2PTransaction will process the sync transaction record, or save the failure
func processP2PTransaction(ctx context.Context, tx *Transaction) error {
// Successfully capture any panics, convert to readable string and log the error
defer recoverAndLog(tx.Client().Logger())
syncTx := tx.syncTransaction
// Create the lock and set the release for after the function completes
unlock, err := newWriteLock(
ctx, fmt.Sprintf(lockKeyProcessP2PTx, syncTx.GetID()), syncTx.Client().Cachestore(),
)
defer unlock()
if err != nil {
return err
}
// No draft?
if len(tx.DraftID) == 0 {
_bailAndSaveSyncTransaction(
ctx, syncTx, SyncStatusComplete, syncActionP2P, "all", "no draft found, cannot complete p2p",
)
return nil
}
// Notify any P2P paymail providers associated to the transaction
var results []*SyncResult
if results, err = _notifyPaymailProviders(ctx, tx); err != nil {
_bailAndSaveSyncTransaction(
ctx, syncTx, SyncStatusReady, syncActionP2P, "", err.Error(),
)
return err
}
// Update if we have some results
if len(results) > 0 {
syncTx.Results.Results = append(syncTx.Results.Results, results...)
syncTx.Results.LastMessage = fmt.Sprintf("notified %d paymail provider(s)", len(results))
}
// Save the record
syncTx.P2PStatus = SyncStatusComplete
// Update sync status to be ready now
if syncTx.SyncStatus == SyncStatusPending {
syncTx.SyncStatus = SyncStatusReady
}
if err = syncTx.Save(ctx); err != nil {
_bailAndSaveSyncTransaction(
ctx, syncTx, SyncStatusError, syncActionP2P, "internal", err.Error(),
)
return err
}
// Done!
return nil
}
// _notifyPaymailProviders will notify any associated Paymail providers
func _notifyPaymailProviders(ctx context.Context, transaction *Transaction) ([]*SyncResult, error) {
pm := transaction.Client().PaymailClient()
outputs := transaction.draftTransaction.Configuration.Outputs
notifiedReceivers := make([]string, 0)
results := make([]*SyncResult, len(outputs))
var payload *paymail.P2PTransactionPayload
var err error
for _, out := range outputs {
p4 := out.PaymailP4
if p4 == nil || p4.ResolutionType != ResolutionTypeP2P {
continue
}
receiver := fmt.Sprintf("%s@%s", p4.Alias, p4.Domain)
if contains(notifiedReceivers, func(x string) bool { return x == receiver }) {
continue // no need to send the same transaction to the same receiver second time
}
if payload, err = finalizeP2PTransaction(
ctx,
pm,
p4,
transaction,
); err != nil {
return nil, err
}
notifiedReceivers = append(notifiedReceivers, receiver)
results = append(results, &SyncResult{
Action: syncActionP2P,
ExecutedAt: time.Now().UTC(),
Provider: p4.ReceiveEndpoint,
StatusMessage: "success: " + payload.TxID,
})
}
return results, nil
}
// utils
func _groupByXpub(scTxs []*SyncTransaction) map[string][]*SyncTransaction {
txsByXpub := make(map[string][]*SyncTransaction)
// group transactions by xpub and return including the tx itself
for _, tx := range scTxs {
xPubID := "" // fallback if we have no input xpubs
if len(tx.transaction.XpubInIDs) > 0 {
// use the first xpub for the grouping
// in most cases when we are broadcasting, there should be only 1 xpub in
xPubID = tx.transaction.XpubInIDs[0]
}
if txsByXpub[xPubID] == nil {
txsByXpub[xPubID] = make([]*SyncTransaction, 0)
}
txsByXpub[xPubID] = append(txsByXpub[xPubID], tx)
}
return txsByXpub
}
// _bailAndSaveSyncTransaction will save the error message for a sync tx
func _bailAndSaveSyncTransaction(ctx context.Context, syncTx *SyncTransaction, status SyncStatus,
action, provider, message string,
) {
if action == syncActionSync {
syncTx.SyncStatus = status
} else if action == syncActionP2P {
syncTx.P2PStatus = status
} else if action == syncActionBroadcast {
syncTx.BroadcastStatus = status
}
syncTx.LastAttempt = customTypes.NullTime{
NullTime: sql.NullTime{
Time: time.Now().UTC(),
Valid: true,
},
}
syncTx.Results.LastMessage = message
syncTx.Results.Results = append(syncTx.Results.Results, &SyncResult{
Action: action,
ExecutedAt: time.Now().UTC(),
Provider: provider,
StatusMessage: message,
})
if syncTx.IsNew() {
return // do not save if new record! caller should decide if want to save new record
}
_ = syncTx.Save(ctx)
}