This repository was archived by the owner on Mar 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
Copy pathAbstractMethod.js
244 lines (216 loc) · 5.65 KB
/
AbstractMethod.js
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
/*
This file is part of web3.js.
web3.js is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
web3.js is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with web3.js. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file AbstractMethod.js
* @author Samuel Furter <[email protected]>
* @date 2018
*/
import isFunction from 'lodash/isFunction';
import isString from 'lodash/isString';
import cloneDeep from 'lodash/cloneDeep';
export default class AbstractMethod {
/**
* @param {String} rpcMethod
* @param {Number} parametersAmount
* @param {Utils} utils
* @param {Object} formatters
* @param {AbstractWeb3Module} moduleInstance
*
* @constructor
*/
constructor(rpcMethod, parametersAmount, utils, formatters, moduleInstance) {
this.utils = utils;
this.formatters = formatters;
this.moduleInstance = moduleInstance;
this._arguments = {
parameters: []
};
this._rpcMethod = rpcMethod;
this._parametersAmount = parametersAmount;
}
/**
* This method will be executed before the RPC request.
*
* @method beforeExecution
*
* @param {AbstractWeb3Module} moduleInstance - The package where the method is called from for example Eth.
*/
beforeExecution(moduleInstance) {}
/**
* This method will be executed after the RPC request.
*
* @method afterExecution
*
* @param {*} response
*
* @returns {*}
*/
afterExecution(response) {
return response;
}
/**
* Sends a JSON-RPC call request
*
* @method execute
*
* @callback callback callback(error, result)
* @returns {Promise<Object|String>}
*/
async execute() {
this.beforeExecution(this.moduleInstance);
if (this.parameters.length !== this.parametersAmount) {
throw new Error(
`Invalid Arguments length: expected: ${this.parametersAmount}, given: ${this.parameters.length}`
);
}
try {
let response = await this.moduleInstance.currentProvider.send(this.rpcMethod, this.parameters);
if (response) {
response = this.afterExecution(response);
}
if (this.callback) {
this.callback(false, response);
}
return response;
} catch (error) {
if (this.callback) {
this.callback(error, null);
}
throw error;
}
}
/**
* Setter for the rpcMethod property
*
* @property rpcMethod
*
* @param {String} value
*/
set rpcMethod(value) {
this._rpcMethod = value;
}
/**
* Getter for the rpcMethod property
*
* @property rpcMethod
*
* @returns {String}
*/
get rpcMethod() {
return this._rpcMethod;
}
/**
* Setter for the parametersAmount property
*
* @property parametersAmount
*
* @param {Number} value
*/
set parametersAmount(value) {
this._parametersAmount = value;
}
/**
* Getter for the parametersAmount property
*
* @property parametersAmount
*
* @returns {Number}
*/
get parametersAmount() {
return this._parametersAmount;
}
/**
* Getter for the parameters property
*
* @property parameters
*
* @returns {Array}
*/
get parameters() {
return this._arguments.parameters;
}
/**
* Setter for the parameters property
*
* @property parameters
*
* @param {Array} value
*/
set parameters(value) {
this._arguments.parameters = value;
}
/**
* Getter for the callback property
*
* @property callback
*
* @returns {Function}
*/
get callback() {
return this._arguments.callback;
}
/**
* Setter for the callback property
*
* @property callback
*
* @param {Function} value
*/
set callback(value) {
this._arguments.callback = value;
}
/**
* Setter for the arguments property
*
* @method setArguments
*
* @param {IArguments} args
*/
setArguments(args) {
let parameters = cloneDeep([...args]);
let callback = null;
if (parameters.length > this.parametersAmount) {
if (!isFunction(parameters[parameters.length - 1])) {
throw new TypeError("The latest parameter should be a function otherwise it can't be used as callback");
}
callback = parameters.pop();
}
this._arguments = {
callback,
parameters
};
}
/**
* Getter for the arguments property
*
* @property getArguments
*
* @returns {{callback: Function|null, parameters: Array}}
*/
getArguments() {
return this._arguments;
}
/**
* Checks if the given parameter is of type hash
*
* @method isHash
*
* @param {String} parameter
*
* @returns {Boolean}
*/
isHash(parameter) {
return isString(parameter) && parameter.startsWith('0x');
}
}