@@ -2,22 +2,24 @@ package bridge
2
2
3
3
import (
4
4
"context"
5
- "encoding/binary "
5
+ "encoding/base64 "
6
6
"encoding/hex"
7
7
"fmt"
8
- "strconv"
9
-
10
8
"github.com/Gravity-Tech/gravity-node-data-extractor/v2/extractors"
11
9
"github.com/Gravity-Tech/gravity-node-data-extractor/v2/helpers"
12
10
"math/big"
13
11
)
14
12
15
13
// TODO: Implement general queue iterator (Waves & ETH)
16
- // bc too muchs queues
14
+
17
15
type ErgoRequestsState struct {
18
16
requests map [string ]interface {}
19
17
}
20
18
19
+ const (
20
+ ErgoRequestStatusSuccess = true
21
+ )
22
+
21
23
type ErgoToErgoExtractionBridge struct {
22
24
config ConfigureCommand
23
25
configured bool
@@ -48,119 +50,133 @@ func (provider *ErgoToErgoExtractionBridge) Configure(config ConfigureCommand) e
48
50
return nil
49
51
}
50
52
51
- func (provider * ErgoToErgoExtractionBridge ) pickRequestFromQueue (luStates []helpers.Request ) (helpers.Request , error ) {
53
+ func (provider * ErgoToErgoExtractionBridge ) pickRequestFromLUPortQueue (luRequests []helpers.Request ) (helpers.Request , error ) {
54
+ var rq helpers.Request
52
55
53
- ctx , cancel := context .WithCancel (context .Background ())
54
- defer cancel ()
56
+ for _ , luRequest := range luRequests {
57
+ _ , status , err := provider .ergClientTarget .GetRequest (provider .config .DestinationNodeUrl , provider .config .IBPortAddress , luRequest .RequestId )
58
+ if err != nil {
59
+ continue
60
+ }
55
61
56
- ibStates , _ := provider .ergClientTarget .GetState (provider .config .DestinationNodeUrl , provider .config .IBPortAddress , ctx )
62
+ if status == ErgoRequestStatusSuccess {
63
+ continue
64
+ }
65
+ if ! ValidateErgoAddress (luRequest .Receiver ) {
66
+ continue
67
+ }
68
+ rq = luRequest
69
+ break
70
+ }
71
+ return rq , nil
72
+ }
57
73
74
+ func (provider * ErgoToErgoExtractionBridge ) pickRequestFromIBPortQueue (ibRequests []helpers.Request ) (helpers.Request , error ) {
58
75
var rq helpers.Request
59
76
60
- for _ , luState := range luStates {
61
-
62
- for _ , ibState := range ibStates {
63
- if ibState .RequestId != luState .RequestId {
64
- continue
65
- }
66
- if ! ValidateErgoAddress (luState .Receiver ) {
67
- continue
68
- }
69
- rq = luState
70
- break
77
+ for _ , ibRequest := range ibRequests {
78
+ request , status , err := provider .ergClientSource .GetRequest (provider .config .SourceNodeUrl , provider .config .LUPortAddress , ibRequest .RequestId )
79
+ if err != nil {
80
+ continue
81
+ }
82
+ if status != ErgoRequestStatusSuccess {
83
+ continue
84
+ }
85
+ if ! ValidateErgoAddress (request .Receiver ) {
86
+ continue
71
87
}
88
+ rq = request
89
+ break
72
90
}
73
-
74
91
return rq , nil
75
92
}
76
93
77
- // Decoupling is aimed for tests management
78
- // It allows testing distinct functions
79
- //
94
+
80
95
func (provider * ErgoToErgoExtractionBridge ) ExtractDirectTransferRequest (ctx context.Context ) (* extractors.Data , error ) {
81
- luStates , err := provider .ergClientSource .GetState (provider .config .SourceNodeUrl , provider .config .LUPortAddress ,ctx )
96
+ luRequests , err := provider .ergClientSource .GetRequestsList (provider .config .SourceNodeUrl , provider .config .LUPortAddress ,ctx )
82
97
if err != nil {
83
98
return nil , err
84
99
}
85
100
86
- rq , _ := provider .pickRequestFromQueue ( luStates )
101
+ rq , _ := provider .pickRequestFromLUPortQueue ( luRequests )
87
102
88
103
if rq .RequestId == "" {
89
104
return nil , extractors .NotFoundErr
90
105
}
106
+ rqId := new (big.Int )
107
+ rqId , _ = rqId .SetString (rq .RequestId , 10 )
91
108
92
- rqId , _ := strconv . ParseInt ( rq . RequestId , 10 , 64 )
93
- amount , _ := strconv . ParseInt (rq .Amount , 10 , 64 )
109
+ amount := new (big. Int )
110
+ amount , _ = amount . SetString (rq .Amount , 10 )
94
111
95
112
sourceDecimals := big .NewInt (10 )
96
113
sourceDecimals .Exp (sourceDecimals , big .NewInt (provider .config .SourceDecimals ), nil )
97
114
98
115
destinationDecimals := big .NewInt (10 )
99
116
destinationDecimals .Exp (destinationDecimals , big .NewInt (provider .config .DestinationDecimals ), nil )
100
117
101
- bigIntAmount := big .NewInt (amount )
102
-
103
- newAmount := bigIntAmount .
104
- Mul (bigIntAmount , sourceDecimals ).
105
- Div (bigIntAmount , destinationDecimals )
118
+ newAmount := amount .
119
+ Mul (amount , sourceDecimals ).
120
+ Div (amount , destinationDecimals )
106
121
107
122
result := []byte {'m' }
108
123
var newAmountBytes [32 ]byte
109
- var RequestIdBytes = make ([ ]byte , 32 )
110
- binary . PutVarint ( RequestIdBytes , rqId )
111
- result = append (result , RequestIdBytes [:]... )
124
+ var RequestIdBytes [ 32 ]byte
125
+
126
+ result = append (result , rqId . FillBytes ( RequestIdBytes [:]) ... )
112
127
result = append (result , newAmount .FillBytes (newAmountBytes [:])... )
113
128
receiver , _ := hex .DecodeString (rq .Receiver )
114
129
result = append (result , receiver [:]... )
115
130
116
131
println (newAmount .String ())
117
- println (hex .EncodeToString (result ))
132
+ println (base64 . StdEncoding .EncodeToString (result ))
118
133
return & extractors.Data {
119
- Type : extractors .String ,
120
- Value : hex .EncodeToString (result ),
134
+ Type : extractors .Base64 ,
135
+ Value : base64 . StdEncoding .EncodeToString (result ),
121
136
}, err
122
137
}
123
138
124
139
func (provider * ErgoToErgoExtractionBridge ) ExtractReverseTransferRequest (ctx context.Context ) (* extractors.Data , error ) {
125
- ibStates , err := provider .ergClientSource .GetState (provider .config .DestinationNodeUrl , provider .config .IBPortAddress , ctx )
140
+ ibRequests , err := provider .ergClientSource .GetRequestsList (provider .config .DestinationNodeUrl , provider .config .IBPortAddress , ctx )
126
141
if err != nil {
127
142
return nil , err
128
143
}
129
144
130
- rq , _ := provider .pickRequestFromQueue ( ibStates )
145
+ rq , _ := provider .pickRequestFromIBPortQueue ( ibRequests )
131
146
132
147
if rq .RequestId == "" {
133
148
return nil , extractors .NotFoundErr
134
149
}
135
150
136
- rqId , _ := strconv .ParseInt (rq .RequestId , 10 , 64 )
137
- amount , _ := strconv .ParseInt (rq .Amount , 10 , 64 )
151
+ rqId := new (big.Int )
152
+ rqId , _ = rqId .SetString (rq .RequestId , 10 )
153
+
154
+ amount := new (big.Int )
155
+ amount , _ = amount .SetString (rq .Amount , 10 )
138
156
139
157
sourceDecimals := big .NewInt (10 )
140
158
sourceDecimals .Exp (sourceDecimals , big .NewInt (provider .config .SourceDecimals ), nil )
141
159
142
160
destinationDecimals := big .NewInt (10 )
143
161
destinationDecimals .Exp (destinationDecimals , big .NewInt (provider .config .DestinationDecimals ), nil )
144
162
145
- bigIntAmount := big .NewInt (amount )
146
-
147
- newAmount := bigIntAmount .
148
- Mul (bigIntAmount , sourceDecimals ).
149
- Div (bigIntAmount , destinationDecimals )
163
+ newAmount := amount .
164
+ Mul (amount , sourceDecimals ).
165
+ Div (amount , destinationDecimals )
150
166
151
167
result := []byte {'u' }
152
168
var newAmountBytes [32 ]byte
153
- var RequestIdBytes = make ([ ]byte , 32 )
154
- binary . PutVarint ( RequestIdBytes , rqId )
155
- result = append (result , RequestIdBytes [:]... )
169
+ var RequestIdBytes [ 32 ]byte
170
+
171
+ result = append (result , rqId . FillBytes ( RequestIdBytes [:]) ... )
156
172
result = append (result , newAmount .FillBytes (newAmountBytes [:])... )
157
173
receiver , _ := hex .DecodeString (rq .Receiver )
158
174
result = append (result , receiver [:]... )
159
175
160
176
println (newAmount .String ())
161
- println (hex .EncodeToString (result ))
177
+ println (base64 . StdEncoding .EncodeToString (result ))
162
178
return & extractors.Data {
163
- Type : extractors .String ,
164
- Value : hex .EncodeToString (result ),
179
+ Type : extractors .Base64 ,
180
+ Value : base64 . StdEncoding .EncodeToString (result ),
165
181
}, err
166
182
}
0 commit comments