mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
* WIP Signed-off-by: Brett Logan <brett.t.logan@ibm.com> * WIP 2 Signed-off-by: Brett Logan <brett.t.logan@ibm.com>
108 lines
3.8 KiB
Bash
Executable file
108 lines
3.8 KiB
Bash
Executable file
#!/bin/bash
|
|
#
|
|
# Copyright IBM Corp. All Rights Reserved.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
# This script is designed to be run in the org3cli container as the
|
|
# first step of the EYFN tutorial. It creates and submits a
|
|
# configuration transaction to add org3 to the test network
|
|
#
|
|
|
|
CHANNEL_NAME="$1"
|
|
DELAY="$2"
|
|
TIMEOUT="$3"
|
|
VERBOSE="$4"
|
|
: ${CHANNEL_NAME:="mychannel"}
|
|
: ${DELAY:="3"}
|
|
: ${TIMEOUT:="10"}
|
|
: ${VERBOSE:="false"}
|
|
COUNTER=1
|
|
MAX_RETRY=5
|
|
|
|
|
|
# import environment variables
|
|
. scripts/org3-scripts/envVarCLI.sh
|
|
|
|
# execute - Prints and executes the command
|
|
function execute() {
|
|
echo -e "\033[0;32mCommand\033[0m: ${*}"
|
|
"${@}"
|
|
}
|
|
|
|
# fetchChannelConfig <channel_id> <output_json>
|
|
# Writes the current channel config for a given channel to a JSON file
|
|
fetchChannelConfig() {
|
|
ORG=$1
|
|
CHANNEL=$2
|
|
OUTPUT=$3
|
|
|
|
setOrdererGlobals
|
|
|
|
setGlobals $ORG
|
|
|
|
echo "Fetching the most recent configuration block for the channel"
|
|
execute peer channel fetch config config_block.pb -o orderer.example.com:7050 --ordererTLSHostnameOverride orderer.example.com -c $CHANNEL --tls --cafile $ORDERER_CA
|
|
|
|
echo "Decoding config block to JSON and isolating config to ${OUTPUT}"
|
|
execute configtxlator proto_decode --input config_block.pb --type common.Block | jq .data.data[0].payload.data.config >"${OUTPUT}"
|
|
}
|
|
|
|
# createConfigUpdate <channel_id> <original_config.json> <modified_config.json> <output.pb>
|
|
# Takes an original and modified config, and produces the config update tx
|
|
# which transitions between the two
|
|
createConfigUpdate() {
|
|
CHANNEL=$1
|
|
ORIGINAL=$2
|
|
MODIFIED=$3
|
|
OUTPUT=$4
|
|
|
|
execute configtxlator proto_encode --input "${ORIGINAL}" --type common.Config >original_config.pb
|
|
execute configtxlator proto_encode --input "${MODIFIED}" --type common.Config >modified_config.pb
|
|
execute configtxlator compute_update --channel_id "${CHANNEL}" --original original_config.pb --updated modified_config.pb >config_update.pb
|
|
execute configtxlator proto_decode --input config_update.pb --type common.ConfigUpdate >config_update.json
|
|
# TODO
|
|
execute echo '{"payload":{"header":{"channel_header":{"channel_id":"'$CHANNEL'", "type":2}},"data":{"config_update":'$(cat config_update.json)'}}}' | jq . >config_update_in_envelope.json
|
|
execute configtxlator proto_encode --input config_update_in_envelope.json --type common.Envelope >"${OUTPUT}"
|
|
}
|
|
|
|
# signConfigtxAsPeerOrg <org> <configtx.pb>
|
|
# Set the peerOrg admin of an org and signing the config update
|
|
signConfigtxAsPeerOrg() {
|
|
PEERORG=$1
|
|
TX=$2
|
|
setGlobals $PEERORG
|
|
execute peer channel signconfigtx -f "${TX}"
|
|
}
|
|
|
|
echo
|
|
echo "========= Creating config transaction to add org3 to network =========== "
|
|
echo
|
|
|
|
# Fetch the config for the channel, writing it to config.json
|
|
fetchChannelConfig 1 ${CHANNEL_NAME} config.json
|
|
|
|
# Modify the configuration to append the new org
|
|
execute jq -s '.[0] * {"channel_group":{"groups":{"Application":{"groups": {"Org3MSP":.[1]}}}}}' config.json ./organizations/peerOrganizations/org3.example.com/org3.json > modified_config.json
|
|
|
|
# Compute a config update, based on the differences between config.json and modified_config.json, write it as a transaction to org3_update_in_envelope.pb
|
|
createConfigUpdate ${CHANNEL_NAME} config.json modified_config.json org3_update_in_envelope.pb
|
|
|
|
echo
|
|
echo "========= Config transaction to add org3 to network created ===== "
|
|
echo
|
|
|
|
echo "Signing config transaction"
|
|
echo
|
|
signConfigtxAsPeerOrg 1 org3_update_in_envelope.pb
|
|
|
|
echo
|
|
echo "========= Submitting transaction from a different peer (peer0.org2) which also signs it ========= "
|
|
echo
|
|
setGlobals 2
|
|
execute peer channel update -f org3_update_in_envelope.pb -c ${CHANNEL_NAME} -o orderer.example.com:7050 --ordererTLSHostnameOverride orderer.example.com --tls --cafile ${ORDERER_CA}
|
|
|
|
echo
|
|
echo "========= Config transaction to add org3 to network submitted! =========== "
|
|
echo
|