mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Update the Balance Transfer to return the fabric error. The sample application was updated to both return the error in the REST response and to post the error to the log. The sample was updated with the 'channel.close()' so that users will note how to shutdown a channel and not hold connections open. Change-Id: I49f20a50340adff52cf57db00a121ffd75eb1827 Signed-off-by: Bret Harrison <beharrison@nc.rr.com>
237 lines
8.3 KiB
JavaScript
237 lines
8.3 KiB
JavaScript
/**
|
|
* Copyright 2017 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.
|
|
*/
|
|
var util = require('util');
|
|
var helper = require('./helper.js');
|
|
var logger = helper.getLogger('Query');
|
|
|
|
var queryChaincode = async function(peer, channelName, chaincodeName, args, fcn, username, org_name) {
|
|
let client = null;
|
|
let channel = null;
|
|
try {
|
|
// first setup the client for this org
|
|
client = await helper.getClientForOrg(org_name, username);
|
|
logger.debug('Successfully got the fabric client for the organization "%s"', org_name);
|
|
channel = client.getChannel(channelName);
|
|
if(!channel) {
|
|
let message = util.format('Channel %s was not defined in the connection profile', channelName);
|
|
logger.error(message);
|
|
throw new Error(message);
|
|
}
|
|
|
|
// send query
|
|
var request = {
|
|
targets : [peer], //queryByChaincode allows for multiple targets
|
|
chaincodeId: chaincodeName,
|
|
fcn: fcn,
|
|
args: args
|
|
};
|
|
let response_payloads = await channel.queryByChaincode(request);
|
|
if (response_payloads) {
|
|
for (let i = 0; i < response_payloads.length; i++) {
|
|
logger.info(args[0]+' now has ' + response_payloads[i].toString('utf8') +
|
|
' after the move');
|
|
}
|
|
return args[0]+' now has ' + response_payloads[0].toString('utf8') +
|
|
' after the move';
|
|
} else {
|
|
logger.error('response_payloads is null');
|
|
return 'response_payloads is null';
|
|
}
|
|
} catch(error) {
|
|
logger.error('Failed to query due to error: ' + error.stack ? error.stack : error);
|
|
return error.toString();
|
|
} finally {
|
|
if (channel) {
|
|
channel.close();
|
|
}
|
|
}
|
|
};
|
|
var getBlockByNumber = async function(peer, channelName, blockNumber, username, org_name) {
|
|
try {
|
|
// first setup the client for this org
|
|
var client = await helper.getClientForOrg(org_name, username);
|
|
logger.debug('Successfully got the fabric client for the organization "%s"', org_name);
|
|
var channel = client.getChannel(channelName);
|
|
if(!channel) {
|
|
let message = util.format('Channel %s was not defined in the connection profile', channelName);
|
|
logger.error(message);
|
|
throw new Error(message);
|
|
}
|
|
|
|
let response_payload = await channel.queryBlock(parseInt(blockNumber, peer));
|
|
if (response_payload) {
|
|
logger.debug(response_payload);
|
|
return response_payload;
|
|
} else {
|
|
logger.error('response_payload is null');
|
|
return 'response_payload is null';
|
|
}
|
|
} catch(error) {
|
|
logger.error('Failed to query due to error: ' + error.stack ? error.stack : error);
|
|
return error.toString();
|
|
}
|
|
};
|
|
var getTransactionByID = async function(peer, channelName, trxnID, username, org_name) {
|
|
try {
|
|
// first setup the client for this org
|
|
var client = await helper.getClientForOrg(org_name, username);
|
|
logger.debug('Successfully got the fabric client for the organization "%s"', org_name);
|
|
var channel = client.getChannel(channelName);
|
|
if(!channel) {
|
|
let message = util.format('Channel %s was not defined in the connection profile', channelName);
|
|
logger.error(message);
|
|
throw new Error(message);
|
|
}
|
|
|
|
let response_payload = await channel.queryTransaction(trxnID, peer);
|
|
if (response_payload) {
|
|
logger.debug(response_payload);
|
|
return response_payload;
|
|
} else {
|
|
logger.error('response_payload is null');
|
|
return 'response_payload is null';
|
|
}
|
|
} catch(error) {
|
|
logger.error('Failed to query due to error: ' + error.stack ? error.stack : error);
|
|
return error.toString();
|
|
}
|
|
};
|
|
var getBlockByHash = async function(peer, channelName, hash, username, org_name) {
|
|
try {
|
|
// first setup the client for this org
|
|
var client = await helper.getClientForOrg(org_name, username);
|
|
logger.debug('Successfully got the fabric client for the organization "%s"', org_name);
|
|
var channel = client.getChannel(channelName);
|
|
if(!channel) {
|
|
let message = util.format('Channel %s was not defined in the connection profile', channelName);
|
|
logger.error(message);
|
|
throw new Error(message);
|
|
}
|
|
|
|
let response_payload = await channel.queryBlockByHash(Buffer.from(hash,'hex'), peer);
|
|
if (response_payload) {
|
|
logger.debug(response_payload);
|
|
return response_payload;
|
|
} else {
|
|
logger.error('response_payload is null');
|
|
return 'response_payload is null';
|
|
}
|
|
} catch(error) {
|
|
logger.error('Failed to query due to error: ' + error.stack ? error.stack : error);
|
|
return error.toString();
|
|
}
|
|
};
|
|
var getChainInfo = async function(peer, channelName, username, org_name) {
|
|
try {
|
|
// first setup the client for this org
|
|
var client = await helper.getClientForOrg(org_name, username);
|
|
logger.debug('Successfully got the fabric client for the organization "%s"', org_name);
|
|
var channel = client.getChannel(channelName);
|
|
if(!channel) {
|
|
let message = util.format('Channel %s was not defined in the connection profile', channelName);
|
|
logger.error(message);
|
|
throw new Error(message);
|
|
}
|
|
|
|
let response_payload = await channel.queryInfo(peer);
|
|
if (response_payload) {
|
|
logger.debug(response_payload);
|
|
return response_payload;
|
|
} else {
|
|
logger.error('response_payload is null');
|
|
return 'response_payload is null';
|
|
}
|
|
} catch(error) {
|
|
logger.error('Failed to query due to error: ' + error.stack ? error.stack : error);
|
|
return error.toString();
|
|
}
|
|
};
|
|
//getInstalledChaincodes
|
|
var getInstalledChaincodes = async function(peer, channelName, type, username, org_name) {
|
|
try {
|
|
// first setup the client for this org
|
|
var client = await helper.getClientForOrg(org_name, username);
|
|
logger.debug('Successfully got the fabric client for the organization "%s"', org_name);
|
|
|
|
let response = null
|
|
if (type === 'installed') {
|
|
response = await client.queryInstalledChaincodes(peer, true); //use the admin identity
|
|
} else {
|
|
var channel = client.getChannel(channelName);
|
|
if(!channel) {
|
|
let message = util.format('Channel %s was not defined in the connection profile', channelName);
|
|
logger.error(message);
|
|
throw new Error(message);
|
|
}
|
|
response = await channel.queryInstantiatedChaincodes(peer, true); //use the admin identity
|
|
}
|
|
if (response) {
|
|
if (type === 'installed') {
|
|
logger.debug('<<< Installed Chaincodes >>>');
|
|
} else {
|
|
logger.debug('<<< Instantiated Chaincodes >>>');
|
|
}
|
|
var details = [];
|
|
for (let i = 0; i < response.chaincodes.length; i++) {
|
|
logger.debug('name: ' + response.chaincodes[i].name + ', version: ' +
|
|
response.chaincodes[i].version + ', path: ' + response.chaincodes[i].path
|
|
);
|
|
details.push('name: ' + response.chaincodes[i].name + ', version: ' +
|
|
response.chaincodes[i].version + ', path: ' + response.chaincodes[i].path
|
|
);
|
|
}
|
|
return details;
|
|
} else {
|
|
logger.error('response is null');
|
|
return 'response is null';
|
|
}
|
|
} catch(error) {
|
|
logger.error('Failed to query due to error: ' + error.stack ? error.stack : error);
|
|
return error.toString();
|
|
}
|
|
};
|
|
var getChannels = async function(peer, username, org_name) {
|
|
try {
|
|
// first setup the client for this org
|
|
var client = await helper.getClientForOrg(org_name, username);
|
|
logger.debug('Successfully got the fabric client for the organization "%s"', org_name);
|
|
|
|
let response = await client.queryChannels(peer);
|
|
if (response) {
|
|
logger.debug('<<< channels >>>');
|
|
var channelNames = [];
|
|
for (let i = 0; i < response.channels.length; i++) {
|
|
channelNames.push('channel id: ' + response.channels[i].channel_id);
|
|
}
|
|
logger.debug(channelNames);
|
|
return response;
|
|
} else {
|
|
logger.error('response_payloads is null');
|
|
return 'response_payloads is null';
|
|
}
|
|
} catch(error) {
|
|
logger.error('Failed to query due to error: ' + error.stack ? error.stack : error);
|
|
return error.toString();
|
|
}
|
|
};
|
|
|
|
exports.queryChaincode = queryChaincode;
|
|
exports.getBlockByNumber = getBlockByNumber;
|
|
exports.getTransactionByID = getTransactionByID;
|
|
exports.getBlockByHash = getBlockByHash;
|
|
exports.getChainInfo = getChainInfo;
|
|
exports.getInstalledChaincodes = getInstalledChaincodes;
|
|
exports.getChannels = getChannels;
|