-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscalardl-node-client-sdk.js
303 lines (272 loc) · 8.19 KB
/
scalardl-node-client-sdk.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
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
const {
ClientServiceBase,
StatusCode,
ContractExecutionResult,
LedgerValidationResult,
AssetProof,
ClientError,
ClientPropertiesField,
ClientProperties,
} = require('@scalar-labs/scalardl-javascript-sdk-base');
const protobuf = require('./scalar_pb');
const {
LedgerClient,
LedgerPrivilegedClient,
AuditorClient,
AuditorPrivilegedClient,
} = require('./scalar_grpc_pb');
const grpc = require('@grpc/grpc-js');
const {SignerFactory} = require('./signer');
/**
* @param {Object} properties
* @return {Object}
*/
function _createGrpcServices(properties) {
const clientProperties = new ClientProperties(properties, [
ClientPropertiesField.SERVER_HOST,
ClientPropertiesField.SERVER_PORT,
ClientPropertiesField.SERVER_PRIVILEGED_PORT,
]);
const ledgerClientUrl =
`${clientProperties.getServerHost()}:` +
`${clientProperties.getServerPort()}`;
const ledgerPrivilegedClientUrl =
`${clientProperties.getServerHost()}:` +
`${clientProperties.getServerPrivilegedPort()}`;
const auditorEnabled = clientProperties.getAuditorEnabled();
const auditorClientUrl =
`${clientProperties.getAuditorHost()}:` +
`${clientProperties.getAuditorPort()}`;
const auditorPrivilegedClientUrl =
`${clientProperties.getAuditorHost()}:` +
`${clientProperties.getAuditorPrivilegedPort()}`;
const ca = clientProperties.getTlsCaRootCertPem();
const tlsEnabled = clientProperties.getTlsEnabled();
let grpcChannelCredentials;
if (tlsEnabled) {
if (ca) {
// Use custom root CA
grpcChannelCredentials = grpc.credentials.createSsl(
Buffer.from(ca, 'utf8'),
);
} else {
// When no custom root CA is provided to init the SSL/TLS connection,
// default root CA maintained by Node.js will be used
grpcChannelCredentials = grpc.credentials.createSsl();
}
} else {
grpcChannelCredentials = grpc.credentials.createInsecure();
}
const ledgerClient = new LedgerClient(
ledgerClientUrl,
grpcChannelCredentials,
);
const ledgerPrivilegedClient = new LedgerPrivilegedClient(
ledgerPrivilegedClientUrl,
grpcChannelCredentials,
);
let auditorClient;
let auditorPrivilegedClient;
if (auditorEnabled) {
auditorClient = new AuditorClient(auditorClientUrl, grpcChannelCredentials);
auditorPrivilegedClient = new AuditorPrivilegedClient(
auditorPrivilegedClientUrl,
grpcChannelCredentials,
);
}
return {
ledgerClient: ledgerClient,
ledgerPrivileged: ledgerPrivilegedClient,
auditorClient: auditorClient,
auditorPrivileged: auditorPrivilegedClient,
};
}
/**
* Create the grpc request metadata
* @param {Object} properties
* @return {module:grpc.Metadata} create metadata
* @private
*/
function _createMetadata(properties) {
const clientProperties = new ClientProperties(properties);
const metadata = new grpc.Metadata();
if (clientProperties.getAuthorizationCredential()) {
metadata.set(
'authorization',
clientProperties.getAuthorizationCredential(),
);
}
return metadata;
}
/**
* Read the content of file-based properties
* @param {Object} properties
* @return {Object}
*/
function _resolveFileBasedProperties(properties) {
const fs = require('fs');
if (
properties['scalar.dl.client.cert_path'] !== undefined &&
properties['scalar.dl.client.cert_pem'] === undefined
) {
properties['scalar.dl.client.cert_pem'] = fs
.readFileSync(properties['scalar.dl.client.cert_path'])
.toString();
}
if (
properties['scalar.dl.client.private_key_path'] !== undefined &&
properties['scalar.dl.client.private_key_pem'] === undefined
) {
properties['scalar.dl.client.private_key_pem'] = fs
.readFileSync(properties['scalar.dl.client.private_key_path'])
.toString();
}
if (
properties['scalar.dl.client.tls.ca_root_cert_path'] !== undefined &&
properties['scalar.dl.client.tls.ca_root_cert_pem'] === undefined
) {
properties['scalar.dl.client.tls.ca_root_cert_pem'] = fs
.readFileSync(properties['scalar.dl.client.tls.ca_root_cert_path'])
.toString();
}
return properties;
}
/**
* @class
*/
class ClientServiceWithBinary extends ClientServiceBase {
/**
* Constructor will inject dependencies to generate ClientService
* @param {Object} properties
*/
constructor(properties) {
properties = _resolveFileBasedProperties(properties);
super(
{
..._createGrpcServices(properties),
signerFactory: new SignerFactory(),
},
protobuf,
properties,
_createMetadata(properties),
);
}
/**
* @param {Uint8Array} serializedBinary
* a serialized byte array of CertificateRegistrationRequest
* @return {Promise<!proto.google.protobuf.Empty>}
*/
async registerCertificate(serializedBinary) {
const request =
this.ledgerPrivileged.registerCert.requestDeserialize(serializedBinary);
return super._registerCertificate(request);
}
/**
* @param {Uint8Array} serializedBinary
* a serialized byte array of FunctionRegistrationRequest
* @return {Promise<!proto.google.protobuf.Empty>}
*/
async registerFunction(serializedBinary) {
const request =
this.ledgerPrivileged.registerFunction.requestDeserialize(
serializedBinary,
);
return super._registerFunction(request);
}
/**
* @param {Uint8Array} serializedBinary
* a serialized byte array of ContractRegistrationRequest
* @return {Promise<!proto.google.protobuf.Empty>}
*/
async registerContract(serializedBinary) {
const request =
this.ledgerClient.registerContract.requestDeserialize(serializedBinary);
return super._registerContract(request);
}
/**
* @param {Uint8Array} serializedBinary
* a serialized byte array of ContractsListingRequest
* @return {Promise<!proto.google.protobuf.ContractsListingResponse>}
*/
async listContracts(serializedBinary) {
const request =
this.ledgerClient.listContracts.requestDeserialize(serializedBinary);
return super._listContracts(request);
}
/**
* @param {Uint8Array} serializedBinary
* a serialized byte array of LedgerValidationRequest
* @return {Promise<!proto.google.protobuf.LedgerValidationResponse>}
*/
async validateLedger(serializedBinary) {
const properties = new ClientProperties(this.properties, [], []);
if (properties.getAuditorEnabled()) {
throw new Error(
'validateLedger with Auditor ' +
'is not supported in the intermediary mode. ' +
'Please execute ValidateLedger contract ' +
'simply for validating assets.',
);
}
const request =
this.ledgerClient.validateLedger.requestDeserialize(serializedBinary);
const promise = new Promise((resolve, reject) => {
this.ledgerClient.validateLedger(
request,
this.metadata,
(err, response) => {
if (err) {
reject(err);
} else {
resolve(
LedgerValidationResult.fromGrpcLedgerValidationResponse(
response,
),
);
}
},
);
});
return this._executePromise(promise);
}
/**
* @param {Uint8Array} serializedBinary
* a serialized byte array of ContractExecutionRequest
* @return {Promise<!proto.google.protobuf.ContractExecutionResponse>}
*/
async executeContract(serializedBinary) {
const request =
this.ledgerClient.executeContract.requestDeserialize(serializedBinary);
return super._executeContract(request);
}
}
/**
* @class
*/
class ClientService extends ClientServiceBase {
/**
* Constructor will inject dependencies to generate ClientService
* @param {Object} properties
*/
constructor(properties) {
properties = _resolveFileBasedProperties(properties);
super(
{
..._createGrpcServices(properties),
signerFactory: new SignerFactory(),
},
protobuf,
properties,
_createMetadata(properties),
);
}
}
module.exports = {
ClientService,
ClientServiceWithBinary,
StatusCode,
ContractExecutionResult,
LedgerValidationResult,
AssetProof,
ClientError,
};