forked from olegabu/fabric-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.sh
282 lines (221 loc) · 13.1 KB
/
lib.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
#!/usr/bin/env bash
source lib/util/util.sh
: ${DOMAIN:="example.com"}
: ${ORDERER_DOMAIN:=${DOMAIN}}
: ${ORG:="org1"}
: ${WGET_OPTS:="--verbose -N"}
: ${FABRIC_STARTER_HOME:=.}
: ${DOCKER_COMPOSE_OPTION_RM:="--rm"}
: ${ORDERER_TLSCA_CERT_OPTS=" --tls --cafile /etc/hyperledger/crypto-config/ordererOrganizations/${ORDERER_DOMAIN}/msp/tlscacerts/tlsca.${ORDERER_DOMAIN}-cert.pem"}
export DOMAIN ORG
function runCLI() {
local command="$1"
if [ -n "$EXECUTE_BY_ORDERER" ]; then
service="cli.orderer"
checkContainer="cli.${ORDERER_NAME}.${ORDERER_DOMAIN}"
else
service="cli.peer"
checkContainer="cli.$ORG.$DOMAIN"
fi
# TODO No such command: run __rm when composeCommand="run --rm"
composeCommand="run --no-deps ${DOCKER_COMPOSE_OPTION_RM}"
runCLIWithComposerOverrides "${composeCommand}" "$service" "$command"
}
function runCLIWithComposerOverrides() {
local composeCommand=${1:?Compose command must be specified}
local service=${2}
local command=${3}
IFS=' ' composeCommandSplitted=($composeCommand)
[ -n "$EXECUTE_BY_ORDERER" ] && composeTemplateFile="$FABRIC_STARTER_HOME/docker-compose-orderer.yaml" || composeTemplateFile="$FABRIC_STARTER_HOME/docker-compose.yaml"
if [ "${MULTIHOST}" ]; then
[ -n "$EXECUTE_BY_ORDERER" ] && multihostComposeFile="-fdocker-compose-orderer-multihost.yaml" || multihostComposeFile="-fdocker-compose-multihost.yaml"
fi
# if [ "${PORTS}" ]; then
# [ -n "$EXECUTE_BY_ORDERER" ] && portsComposeFile="-forderer-ports.yaml" || portsComposeFile="-fdocker-compose-ports.yaml"
# fi
[ -n "${COUCHDB}" ] && [ -z "$EXECUTE_BY_ORDERER" ] && couchDBComposeFile="-fdocker-compose-couchdb.yaml"
[ -n "${LDAP_ENABLED}" ] && [ -z "$EXECUTE_BY_ORDERER" ] && ldapComposeFile="-fdocker-compose-ldap.yaml"
printInColor "1;32" "Execute: docker-compose -f ${composeTemplateFile} ${multihostComposeFile} ${couchDBComposeFile} ${ldapComposeFile} ${composeCommandSplitted[0]} ${composeCommandSplitted[1]} ${composeCommandSplitted[2]} ${service} ${command:+bash -c} $command"
if [ -n "$command" ]; then
docker-compose -f "${composeTemplateFile}" ${multihostComposeFile} ${portsComposeFile} ${couchDBComposeFile} ${ldapComposeFile} ${composeCommandSplitted[0]} ${composeCommandSplitted[1]} ${composeCommandSplitted[2]} ${service} bash -c "${command}"
else
docker-compose -f "${composeTemplateFile}" ${multihostComposeFile} ${portsComposeFile} ${couchDBComposeFile} ${ldapComposeFile} ${composeCommandSplitted[0]} ${composeCommandSplitted[1]} ${composeCommandSplitted[2]} ${service}
fi
[ $? -ne 0 ] && printRedYellow "Error occurred. See console output above." && exit 1
}
function envSubst() {
inputFile=${1:?Input file required}
outputFile=${2:?Output file required}
local extraEnvironment=${3:-true}
runCLI "$extraEnvironment && envsubst <$inputFile >$outputFile && chown $UID $outputFile"
}
function downloadMSP() {
org=$1
if [ -n "$EXECUTE_BY_ORDERER" ]; then
mspSubPath="$org.$DOMAIN"
orgSubPath="peerOrganizations"
else
[ -n "$org" ] && mspSubPath="$org.$DOMAIN" orgSubPath="peerOrganizations" || mspSubPath="$DOMAIN" orgSubPath="ordererOrganizations"
fi
runCLI "wget ${WGET_OPTS} --directory-prefix crypto-config/${orgSubPath}/${mspSubPath}/msp/admincerts http://www.${mspSubPath}/msp/admincerts/Admin@${mspSubPath}-cert.pem"
runCLI "wget ${WGET_OPTS} --directory-prefix crypto-config/${orgSubPath}/${mspSubPath}/msp/cacerts http://www.${mspSubPath}/msp/cacerts/ca.${mspSubPath}-cert.pem"
runCLI "wget ${WGET_OPTS} --directory-prefix crypto-config/${orgSubPath}/${mspSubPath}/msp/tlscacerts http://www.${mspSubPath}/msp/tlscacerts/tlsca.${mspSubPath}-cert.pem"
[ -z "$EXECUTE_BY_ORDERER" ] && runCLI "mkdir -p crypto-config/${orgSubPath}/${mspSubPath}/msp/tls/ \
&& cp crypto-config/${orgSubPath}/${mspSubPath}/msp/tlscacerts/tlsca.${mspSubPath}-cert.pem crypto-config/${orgSubPath}/${mspSubPath}/msp/tls/ca.crt"
}
function certificationsToEnv() {
org=$1
echo "export ORG_ADMIN_CERT=\`cat crypto-config/peerOrganizations/${org}.${DOMAIN:-example.com}/msp/admincerts/Admin@${org}.${DOMAIN:-example.com}-cert.pem | base64 -w 0\` \
&& export ORG_ROOT_CERT=\`cat crypto-config/peerOrganizations/${org}.${DOMAIN:-example.com}/msp/cacerts/ca.${org}.${DOMAIN:-example.com}-cert.pem | base64 -w 0\` \
&& export ORG_TLS_ROOT_CERT=\`cat crypto-config/peerOrganizations/${org}.${DOMAIN:-example.com}/msp/tlscacerts/tlsca.${org}.${DOMAIN:-example.com}-cert.pem | base64 -w 0\`"
}
function fetchChannelConfigBlock() {
channel=${1:?"Channel name must be specified"}
blockNum=${2:-config}
runCLI "mkdir -p crypto-config/configtx && peer channel fetch $blockNum crypto-config/configtx/${channel}.pb -o orderer.$DOMAIN:7050 -c ${channel} \
${ORDERER_TLSCA_CERT_OPTS} && chown -R $UID crypto-config/"
}
function txTranslateChannelConfigBlock() {
channel=$1
fetchChannelConfigBlock $channel
runCLI "configtxlator proto_decode --type 'common.Block' --input=crypto-config/configtx/${channel}.pb --output=crypto-config/configtx/${channel}.json \
&& chown $UID crypto-config/configtx/${channel}.json \
&& jq .data.data[0].payload.data.config crypto-config/configtx/${channel}.json > crypto-config/configtx/config.json"
}
function updateChannelGroupConfigForOrg() {
org=$1
templateFileOfUpdate=$2
exportEnvironment=$3
exportEnvironment="export NEWORG=${org} ${exportEnvironment:+&&} ${exportEnvironment}"
envSubst "${templateFileOfUpdate}" "crypto-config/configtx/new_config_${org}.json" "$exportEnvironment"
runCLI " jq -s '.[0] * {\"channel_group\":{\"groups\":.[1]}}' crypto-config/configtx/config.json crypto-config/configtx/new_config_${org}.json > crypto-config/configtx/updated_config.json"
}
function createConfigUpdateEnvelope() {
channel=$1
configJson=${2:-'crypto-config/configtx/config.json'}
updatedConfigJson=${3:-'crypto-config/configtx/updated_config.json'}
echo " >> Prepare config update from $org for channel $channel"
runCLI "configtxlator proto_encode --type 'common.Config' --input=${configJson} --output=config.pb \
&& configtxlator proto_encode --type 'common.Config' --input=${updatedConfigJson} --output=updated_config.pb \
&& configtxlator compute_update --channel_id=$channel --original=config.pb --updated=updated_config.pb --output=update.pb \
&& configtxlator proto_decode --type 'common.ConfigUpdate' --input=update.pb --output=crypto-config/configtx/update.json && chown $UID crypto-config/configtx/update.json"
runCLI "echo '{\"payload\":{\"header\":{\"channel_header\":{\"channel_id\":\"$channel\",\"type\":2}},\"data\":{\"config_update\":'\`cat crypto-config/configtx/update.json\`'}}}' | jq . > crypto-config/configtx/update_in_envelope.json"
runCLI "configtxlator proto_encode --type 'common.Envelope' --input=crypto-config/configtx/update_in_envelope.json --output=update_in_envelope.pb"
echo " >> $org is sending channel update update_in_envelope.pb with $d by $command"
runCLI "peer channel update -f update_in_envelope.pb -c $channel -o orderer.$DOMAIN:7050 ${ORDERER_TLSCA_CERT_OPTS}"
}
function updateChannelConfig() {
channel=${1:?Channel to be updated must be specified}
org=${2:?Org to be updated must be specified}
templateFile=${3:?template file must be specified}
exportEnv=$4
txTranslateChannelConfigBlock "$channel"
updateChannelGroupConfigForOrg "$org" "$templateFile" "$exportEnv"
createConfigUpdateEnvelope $channel
}
function updateConsortium() {
org=${1:?Org to be added to consortium must be specified}
channel=${2:?System channel must be specified}
consortiumName=${3:-SampleConsortium}
exportEnv="export CONSORTIUM_NAME=${consortiumName} && $(certificationsToEnv $org)"
updateChannelConfig $channel $org ./templates/Consortium.json "$exportEnv"
}
function updateChannelModificationPolicy() {
channel=${1:?"Channel must be specified"}
updateChannelConfig $channel $ORG ./templates/ModPolicyOrgOnly.json
}
function addOrgToChannel() {
channel=${1:?"Channel must be specified"}
org=${2:?"New Org must be specified"}
echo " >> Add new org '$org' to channel $channel"
updateChannelConfig $channel $org ./templates/NewOrg.json "$(certificationsToEnv $org)"
}
function joinChannel() {
channel=${1:?Channel name must be specified}
echo "Join $ORG to channel $channel"
fetchChannelConfigBlock $channel "0"
runCLI "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer channel join -b crypto-config/configtx/$channel.pb"
}
function updateAnchorPeers() {
channel=${1:?Channel name must be specified}
updateChannelConfig $channel $ORG ./templates/AnchorPeers.json
}
function installChaincode() {
chaincodeName=${1:?Chaincode name must be specified}
chaincodePath=${2:-$chaincodeName}
lang=${3:-golang}
chaincodeVersion=${4:-1.0}
echo "Install chaincode $chaincodeName $path $lang $version"
runCLI "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer chaincode install -n $chaincodeName -v $chaincodeVersion -p $chaincodePath -l $lang"
}
function installChaincodePackage() {
chaincodeName=${1:?Chaincode package must be specified}
echo "Install chaincode package $chaincodeName"
runCLI "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer chaincode install $chaincodeName"
}
function createChaincodePackage() {
chaincodeName=${1:?Chaincode name must be specified}
chaincodePath=${2:?Chaincode path must be specified}
chaincodeLang=${3:?Chaincode lang must be specified}
chaincodeVersion=${4:?Chaincode version must be specified}
chaincodePackageName=${5:?Chaincode PackageName must be specified}
echo "Packaging chaincode $chaincodePath to $chaincodeName"
runCLI "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer chaincode package -n $chaincodeName -v $chaincodeVersion -p $chaincodePath -l $chaincodeLang $chaincodePackageName"
}
function instantiateChaincode() {
channelName=${1:?Channel name must be specified}
chaincodeName=${2:?Chaincode name must be specified}
initArguments=${3:-[]}
chaincodeVersion=${4:-1.0}
privateCollectionPath=${5}
endorsementPolicy=${6}
if [ "$privateCollectionPath" == "\"\"" ] || [ "$privateCollectionPath" == "''" ]; then privateCollectionPath="" ; fi
[ -n "$privateCollectionPath" ] && privateCollectionParam=" --collections-config /opt/chaincode/${privateCollectionPath}"
[ -n "$endorsementPolicy" ] && endorsementPolicyParam=" -P \"${endorsementPolicy}\""
arguments="{\"Args\":$initArguments}"
echo "Instantiate chaincode $channelName $chaincodeName '$initArguments' $chaincodeVersion $privateCollectionPath $endorsementPolicy"
runCLI "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer chaincode instantiate -n $chaincodeName -v ${chaincodeVersion} -c '$arguments' -o orderer.$DOMAIN:7050 -C $channelName ${ORDERER_TLSCA_CERT_OPTS} $privateCollectionParam $endorsementPolicyParam"
}
function upgradeChaincode() {
channelName=${1:?Channel name must be specified}
chaincodeName=${2:?Chaincode name must be specified}
initArguments=${3:-[]}
chaincodeVersion=${4:-1.0}
policy=${5}
if [ -n "$policy" ]; then
policy="-P \"$policy\"";
fi
arguments="{\"Args\":$initArguments}"
runCLI "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer chaincode upgrade -n $chaincodeName -v $chaincodeVersion -c '$arguments' -o orderer.$DOMAIN:7050 -C $channelName '$policy' ${ORDERER_TLSCA_CERT_OPTS}"
}
function callChaincode() {
channelName=${1:?Channel name must be specified}
chaincodeName=${2:?Chaincode name must be specified}
arguments=${3:-[]}
arguments="{\"Args\":$arguments}"
action=${4:-query}
echo "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer chaincode $action -n $chaincodeName -C $channelName -c '$arguments'"
runCLI "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer chaincode $action -n $chaincodeName -C $channelName -c '$arguments' ${ORDERER_TLSCA_CERT_OPTS}"
}
function queryChaincode() {
channelName=${1:?Channel name must be specified}
chaincodeName=${2:?Chaincode name must be specified}
arguments=${3:-[]}
arguments="{\"Args\":$arguments}"
action=${4:-query}
echo "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer chaincode query -n $chaincodeName -C $channelName -c '$arguments'"
runCLI "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer chaincode query -n $chaincodeName -C $channelName -c '$arguments' ${ORDERER_TLSCA_CERT_OPTS}"
}
function invokeChaincode() {
channelName=${1:?Channel name must be specified}
chaincodeName=${2:?Chaincode name must be specified}
arguments=${3:-[]}
arguments="{\"Args\":$arguments}"
echo "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer chaincode invoke -n $chaincodeName -C $channelName -c '$arguments'"
runCLI "CORE_PEER_ADDRESS=peer0.$ORG.$DOMAIN:7051 peer chaincode invoke -n $chaincodeName -C $channelName -c '$arguments' ${ORDERER_TLSCA_CERT_OPTS}"
}
function info() {
echo -e "************************************************************\n\033[1;33m${1}\033[m\n************************************************************"
# read -n1 -r -p "Press any key to continue" key
# echo
}