This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fabricClient.js
259 lines (216 loc) · 9.86 KB
/
fabricClient.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
'use strict';
// Bring key classes into scope, most importantly Fabric SDK network class
const fs = require('fs');
const yaml = require('js-yaml');
const createClient = require('./createClient.js')
const { FileSystemWallet, Gateway } = require('fabric-network');
const wallet = new FileSystemWallet('./wallet');
module.exports = {
/**
* Function to create a batch that starts off the supply chain.
* @param {string} cultivationData the batch data to be stored on creation
* @returns {string} a string representing a unique batchID to identify the created batch
*/
createBatch: async (cultivationData) => {
await createClient();
const gateway = new Gateway();
try {
const userName = '[email protected]'
let connectionProfile = yaml.safeLoad(fs.readFileSync('./config.yaml', 'utf8'));
let connectionOptions = {
identity: userName,
clientTlsIdentity: userName,
wallet: wallet,
discovery: { enabled: true, asLocalhost: true }
};
console.log('Connecting to Fabric gateway.');
await gateway.connect(connectionProfile, connectionOptions);
console.log('Use network channel: scchannel.');
const network = await gateway.getNetwork('scchannel');
// Get addressability to commercial paper contract
console.log('Use supplycc smart contract.');
const contract = await network.getContract('supplycc');
console.log('Submit createBatch transaction.');
const queryResponse = await contract.submitTransaction('createBatch', cultivationData);
return JSON.parse(queryResponse.toString());
} catch (error) {
console.log(`Error processing transaction. ${error}`);
console.log(error.stack);
} finally {
console.log('Disconnect from Fabric gateway.');
gateway.disconnect();
}
},
/**
* Function to update details for existing batch of the supply chain
* @param {string} batchID the id of the batch to be updated
* @param {string} nextStage the stage that is being updated
* @param {string} nextStageData the data relating to the stage that is being updated
*/
updateBatch: async (batchID, nextStage, nextStageData) => {
await createClient();
const gateway = new Gateway();
try {
const userName = '[email protected]'
let connectionProfile = yaml.safeLoad(fs.readFileSync('./config.yaml', 'utf8'));
let connectionOptions = {
identity: userName,
clientTlsIdentity: userName,
wallet: wallet,
discovery: { enabled: true, asLocalhost: true }
};
console.log('Connecting to Fabric gateway.');
await gateway.connect(connectionProfile, connectionOptions);
console.log('Use network channel: scchannel.');
const network = await gateway.getNetwork('scchannel');
// Get addressability to commercial paper contract
console.log('Use supplycc smart contract.');
const contract = await network.getContract('supplycc');
console.log('Submit updateBatch transaction.');
const queryResponse = await contract.submitTransaction('updateBatch', batchID, nextStage, nextStageData);
return JSON.parse(queryResponse.toString());
} catch (error) {
console.log(`Error processing transaction. ${error}`);
console.log(error.stack);
} finally {
console.log('Disconnect from Fabric gateway.');
gateway.disconnect();
}
},
/**
* function the fetch details of one batch
* @param {string} batchID the id of the batch to be queried
* @returns A json object with data from all stages for the particular batch
*/
queryBatch: async (batchID) => {
await createClient();
const gateway = new Gateway();
try {
const userName = '[email protected]'
let connectionProfile = yaml.safeLoad(fs.readFileSync('./config.yaml', 'utf8'));
let connectionOptions = {
identity: userName,
clientTlsIdentity: userName,
wallet: wallet,
discovery: { enabled: true, asLocalhost: true }
};
console.log('Connecting to Fabric gateway.');
await gateway.connect(connectionProfile, connectionOptions);
console.log('Use network channel: scchannel.');
const network = await gateway.getNetwork('scchannel');
// Get addressability to commercial paper contract
console.log('Use supplycc smart contract.');
const contract = await network.getContract('supplycc');
console.log('Evaluate QueryBatch transaction.');
const queryResponse = await contract.evaluateTransaction('queryBatch', batchID);
return JSON.parse(queryResponse.toString())
} catch (error) {
console.log(`Error processing transaction. ${error}`);
console.log(error.stack);
} finally {
console.log('Disconnect from Fabric gateway.');
gateway.disconnect();
}
},
/**
* Function to query list of all existing batches
* @returns A json array with the list of all batches
*/
queryBatchList: async () => {
await createClient();
const gateway = new Gateway();
try {
const userName = '[email protected]'
let connectionProfile = yaml.safeLoad(fs.readFileSync('./config.yaml', 'utf8'));
let connectionOptions = {
identity: userName,
clientTlsIdentity: userName,
wallet: wallet,
discovery: { enabled: true, asLocalhost: true }
};
console.log('Connecting to Fabric gateway.');
await gateway.connect(connectionProfile, connectionOptions);
console.log('Use network channel: scchannel.');
const network = await gateway.getNetwork('scchannel');
// Get addressability to commercial paper contract
console.log('Use supplycc smart contract.');
const contract = await network.getContract('supplycc');
console.log('Evaluate QueryBatchList transaction.');
const queryResponse = await contract.evaluateTransaction('queryBatchList');
return JSON.parse(queryResponse.toString());
} catch (error) {
console.log(`Error processing transaction. ${error}`);
console.log(error.stack);
} finally {
console.log('Disconnect from Fabric gateway.');
gateway.disconnect();
}
},
/**
* Function to create a batch using hardcoded data
*/
testCreate: async () => {
await createClient();
const gateway = new Gateway();
try {
const userName = '[email protected]'
let connectionProfile = yaml.safeLoad(fs.readFileSync('./config.yaml', 'utf8'));
let connectionOptions = {
identity: userName,
clientTlsIdentity: userName,
wallet: wallet,
discovery: { enabled: true, asLocalhost: true }
};
console.log('Connecting to Fabric gateway.');
await gateway.connect(connectionProfile, connectionOptions);
console.log('Use network channel: scchannel.');
const network = await gateway.getNetwork('scchannel');
// Get addressability to commercial paper contract
console.log('Use supplycc smart contract.');
const contract = await network.getContract('supplycc');
console.log('submit testCreate transaction.');
const queryResponse = await contract.submitTransaction('testCreate');
return JSON.parse(queryResponse.toString());
} catch (error) {
console.log(`Error processing transaction. ${error}`);
console.log(error.stack);
} finally {
console.log('Disconnect from Fabric gateway.');
gateway.disconnect();
}
},
/**
* Function to update a batch using hardcoded data
* @param {string} batchID the id of the batch to be updated
*/
testUpdate: async (batchID) => {
await createClient();
const gateway = new Gateway();
try {
const userName = '[email protected]'
let connectionProfile = yaml.safeLoad(fs.readFileSync('./config.yaml', 'utf8'));
let connectionOptions = {
identity: userName,
clientTlsIdentity: userName,
wallet: wallet,
discovery: { enabled: true, asLocalhost: true }
};
console.log('Connecting to Fabric gateway.');
await gateway.connect(connectionProfile, connectionOptions);
console.log('Use network channel: scchannel.');
const network = await gateway.getNetwork('scchannel');
// Get addressability to commercial paper contract
console.log('Use supplycc smart contract.');
const contract = await network.getContract('supplycc');
console.log('Submit testUpdate transaction.');
const queryResponse = await contract.submitTransaction('testUpdate', batchID);
return JSON.parse(queryResponse.toString());
} catch (error) {
console.log(`Error processing transaction. ${error}`);
console.log(error.stack);
} finally {
console.log('Disconnect from Fabric gateway.');
gateway.disconnect();
}
}
}