forked from blocledger/poe-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreateChannel.js
290 lines (255 loc) · 9.51 KB
/
createChannel.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
/*
Copyright 2017 BlocLedger
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.
*/
/* jshint node: true */
'use strict';
var HFC = require('fabric-client');
// var Orderer = require('fabric-client/lib/Orderer.js');
// var Peer = require('fabric-client/lib/Peer.js');
var FabricCAServices = require('fabric-ca-client/lib/FabricCAClientImpl');
var User = require('fabric-client/lib/User.js');
var utils = require('fabric-client/lib/utils.js');
var debug = require('debug')('poe');
var fs = require('fs');
var path = require('path');
var Q = require('q');
var GlobalAppUser = {};
var config = require('./configuration.js');
var cred = config.cred; // Configuration file for the test network from the fabric-sdk-node
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
var client = new HFC(); // Create a new client.
var EventHub = require('fabric-client/lib/EventHub.js');
var tlsOptions = {
trustedRoots: [cred.cas[0].tls_cacerts],
verify: false
};
debug(tlsOptions);
let opts = {path: config.keyPath};
debug(opts);
debug('=============================================================');
var cryptoSuite = HFC.newCryptoSuite();
cryptoSuite.setCryptoKeyStore(HFC.newCryptoKeyStore(opts));
client.setCryptoSuite(cryptoSuite);
debug(cryptoSuite);
debug('=============================================================');
var ca = new FabricCAServices(cred.cas[0].api_url, tlsOptions, '', cryptoSuite); // Create a new CA
var targets = [];
var channel = {};
// Add orderer
// var caRootsPath = cred.orderers[0].tls_cacerts;
// let data = fs.readFileSync(path.join(__dirname, caRootsPath));
// let caroots = Buffer.from(data).toString();
var orderer = client.newOrderer(
cred.orderers[0].api_url,
{
'pem': cred.orderers[0].tls_cacerts,
'ssl-target-name-override': cred.orderers[0].common_name
}
);
for (var i = 0; i < cred.peers.length; i++) {
// let data = fs.readFileSync(path.join(__dirname, cred.peers[i].tls_cacerts));
let peer = client.newPeer(
cred.peers[i].api_url,
{
'request-timeout': 120000,
pem: cred.peers[i].tls_cacerts,
'ssl-target-name-override': cred.peers[i].common_name
}
);
targets.push(peer);
}
// Configure the KeyValStore which is used to store sensitive keys
// check that the ./tmp directory existsSync
if (!fs.existsSync('./tmp')) {
fs.mkdirSync('./tmp');
}
if (!fs.existsSync('./tmp')) {
throw new Error('Could not create the ./tmp directory');
}
var store;
var kvsPath = './tmp/keyValStore_' + cred.network_id;
var admin;
var member;
var genisisBlock;
var peerorg1Admin;
HFC.newDefaultKeyValueStore({
path: kvsPath
})
.then(function(result) {
debug('the store is...', result);
store = result;
client.setStateStore(store);
// Register and enroll the redefined admin user cred.cas[0].users_clients[0].enrollId pw 'adminpw'
return client.getUserContext(cred.cas[0].users_clients[0].enrollId, true);
})
.then(function(user) {
if (user && user.isEnrolled()) {
debug('The admin is already enrolled');
member = user;
return null;
}
// Go through the enrollment steps
// 1. ca.enroll, 2. setEnrollment, 3. setUserContext
debug('calling ca.enroll to enroll admin');
let request = {
enrollmentID: cred.cas[0].users_clients[0].enrollId,
enrollmentSecret: cred.cas[0].users_clients[0].enrollSecret
};
return ca.enroll(request);
})
.then(function(enrollment) {
if (enrollment) {
debug('creating a new user for admin and setting the enrollment');
member = new User(cred.cas[0].users_clients[0].enrollId, client);
member.setCryptoSuite(cryptoSuite);
debug('=============================================================');
debug(member.getCryptoSuite());
debug('=============================================================');
return member.setEnrollment(enrollment.key, enrollment.certificate, cred.cas[0].msp_id);
} else {
return null;
}
})
.then(function() {
// Successfully enrolled admin now set the affiliation
debug('admin affiliation is', member.getAffiliation());
if (!member.getAffiliation()) {
debug('setting the affiliation for admin');
member.setAffiliation(cred.cas[0].users_clients[0].affiliation); //this might be a bad idea
}
debug('set the user context to the new admin user so it gets saved');
return client.setUserContext(member);
})
.then(function() {
// jscs:disable maximumLineLength
debug('create a user based on the cert for org1 admin');
let filename = fs.readdirSync(path.join(__dirname, '/test/fixtures-V1/crypto-config/peerOrganizations/org1.blocledger.com/users/[email protected]/msp/keystore/'))[0];
let data = fs.readFileSync(path.join(__dirname, '/test/fixtures-V1/crypto-config/peerOrganizations/org1.blocledger.com/users/[email protected]/msp/keystore/', filename));
let keyPEM = Buffer.from(data).toString();
filename = fs.readdirSync(path.join(__dirname, '/test/fixtures-V1/crypto-config/peerOrganizations/org1.blocledger.com/users/[email protected]/msp/signcerts/'))[0];
data = fs.readFileSync(path.join(__dirname, '/test/fixtures-V1/crypto-config/peerOrganizations/org1.blocledger.com/users/[email protected]/msp/signcerts/', filename));
let certPEM = Buffer.from(data).toString();
// jscs:enable maximumLineLength
let request = {
username: 'peerorg1Admin',
mspid: cred.cas[0].msp_id,
cryptoContent: {
privateKeyPEM: keyPEM,
signedCertPEM: certPEM
}
};
return client.createUser(request);
})
.then(function(admin) {
debug('finished enrolling org1 admin');
debug(admin);
peerorg1Admin = admin;
// read in the envelope to send to the orderer
let data = fs.readFileSync(path.join(__dirname, './test/fixtures-V1/channel.tx'));
var request = {
name: 'mychannel',
envelope: data,
orderer: orderer
};
debug('new procedure for signing the config');
var channelConfig = client.extractChannelConfig(data);
var signature = client.signChannelConfig(channelConfig);
var signatures = [];
signatures.push(signature);
let txId = client.newTransactionID(true);
// jscs:disable requireCamelCaseOrUpperCaseIdentifiers
// Create the new form for request...
request = {
name: config.channelId,
orderer: orderer,
config: channelConfig,
signatures: signatures,
txId: txId,
};
debug('============ calling createChannel =====================');
return client.createChannel(request);
})
.then(function(result) {
debug('--------------------------------------------');
debug('Channel created ');
debug(result);
channel = client.newChannel(config.channelId);
channel.addOrderer(orderer);
// see if the channel has been created
debug(channel);
debug('channel name', channel.getName());
debug('orderers', channel.getOrderers());
debug('---------- createChannel succeeded -----------');
// delay to allow createChannel to complete
return Q.delay(10000);
}, function(err) {
debug('Error creating channel, maybe it is already created, try building it');
debug(err);
channel = client.newChannel(config.channelId);
channel.addOrderer(orderer);
debug('---------- createChannel fails -----------');
// delay to allow createChannel to complete
return Q.delay(10000);
})
.then(function(result) {
debug('channel config', result);
// jscs:disable maximumLineLength
debug('create a user based on the cert for the orderer admin');
let filename = fs.readdirSync(path.join(__dirname, '/test/fixtures-V1/crypto-config/ordererOrganizations/blocledger.com/users/Admin\@blocledger.com/msp/keystore/'))[0];
let data = fs.readFileSync(path.join(__dirname, '/test/fixtures-V1/crypto-config/ordererOrganizations/blocledger.com/users/Admin\@blocledger.com/msp/keystore/', filename));
let keyPEM = Buffer.from(data).toString();
filename = fs.readdirSync(path.join(__dirname, '/test/fixtures-V1/crypto-config/ordererOrganizations/blocledger.com/users/Admin\@blocledger.com/msp/signcerts/'))[0];
data = fs.readFileSync(path.join(__dirname, '/test/fixtures-V1/crypto-config/ordererOrganizations/blocledger.com/users/Admin\@blocledger.com/msp/signcerts/', filename));
let certPEM = Buffer.from(data).toString();
// jscs:enable maximumLineLength
let request = {
username: 'ordererAdmin',
mspid: 'OrdererMSP',
cryptoContent: {
privateKeyPEM: keyPEM,
signedCertPEM: certPEM
}
};
return client.createUser(request);
})
.then(function(admin) {
debug('finished enrolling orderer admin');
debug(admin);
let txId = client.newTransactionID();
let request = {
txId: txId,
};
return channel.getGenesisBlock(request);
})
.then(function(block) {
genisisBlock = block;
return client.setUserContext(peerorg1Admin);
})
.then(function(user) {
// join the peers to the channel
debug('join the peers to the channel');
let txId = client.newTransactionID();
var request = {
targets: targets,
block: genisisBlock,
txId: txId,
};
return channel.joinChannel(request);
})
.then(function(result) {
debug('-------- join channel results ---------');
debug(result);
})
.catch(function(err) {
debug('============================================');
debug('Error creating channel ', err);
});