forked from HyperledgerHandsOn/trade-finance-logistics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
join-channel.js
224 lines (194 loc) · 6.39 KB
/
join-channel.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
/*
* Copyright 2018 IBM All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the 'License');
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an 'AS IS' BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
var utils = require('fabric-client/lib/utils.js');
var logger = utils.getLogger('join-channel');
var util = require('util');
var path = require('path');
var fs = require('fs');
var Client = require('fabric-client');
var Constants = require('./constants.js');
var ClientUtils = require('./clientUtils.js');
var tx_id = null;
var allEventhubs = [];
//
// Send join requests for all peers in our network to the orderer
//
function processJoinChannel(constants) {
if (constants) {
Constants = constants;
}
ClientUtils.init(Constants);
Client.addConfigFile(path.join(__dirname, Constants.networkConfig));
var ORGS = Client.getConfigSetting(Constants.networkId);
var PEER_ORGS = [];
Object.keys(ORGS).forEach((org) => {
if(org !== 'orderer') {
PEER_ORGS.push(org);
}
})
var joinPromises = [];
PEER_ORGS.forEach((org) => {
joinPromises.push(joinChannel);
})
// Join peers of each org to the channel in sequence
return joinPromises.reduce(
(promiseChain, currentFunction, currentIndex) =>
promiseChain.then(() => {
return currentFunction(PEER_ORGS[currentIndex], ORGS);
}), Promise.resolve()
).then(() => {
cleanup();
}, (err) => {
console.log('Failed join attempt:', err);
throw err;
});
}
function joinChannel(org, ORGS, constants) {
if (constants) {
Constants = constants;
}
ClientUtils.init(Constants);
var channel_name = Client.getConfigSetting('E2E_CONFIGTX_CHANNEL_NAME', Constants.CHANNEL_NAME);
console.log('Joining channel', channel_name);
//
// Create and configure the channel
//
var client = new Client();
var channel = client.newChannel(channel_name);
var orgName = ORGS[org].name;
var targets = [];
var eventhubs = [];
var caRootsPath = ORGS.orderer.tls_cacerts;
let data = fs.readFileSync(path.join(__dirname, caRootsPath));
let caroots = Buffer.from(data).toString();
var genesis_block = null;
channel.addOrderer(
client.newOrderer(
ORGS.orderer.url,
{
'pem': caroots,
'ssl-target-name-override': ORGS.orderer['server-hostname']
}
)
);
return Client.newDefaultKeyValueStore({
path: ClientUtils.storePathForOrg(orgName)
}).then((store) => {
client.setStateStore(store);
// get the peer org's admin required to send join channel requests
client._userContext = null;
return ClientUtils.getSubmitter(client, true /* get peer org admin */, org);
}).then((admin) => {
console.log('Successfully enrolled \'admin\' user for org', org);
tx_id = client.newTransactionID();
let request = {
txId : tx_id
};
return channel.getGenesisBlock(request);
}).then((block) =>{
console.log('Successfully got the genesis block');
genesis_block = block;
for (let key in ORGS[org]) {
if (ORGS[org].hasOwnProperty(key)) {
if (key.indexOf('peer') === 0) {
data = fs.readFileSync(path.join(__dirname, ORGS[org][key]['tls_cacerts']));
targets.push(
client.newPeer(
ORGS[org][key].requests,
{
pem: Buffer.from(data).toString(),
'ssl-target-name-override': ORGS[org][key]['server-hostname']
}
)
);
let eh = client.newEventHub();
eh.setPeerAddr(
ORGS[org][key].events,
{
pem: Buffer.from(data).toString(),
'ssl-target-name-override': ORGS[org][key]['server-hostname']
}
);
eh.connect();
eventhubs.push(eh);
allEventhubs.push(eh);
}
}
}
var eventPromises = [];
eventhubs.forEach((eh) => {
let txPromise = new Promise((resolve, reject) => {
let handle = setTimeout(reject, 40000);
eh.registerBlockEvent((block) => {
clearTimeout(handle);
// in real-world situations, a peer may have more than one channel so
// we must check that this block came from the channel we asked the peer to join
if(block.data.data.length === 1) {
// Config block must only contain one transaction
var channel_header = block.data.data[0].payload.header.channel_header;
if (channel_header.channel_id === channel_name) {
console.log('The new channel has been successfully joined on peer '+ eh.getPeerAddr());
resolve();
}
else {
console.log('The new channel has not been succesfully joined');
reject();
}
}
});
});
eventPromises.push(txPromise);
});
tx_id = client.newTransactionID();
let request = {
targets : targets,
block : genesis_block,
txId : tx_id
};
let sendPromise = channel.joinChannel(request, 40000); // join channel takes longer then average
return Promise.all([sendPromise].concat(eventPromises)); // return only after the block join event has been received (asynchronously)
}, (err) => {
console.log('Failed to enroll user \'admin\' due to error: ' + err.stack ? err.stack : err);
throw new Error('Failed to enroll user \'admin\' due to error: ' + err.stack ? err.stack : err);
})
.then((results) => {
logger.debug(util.format('Join Channel R E S P O N S E : %j', results));
if(results[0] && results[0][0] && results[0][0].response && results[0][0].response.status == 200) {
console.log(util.format('Successfully joined peers in organization %s to join the channel', orgName));
} else {
console.log(' Failed to join channel');
throw new Error('Failed to join channel');
}
}, (err) => {
console.log('Failed to join channel due to error: ' + err.stack ? err.stack : err);
});
}
// Cleanup operations: for now, just unsubscribe the eventHub instances
function cleanup() {
// Disconnect the event hub
for(var key in allEventhubs) {
var eventhub = allEventhubs[key];
if (eventhub && eventhub.isconnected()) {
logger.debug('Disconnecting the event hub');
eventhub.disconnect();
}
}
allEventhubs.splice(0, allEventhubs.length); // Clear the array
}
module.exports.processJoinChannel = processJoinChannel;
module.exports.joinChannel = joinChannel;
module.exports.joinEventsCleanup = cleanup;