mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 23:45:10 +00:00
Add a new version of the FabCar applications using the new programming model (fabric-network), written in JavaScript. Change-Id: I0fcc2e8a10291805d5389c7fc8d1e529debd600a Signed-off-by: Simon Stone <sstone1@uk.ibm.com>
47 lines
1.7 KiB
JavaScript
47 lines
1.7 KiB
JavaScript
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const FabricCAServices = require('fabric-ca-client');
|
|
const { FileSystemWallet, X509WalletMixin } = require('fabric-network');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const ccpPath = path.resolve(__dirname, '..', '..', 'basic-network', 'connection.json');
|
|
const ccpJSON = fs.readFileSync(ccpPath, 'utf8');
|
|
const ccp = JSON.parse(ccpJSON);
|
|
|
|
async function main() {
|
|
try {
|
|
|
|
// Create a new CA client for interacting with the CA.
|
|
const caURL = ccp.certificateAuthorities['ca.example.com'].url;
|
|
const ca = new FabricCAServices(caURL);
|
|
|
|
// Create a new file system based wallet for managing identities.
|
|
const walletPath = path.join(process.cwd(), 'wallet');
|
|
const wallet = new FileSystemWallet(walletPath);
|
|
console.log(`Wallet path: ${walletPath}`);
|
|
|
|
// Check to see if we've already enrolled the admin user.
|
|
const adminExists = await wallet.exists('admin');
|
|
if (adminExists) {
|
|
console.log('An identity for the admin user "admin" already exists in the wallet');
|
|
return;
|
|
}
|
|
|
|
// Enroll the admin user, and import the new identity into the wallet.
|
|
const enrollment = await ca.enroll({ enrollmentID: 'admin', enrollmentSecret: 'adminpw' });
|
|
const identity = X509WalletMixin.createIdentity('Org1MSP', enrollment.certificate, enrollment.key.toBytes());
|
|
wallet.import('admin', identity);
|
|
console.log('Successfully enrolled admin user "admin" and imported it into the wallet');
|
|
|
|
} catch (error) {
|
|
console.error(`Failed to enroll admin user "admin": ${error}`);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
main();
|