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 6
/
action_destination.go
304 lines (241 loc) · 8.42 KB
/
action_destination.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
package bux
import (
"context"
"database/sql"
"time"
"github.com/BuxOrg/bux/datastore"
"github.com/BuxOrg/bux/utils"
)
// NewDestination will get a new destination for an existing xPub
//
// xPubKey is the raw public xPub
func (c *Client) NewDestination(ctx context.Context, xPubKey string, chain uint32,
destinationType string, monitor bool, opts ...ModelOps) (*Destination, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "new_destination")
// Get the xPub (by key - converts to id)
var xPub *Xpub
var err error
if xPub, err = getXpubWithCache(
ctx, c, xPubKey, "", // Get the xPub by xPubID
c.DefaultModelOptions()..., // Passing down the Datastore and client information into the model
); err != nil {
return nil, err
} else if xPub == nil {
return nil, ErrMissingXpub
}
// Get/create a new destination
var destination *Destination
if destination, err = xPub.getNewDestination(
ctx, chain, destinationType,
append(opts, c.DefaultModelOptions()...)..., // Passing down the Datastore and client information into the model
); err != nil {
return nil, err
}
if monitor {
destination.Monitor = utils.NullTime{NullTime: sql.NullTime{
Valid: true,
Time: time.Now(),
}}
}
// Save the destination
if err = destination.Save(ctx); err != nil {
return nil, err
}
// Return the model
return destination, nil
}
// NewDestinationForLockingScript will create a new destination based on a locking script
func (c *Client) NewDestinationForLockingScript(ctx context.Context, xPubID, lockingScript string,
monitor bool, opts ...ModelOps) (*Destination, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "new_destination_for_locking_script")
// Ensure locking script isn't empty
if len(lockingScript) == 0 {
return nil, ErrMissingLockingScript
}
// Start the new destination - will detect type
destination := newDestination(
xPubID, lockingScript,
append(opts, c.DefaultModelOptions()...)..., // Passing down the Datastore and client information into the model
)
if destination.Type == "" {
return nil, ErrUnknownLockingScript
}
// set the monitoring, passed down from the initiating function
// this will be set when calling NewDestination from http / graphql, but not for instance paymail
if monitor {
destination.Monitor = utils.NullTime{NullTime: sql.NullTime{
Valid: true,
Time: time.Now(),
}}
}
// Save the destination
if err := destination.Save(ctx); err != nil {
return nil, err
}
// Return the model
return destination, nil
}
// GetDestinations will get all the destinations from the Datastore
func (c *Client) GetDestinations(ctx context.Context, metadataConditions *Metadata,
conditions *map[string]interface{}, queryParams *datastore.QueryParams, opts ...ModelOps) ([]*Destination, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_destinations")
// Get the destinations
destinations, err := getDestinations(
ctx, metadataConditions, conditions, queryParams,
c.DefaultModelOptions(opts...)...,
)
if err != nil {
return nil, err
}
return destinations, nil
}
// GetDestinationsCount will get a count of all the destinations from the Datastore
func (c *Client) GetDestinationsCount(ctx context.Context, metadataConditions *Metadata,
conditions *map[string]interface{}, opts ...ModelOps) (int64, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_destinations_count")
// Get the destinations count
count, err := getDestinationsCount(
ctx, metadataConditions, conditions,
c.DefaultModelOptions(opts...)...,
)
if err != nil {
return 0, err
}
return count, nil
}
// GetDestinationsByXpubID will get destinations based on an xPub
//
// metadataConditions are the search criteria used to find destinations
func (c *Client) GetDestinationsByXpubID(ctx context.Context, xPubID string, metadataConditions *Metadata,
conditions *map[string]interface{}, queryParams *datastore.QueryParams) ([]*Destination, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_destinations")
// Get the destinations
destinations, err := getDestinationsByXpubID(
ctx, xPubID, metadataConditions, conditions, queryParams, c.DefaultModelOptions()...,
)
if err != nil {
return nil, err
}
return destinations, nil
}
// GetDestinationsByXpubIDCount will get a count of all destinations based on an xPub
func (c *Client) GetDestinationsByXpubIDCount(ctx context.Context, xPubID string, metadataConditions *Metadata,
conditions *map[string]interface{}) (int64, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_destinations")
// Get the count
count, err := getDestinationsCountByXPubID(
ctx, xPubID, metadataConditions, conditions, c.DefaultModelOptions()...,
)
if err != nil {
return 0, err
}
return count, nil
}
// GetDestinationByID will get a destination by id
func (c *Client) GetDestinationByID(ctx context.Context, xPubID, id string) (*Destination, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_destination_by_id")
// Get the destination
destination, err := getDestinationWithCache(
ctx, c, id, "", "", c.DefaultModelOptions()...,
)
if err != nil {
return nil, err
}
// Check that the id matches
if destination.XpubID != xPubID {
return nil, ErrXpubIDMisMatch
}
return destination, nil
}
// GetDestinationByLockingScript will get a destination for a locking script
func (c *Client) GetDestinationByLockingScript(ctx context.Context, xPubID, lockingScript string) (*Destination, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_destination_by_locking_script")
// Get the destination
destination, err := getDestinationWithCache(
ctx, c, "", "", lockingScript, c.DefaultModelOptions()...,
)
if err != nil {
return nil, err
}
// Check that the id matches
if destination.XpubID != xPubID {
return nil, ErrXpubIDMisMatch
}
return destination, nil
}
// GetDestinationByAddress will get a destination for an address
func (c *Client) GetDestinationByAddress(ctx context.Context, xPubID, address string) (*Destination, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "get_destination_by_address")
// Get the destination
destination, err := getDestinationWithCache(
ctx, c, "", address, "", c.DefaultModelOptions()...,
)
if err != nil {
return nil, err
}
// Check that the id matches
if destination.XpubID != xPubID {
return nil, ErrXpubIDMisMatch
}
return destination, nil
}
// UpdateDestinationMetadataByID will update the metadata in an existing destination by id
func (c *Client) UpdateDestinationMetadataByID(ctx context.Context, xPubID, id string,
metadata Metadata) (*Destination, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "update_destination_by_id")
// Get the destination
destination, err := c.GetDestinationByID(ctx, xPubID, id)
if err != nil {
return nil, err
}
// Update and save the model
destination.UpdateMetadata(metadata)
if err = destination.Save(ctx); err != nil {
return nil, err
}
return destination, nil
}
// UpdateDestinationMetadataByLockingScript will update the metadata in an existing destination by locking script
func (c *Client) UpdateDestinationMetadataByLockingScript(ctx context.Context, xPubID,
lockingScript string, metadata Metadata) (*Destination, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "update_destination_by_locking_script")
// Get the destination
destination, err := c.GetDestinationByLockingScript(ctx, xPubID, lockingScript)
if err != nil {
return nil, err
}
// Update and save the metadata
destination.UpdateMetadata(metadata)
if err = destination.Save(ctx); err != nil {
return nil, err
}
return destination, nil
}
// UpdateDestinationMetadataByAddress will update the metadata in an existing destination by address
func (c *Client) UpdateDestinationMetadataByAddress(ctx context.Context, xPubID, address string,
metadata Metadata) (*Destination, error) {
// Check for existing NewRelic transaction
ctx = c.GetOrStartTxn(ctx, "update_destination_by_address")
// Get the destination
destination, err := c.GetDestinationByAddress(ctx, xPubID, address)
if err != nil {
return nil, err
}
// Update and save the metadata
destination.UpdateMetadata(metadata)
if err = destination.Save(ctx); err != nil {
return nil, err
}
return destination, nil
}