-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathBitcoinAPI.groovy
219 lines (171 loc) · 5.45 KB
/
BitcoinAPI.groovy
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
import static groovyx.net.http.ContentType.JSON
import static groovyx.net.http.Method.POST
import groovyx.net.http.AsyncHTTPBuilder
@Grab(group='org.codehaus.groovy.modules.http-builder', module='http-builder', version='0.7' )
/**
* Created by whoisjeremylam on 18/04/14.
*/
class BitcoinAPI {
private String rpcURL
private String rpcUser
private String rpcPassword
private groovyx.net.http.AsyncHTTPBuilder httpAsync
public getBlockHeight() {
def result = httpAsync.request( POST, JSON) { req ->
body = [method : 'getblockcount',
id : 'test',
params : []
]
response.success = { resp, json ->
return json.result
}
}
assert result instanceof java.util.concurrent.Future
while ( ! result.done ) {
Thread.sleep(100)
}
assert result.get() > 0
return result.get()
}
public getBlockHash(block) {
assert block != null
def result = httpAsync.request( POST, JSON) { req ->
body = [method : 'getblockhash',
id : 'test',
params : [block]
]
response.success = { resp, json ->
return json.result
}
}
assert result instanceof java.util.concurrent.Future
while ( ! result.done ) {
Thread.sleep(100)
}
return result.get()
}
public getBlock(blockhash) {
def result = httpAsync.request( POST, JSON) { req ->
body = [method : 'getblock',
id : 'test',
params : [blockhash]
]
response.success = { resp, json ->
return json.result
}
}
assert result instanceof java.util.concurrent.Future
while ( ! result.done ) {
Thread.sleep(100)
}
return result.get()
}
public getRawTransaction(tx_id) {
def result = httpAsync.request( POST, JSON) { req ->
body = [method : 'getrawtransaction',
id : 'test',
params : [tx_id]
]
response.success = { resp, json ->
return json.result
}
}
assert result instanceof java.util.concurrent.Future
while ( ! result.done ) {
Thread.sleep(100)
}
return result.get()
}
public getTransaction(rawTransaction) {
def result = httpAsync.request( POST, JSON) { req ->
body = [method : 'decoderawtransaction',
id : 'test',
params : [rawTransaction]
]
response.success = { resp, json ->
return json.result
}
}
assert result instanceof java.util.concurrent.Future
while ( ! result.done ) {
Thread.sleep(100)
}
return result.get()
}
public unlockBitcoinWallet(String walletPassword, int timeout) {
try {
def paramsJSON
def myParams = [method: 'walletpassphrase',
id: 'test',
params: [walletPassword, timeout]
]
def result = httpAsync.request(POST, JSON) { req ->
body = myParams
paramsJSON = new groovy.json.JsonBuilder(myParams)
// log4j.debug(paramsJSON)
response.success = { resp, json ->
return json.result
}
response.failure = { resp ->
println "UnlockBitcoinWallet failed"
assert resp.responseBase == null
}
}
assert result instanceof java.util.concurrent.Future
while (!result.done) {
Thread.sleep(100)
}
return result.get()
}
catch (Throwable e) {
assert e == null
}
}
public lockBitcoinWallet() {
def result = httpAsync.request( POST, JSON) { req ->
body = [method : 'walletlock',
id : 'test',
params : []
]
response.success = { resp, json ->
return json.result
}
}
assert result instanceof java.util.concurrent.Future
while ( ! result.done ) {
Thread.sleep(100)
}
}
public getNewAddress() {
def result = httpAsync.request( POST, JSON) { req ->
body = [method : 'getnewaddress',
id : 'test',
params : []
]
response.success = { resp, json ->
return json.result
}
}
assert result instanceof java.util.concurrent.Future
while ( ! result.done ) {
Thread.sleep(100)
}
return result.get()
}
private init() {
// Read in ini file
def iniConfig = new ConfigSlurper().parse(new File("BitcoinAPI.ini").toURL())
rpcURL = iniConfig.rpcURL
rpcUser = iniConfig.rpcUser
rpcPassword = iniConfig.rpcPassword
// Init async http handler
httpAsync = new AsyncHTTPBuilder(
poolSize : 10,
uri : rpcURL,
contentType : JSON )
httpAsync.auth.basic rpcUser, rpcPassword
}
public BitcoinAPI() {
init()
}
}