This repository has been 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 pathaction_transaction.go
431 lines (368 loc) · 13.3 KB
/
action_transaction.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
427
428
429
430
431
package bux
import (
"context"
"errors"
"fmt"
"math"
"time"
"github.com/BuxOrg/bux/chainstate"
"github.com/BuxOrg/bux/utils"
"github.com/bitcoin-sv/go-broadcast-client/broadcast"
"github.com/libsv/go-bc"
"github.com/libsv/go-bt"
"github.com/mrz1836/go-datastore"
)
// RecordTransaction will parse the transaction and save it into the Datastore
//
// Internal (known) transactions: there is a corresponding `draft_transaction` via `draft_id`
// External (known) transactions: there are output(s) related to the destination `reference_id`, tx is valid (mempool/on-chain)
// External (unknown) transactions: no reference id but some output(s) match known outputs, tx is valid (mempool/on-chain)
// Unknown transactions: no matching outputs, tx will be disregarded
//
// xPubKey is the raw public xPub
// txHex is the raw transaction hex
// draftID is the unique draft id from a previously started New() transaction (draft_transaction.ID)
// opts are model options and can include "metadata"
func (c *Client) RecordTransaction(ctx context.Context, xPubKey, txHex, draftID string, opts ...ModelOps) (*Transaction, error) {
ctx = c.GetOrStartTxn(ctx, "record_transaction")
rts, err := getRecordTxStrategy(ctx, c, xPubKey, txHex, draftID)
if err != nil {
return nil, err
}
return recordTransaction(ctx, c, rts, opts...)
}
// RecordRawTransaction will parse the transaction and save it into the Datastore directly, without any checks or broadcast but bux will ask network for information if transaction was mined
// The transaction is treat as external incoming transaction - transaction without a draft
// Only use this function when you know what you are doing!
//
// txHex is the raw transaction hex
// opts are model options and can include "metadata"
func (c *Client) RecordRawTransaction(ctx context.Context, txHex string,
opts ...ModelOps,
) (*Transaction, error) {
ctx = c.GetOrStartTxn(ctx, "record_raw_transaction")
return saveRawTransaction(ctx, c, true, txHex, opts...)
}
// NewTransaction will create a new draft transaction and return it
//
// ctx is the context
// rawXpubKey is the raw xPub key
// config is the TransactionConfig
// metadata is added to the model
// opts are additional model options to be applied
func (c *Client) NewTransaction(ctx context.Context, rawXpubKey string, config *TransactionConfig,
opts ...ModelOps,
) (*DraftTransaction, error) {
// Check for existing NewRelic draftTransaction
ctx = c.GetOrStartTxn(ctx, "new_transaction")
// Create the lock and set the release for after the function completes
unlock, err := newWaitWriteLock(
ctx, fmt.Sprintf(lockKeyProcessXpub, utils.Hash(rawXpubKey)), c.Cachestore(),
)
defer unlock()
if err != nil {
return nil, err
}
// Create the draft tx model
draftTransaction := newDraftTransaction(
rawXpubKey, config,
c.DefaultModelOptions(append(opts, New())...)...,
)
// Save the model
if err = draftTransaction.Save(ctx); err != nil {
return nil, err
}
// Return the created model
return draftTransaction, nil
}
// GetTransaction will get a transaction by its ID from the Datastore
func (c *Client) GetTransaction(ctx context.Context, xPubID, txID string) (*Transaction, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_transaction")
// Get the transaction by ID
transaction, err := getTransactionByID(
ctx, xPubID, txID, c.DefaultModelOptions()...,
)
if err != nil {
return nil, err
}
if transaction == nil {
return nil, ErrMissingTransaction
}
return transaction, nil
}
// GetTransactionsByIDs returns array of transactions by their IDs from the Datastore
func (c *Client) GetTransactionsByIDs(ctx context.Context, txIDs []string) ([]*Transaction, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_transactions_by_ids")
// Create the conditions
conditions := generateTxIDFilterConditions(txIDs)
// Get the transactions by it's IDs
transactions, err := getTransactions(
ctx, nil, conditions, nil,
c.DefaultModelOptions()...,
)
if err != nil {
return nil, err
}
return transactions, nil
}
// GetTransactionByHex will get a transaction from the Datastore by its full hex string
// uses GetTransaction
func (c *Client) GetTransactionByHex(ctx context.Context, hex string) (*Transaction, error) {
tx, err := bt.NewTxFromString(hex)
if err != nil {
return nil, err
}
return c.GetTransaction(ctx, "", tx.GetTxID())
}
// GetTransactions will get all the transactions from the Datastore
func (c *Client) GetTransactions(ctx context.Context, metadataConditions *Metadata,
conditions *map[string]interface{}, queryParams *datastore.QueryParams, opts ...ModelOps,
) ([]*Transaction, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_transactions")
// Get the transactions
transactions, err := getTransactions(
ctx, metadataConditions, conditions, queryParams,
c.DefaultModelOptions(opts...)...,
)
if err != nil {
return nil, err
}
return transactions, nil
}
// GetTransactionsCount will get a count of all the transactions from the Datastore
func (c *Client) GetTransactionsCount(ctx context.Context, metadataConditions *Metadata,
conditions *map[string]interface{}, opts ...ModelOps,
) (int64, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_transactions_count")
// Get the transactions count
count, err := getTransactionsCount(
ctx, metadataConditions, conditions,
c.DefaultModelOptions(opts...)...,
)
if err != nil {
return 0, err
}
return count, nil
}
// GetTransactionsByXpubID will get all transactions for a given xpub from the Datastore
//
// ctx is the context
// rawXpubKey is the raw xPub key
// metadataConditions is added to the request for searching
// conditions is added the request for searching
func (c *Client) GetTransactionsByXpubID(ctx context.Context, xPubID string, metadataConditions *Metadata,
conditions *map[string]interface{}, queryParams *datastore.QueryParams,
) ([]*Transaction, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_transaction")
// Get the transaction by ID
// todo: add queryParams for: page size and page (right now it is unlimited)
transactions, err := getTransactionsByXpubID(
ctx, xPubID, metadataConditions, conditions, queryParams,
c.DefaultModelOptions()...,
)
if err != nil {
return nil, err
}
return transactions, nil
}
// GetTransactionsByXpubIDCount will get the count of all transactions matching the search criteria
func (c *Client) GetTransactionsByXpubIDCount(ctx context.Context, xPubID string, metadataConditions *Metadata,
conditions *map[string]interface{},
) (int64, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "count_transactions")
count, err := getTransactionsCountByXpubID(
ctx, xPubID, metadataConditions, conditions,
c.DefaultModelOptions()...,
)
if err != nil {
return 0, err
}
return count, nil
}
// UpdateTransactionMetadata will update the metadata in an existing transaction
func (c *Client) UpdateTransactionMetadata(ctx context.Context, xPubID, id string,
metadata Metadata,
) (*Transaction, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "update_transaction_by_id")
// Get the transaction
transaction, err := c.GetTransaction(ctx, xPubID, id)
if err != nil {
return nil, err
}
// Update the metadata
if err = transaction.UpdateTransactionMetadata(
xPubID, metadata,
); err != nil {
return nil, err
}
// Save the model // update existing record
if err = transaction.Save(ctx); err != nil {
return nil, err
}
return transaction, nil
}
// RevertTransaction will revert a transaction created in the Bux database, but only if it has not
// yet been synced on-chain and the utxos have not been spent.
// All utxos that are reverted will be marked as deleted (and spent)
func (c *Client) RevertTransaction(ctx context.Context, id string) error {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "revert_transaction_by_id")
// Get the transaction
transaction, err := c.GetTransaction(ctx, "", id)
if err != nil {
return err
}
// make sure the transaction is coming from Bux
if transaction.DraftID == "" {
return errors.New("not a bux originating transaction, cannot revert")
}
var draftTransaction *DraftTransaction
if draftTransaction, err = c.GetDraftTransactionByID(ctx, transaction.DraftID, c.DefaultModelOptions()...); err != nil {
return err
}
if draftTransaction == nil {
return errors.New("could not find the draft transaction for this transaction, cannot revert")
}
// check whether transaction is not already on chain
var info *chainstate.TransactionInfo
if info, err = c.Chainstate().QueryTransaction(ctx, transaction.ID, chainstate.RequiredInMempool, 30*time.Second); err != nil {
if !errors.Is(err, chainstate.ErrTransactionNotFound) {
return err
}
}
if info != nil {
return errors.New("transaction was found on-chain, cannot revert")
}
// check that the utxos of this transaction have not been spent
// this transaction needs to be the tip of the chain
conditions := &map[string]interface{}{
"transaction_id": transaction.ID,
}
var utxos []*Utxo
if utxos, err = c.GetUtxos(ctx, nil, conditions, nil, c.DefaultModelOptions()...); err != nil {
return err
}
for _, utxo := range utxos {
if utxo.SpendingTxID.Valid {
return errors.New("utxo of this transaction has been spent, cannot revert")
}
}
//
// Revert transaction and all related elements
//
// mark output utxos as deleted (no way to delete from Bux yet)
for _, utxo := range utxos {
utxo.enrich(ModelUtxo, c.DefaultModelOptions()...)
utxo.SpendingTxID.Valid = true
utxo.SpendingTxID.String = "deleted"
utxo.DeletedAt.Valid = true
utxo.DeletedAt.Time = time.Now()
if err = utxo.Save(ctx); err != nil {
return err
}
}
// remove output values of transaction from all xpubs
var xpub *Xpub
for xpubID, outputValue := range transaction.XpubOutputValue {
if xpub, err = c.GetXpubByID(ctx, xpubID); err != nil {
return err
}
if outputValue > 0 {
xpub.CurrentBalance -= uint64(outputValue)
} else {
xpub.CurrentBalance += uint64(math.Abs(float64(outputValue)))
}
if err = xpub.Save(ctx); err != nil {
return err
}
}
// set any inputs (spent utxos) used in this transaction back to not spent
var utxo *Utxo
for _, input := range draftTransaction.Configuration.Inputs {
if utxo, err = c.GetUtxoByTransactionID(ctx, input.TransactionID, input.OutputIndex); err != nil {
return err
}
utxo.SpendingTxID.Valid = false
utxo.SpendingTxID.String = ""
if err = utxo.Save(ctx); err != nil {
return err
}
}
// cancel draft tx
draftTransaction.Status = DraftStatusCanceled
if err = draftTransaction.Save(ctx); err != nil {
return err
}
// cancel sync transaction
var syncTransaction *SyncTransaction
if syncTransaction, err = GetSyncTransactionByID(ctx, transaction.ID, c.DefaultModelOptions()...); err != nil {
return err
}
syncTransaction.BroadcastStatus = SyncStatusCanceled
syncTransaction.P2PStatus = SyncStatusCanceled
syncTransaction.SyncStatus = SyncStatusCanceled
if err = syncTransaction.Save(ctx); err != nil {
return err
}
// revert transaction
// this takes the transaction out of any possible list view of the owners of the xpubs,
// but keeps a record of what went down
if transaction.Metadata == nil {
transaction.Metadata = Metadata{}
}
transaction.Metadata["XpubInIDs"] = transaction.XpubInIDs
transaction.Metadata["XpubOutIDs"] = transaction.XpubOutIDs
transaction.Metadata["XpubOutputValue"] = transaction.XpubOutputValue
transaction.XpubInIDs = IDs{"reverted"}
transaction.XpubOutIDs = IDs{"reverted"}
transaction.XpubOutputValue = XpubOutputValue{"reverted": 0}
transaction.DeletedAt.Valid = true
transaction.DeletedAt.Time = time.Now()
err = transaction.Save(ctx) // update existing record
return err
}
// UpdateTransaction will update the broadcast callback transaction info, like: block height, block hash, status, bump.
func (c *Client) UpdateTransaction(ctx context.Context, callbackResp *broadcast.SubmittedTx) error {
bump, err := bc.NewBUMPFromStr(callbackResp.MerklePath)
if err != nil {
c.options.logger.Err(err).Msgf("failed to parse merkle path from broadcast callback - tx: %v", callbackResp)
return err
}
txInfo := &chainstate.TransactionInfo{
BlockHash: callbackResp.BlockHash,
BlockHeight: callbackResp.BlockHeight,
ID: callbackResp.TxID,
TxStatus: callbackResp.TxStatus,
BUMP: bump,
// it's not possible to get confirmations from broadcast client; zero would be treated as "not confirmed" that's why -1
Confirmations: -1,
}
tx, err := c.GetTransaction(ctx, "", txInfo.ID)
if err != nil {
c.options.logger.Err(err).Msgf("failed to get transaction by id: %v", txInfo.ID)
return err
}
syncTx, err := GetSyncTransactionByTxID(ctx, txInfo.ID, c.DefaultModelOptions()...)
if err != nil {
c.options.logger.Err(err).Msgf("failed to get sync transaction by tx id: %v", txInfo.ID)
return err
}
return processSyncTxSave(ctx, txInfo, syncTx, tx)
}
func generateTxIDFilterConditions(txIDs []string) *map[string]interface{} {
orConditions := make([]map[string]interface{}, len(txIDs))
for i, txID := range txIDs {
orConditions[i] = map[string]interface{}{"id": txID}
}
conditions := &map[string]interface{}{
"$or": orConditions,
}
return conditions
}