mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
* Improve asset-transfer-basic javascript app code by combining invoke & query.js Adding a sample application workflow to demonstrate the chaincodes, similar to the WIP PR for basic go-application (https://github.com/hyperledger/fabric-samples/pull/211). Simplify and document-in-code the app workflow of this sample, in a single app , instead of invoke & query setting up Gateway Signed-off-by: Sijo Cherian <sijo@ibm.com> improve javascript app code by combining invoke & query.js Signed-off-by: Sijo Cherian <sijo@ibm.com> reverted chaincode func signature Signed-off-by: Sijo Cherian <sijo@ibm.com> * create/updateAsset signature in sync with chaincode func change as in #227 Signed-off-by: Sijo Cherian <sijo@ibm.com> * Tested with latest chaincode, Improved comments Signed-off-by: Sijo Cherian <sijo@ibm.com> Co-authored-by: Sijo Cherian <sijo@ibm.com>
62 lines
2.3 KiB
JavaScript
62 lines
2.3 KiB
JavaScript
/*
|
|
* Copyright IBM Corp. All Rights Reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const FabricCAServices = require('fabric-ca-client');
|
|
const { Wallets } = require('fabric-network');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const adminUserId = 'admin';
|
|
const adminUserPasswd = 'adminpw';
|
|
const walletPath = path.join(__dirname, 'wallet');
|
|
|
|
async function enrollAdminUser() {
|
|
try {
|
|
// load the network configuration
|
|
const ccpPath = path.resolve(__dirname, '..', '..', 'test-network', 'organizations', 'peerOrganizations', 'org1.example.com', 'connection-org1.json');
|
|
const fileExists = fs.existsSync(ccpPath);
|
|
if (!fileExists) {
|
|
throw new Error(`no such file or directory: ${ccpPath}`);
|
|
}
|
|
const ccp = JSON.parse(fs.readFileSync(ccpPath, 'utf8'));
|
|
|
|
// Create a new CA client for interacting with the CA.
|
|
const caInfo = ccp.certificateAuthorities['ca.org1.example.com'];
|
|
const caTLSCACerts = caInfo.tlsCACerts.pem;
|
|
const ca = new FabricCAServices(caInfo.url, { trustedRoots: caTLSCACerts, verify: false }, caInfo.caName);
|
|
|
|
// Create a new wallet : Note that wallet can be resfor managing identities.
|
|
const wallet = await Wallets.newFileSystemWallet(walletPath);
|
|
|
|
// Check to see if we've already enrolled the admin user.
|
|
const identity = await wallet.get(adminUserId);
|
|
if (identity) {
|
|
console.log('An identity for the admin user already exists in the wallet');
|
|
return;
|
|
}
|
|
|
|
// Enroll the admin user, and import the new identity into the wallet.
|
|
const enrollment = await ca.enroll({ enrollmentID: adminUserId, enrollmentSecret: adminUserPasswd });
|
|
const x509Identity = {
|
|
credentials: {
|
|
certificate: enrollment.certificate,
|
|
privateKey: enrollment.key.toBytes(),
|
|
},
|
|
mspId: 'Org1MSP',
|
|
type: 'X.509',
|
|
};
|
|
await wallet.put(adminUserId, x509Identity);
|
|
console.log('Successfully enrolled admin user and imported it into the wallet');
|
|
|
|
} catch (error) {
|
|
console.error(`Failed to enroll admin user : ${error}`);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
exports.AdminUserId = adminUserId;
|
|
exports.EnrollAdminUser = enrollAdminUser;
|