mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +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>
53 lines
1.8 KiB
JavaScript
53 lines
1.8 KiB
JavaScript
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const { FileSystemWallet, Gateway } = 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 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 user.
|
|
const userExists = await wallet.exists('user1');
|
|
if (!userExists) {
|
|
console.log('An identity for the user "user1" does not exist in the wallet');
|
|
console.log('Run the registerUser.js application before retrying');
|
|
return;
|
|
}
|
|
|
|
// Create a new gateway for connecting to our peer node.
|
|
const gateway = new Gateway();
|
|
await gateway.connect(ccp, { wallet, identity: 'user1' });
|
|
|
|
// Get the network (channel) our contract is deployed to.
|
|
const network = await gateway.getNetwork('mychannel');
|
|
|
|
// Get the contract from the network.
|
|
const contract = network.getContract('fabcar');
|
|
|
|
// Evaluate the specified transaction.
|
|
// queryCar transaction - requires 1 argument, ex: ('queryCar', 'CAR4')
|
|
// queryAllCars transaction - requires no arguments, ex: ('queryAllCars')
|
|
const result = await contract.evaluateTransaction('queryAllCars');
|
|
console.log(`Transaction has been evaluated, result is: ${result.toString()}`);
|
|
|
|
} catch (error) {
|
|
console.error(`Failed to evaluate transaction: ${error}`);
|
|
process.exit(1);
|
|
}
|
|
}
|
|
|
|
main();
|