forked from HyperledgerHandsOn/trade-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchaincode.sh
executable file
·407 lines (368 loc) · 13.9 KB
/
chaincode.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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
#!/bin/bash
#
# SPDX-License-Identifier: Apache-2.0
#
# set global variables
CHANNEL_NAME=$CHANNEL_NAME
NUM_ORGS_IN_CHANNEL=$NUM_ORGS_IN_CHANNEL
PEERORGLIST=$PEERORGLIST
DELAY=3
COUNTER=1
MAX_RETRY=5
ORDERER_HOST=orderer.trade.com
ORDERER_PORT=7050
ORDERER_CA=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/trade.com/orderers/orderer.trade.com/msp/tlscacerts/tlsca.trade.com-cert.pem
CC_LANGUAGE=$CC_LANGUAGE
CC_LABEL=${CC_LABEL}
CC_VERSION=${CC_VERSION}
CC_PKG_FILE=${CC_LABEL}_${CC_VERSION}.tar.gz
CC_SEQUENCE_NUM=1
CC_FUNC=${CC_FUNC}
CC_ARGS=${CC_ARGS}
ORGANIZATION=${ORGANIZATION}
# verify the result of the end-to-end test
verifyResult() {
if [ $1 -ne 0 ]; then
echo "!!!!!!!!!!!!!!! "$2" !!!!!!!!!!!!!!!!"
echo "========= ERROR !!! FAILED to execute Chaincode Installation Scenario ==========="
echo
exit 1
fi
}
exporterorg_PORT=7051
importerorg_PORT=8051
carrierorg_PORT=9051
regulatororg_PORT=10051
exportingentityorg_PORT=12051
setOrganization() {
if [[ $# -lt 1 ]]
then
echo "Run: setOrganizations <org> [<user>]"
exit 1
fi
ORG=$1
USER=Admin
if [[ $# -eq 2 ]]
then
USER=$2
fi
MSP=
if [[ "$ORG" == "exporterorg" ]]
then
MSP=ExporterOrgMSP
PORT=$exporterorg_PORT
elif [[ "$ORG" == "importerorg" ]]
then
MSP=ImporterOrgMSP
PORT=$importerorg_PORT
elif [[ "$ORG" == "carrierorg" ]]
then
MSP=CarrierOrgMSP
PORT=$carrierorg_PORT
elif [[ "$ORG" == "regulatororg" ]]
then
MSP=RegulatorOrgMSP
PORT=$regulatororg_PORT
elif [[ "$ORG" == "exportingentityorg" ]]
then
MSP=ExportingEntityOrgMSP
PORT=$exportingentityorg_PORT
else
echo "Unknown Org: "$ORG
exit 1
fi
CORE_PEER_LOCALMSPID=$MSP
CORE_PEER_TLS_ROOTCERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/$ORG.trade.com/peers/peer0.$ORG.trade.com/tls/ca.crt
CORE_PEER_MSPCONFIGPATH=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/$ORG.trade.com/users/$USER@$ORG.trade.com/msp
CORE_PEER_ADDRESS=peer0.$ORG.trade.com:$PORT
CORE_PEER_TLS_CERT_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/$ORG.trade.com/peers/peer0.$ORG.trade.com/tls/server.crt
CORE_PEER_TLS_KEY_FILE=/opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/$ORG.trade.com/peers/peer0.$ORG.trade.com/tls/server.key
}
packageChaincode() {
setOrganization exporterorg
set -x
peer lifecycle chaincode package $CC_PKG_FILE --path ./contracts/$CC_VERSION/$CC_LABEL/ --lang $CC_LANGUAGE --label $CC_LABEL >&log.txt
res=$?
set +x
cat log.txt
if [ ! -f $CC_PKG_FILE ]
then
res=1
fi
verifyResult $res "Chaincode packaging failed"
echo "===================== Chaincode packaged ===================== "
echo
}
installChaincodeInOrg() {
ORG=$1
setOrganization $ORG
if [ ! -f $CC_PKG_FILE ]
then
res=1
else
set -x
peer lifecycle chaincode install --connTimeout 300s $CC_PKG_FILE >&log.txt
res=$?
set +x
fi
cat log.txt
verifyResult $res "Failed to install chaincode on peer0.${ORG}.trade.com for channel '$CHANNEL_NAME' "
CC_PKG_ID_COUNT=$(peer lifecycle chaincode queryinstalled --connTimeout 120s | grep "Label: "$CC_LABEL | wc -l)
if [ $CC_PKG_ID_COUNT != $CC_SEQUENCE_NUM ]
then
verifyResult 1 "Failed to verify chaincode installation on peer0.${ORG}.trade.com for channel '$CHANNEL_NAME' "
fi
}
installChaincode() {
OLD_CC_PKG_IDS=$(peer lifecycle chaincode queryinstalled --connTimeout 120s | grep -v "Installed\ chaincodes\ on\ peer" | awk '{print $3}')
for org in $PEERORGLIST; do
installChaincodeInOrg $org
echo "===================== Installed chaincode on peer0.${org}.trade.com for channel '$CHANNEL_NAME' ===================== "
echo
done
}
approveChaincodeDefinitionForOrg() {
ORG=$1
setOrganization $ORG
set -x
peer lifecycle chaincode approveformyorg --connTimeout 120s -o $ORDERER_HOST:$ORDERER_PORT --ordererTLSHostnameOverride $ORDERER_HOST --channelID $CHANNEL_NAME --name $CC_LABEL --version $CC_VERSION --signature-policy $ENDORSEMENT_POLICY --init-required --package-id $CC_PKG_ID --sequence $CC_SEQUENCE_NUM --tls true --cafile $ORDERER_CA >&log.txt
res=$?
set +x
cat log.txt
verifyResult $res "Failed to approve chaincode definition for ${ORG} for channel '$CHANNEL_NAME' "
}
approveChaincodeDefinitions() {
ENDORSEMENT_POLICY=
for org in $PEERORGLIST; do
setOrganization $org
if [ "$ENDORSEMENT_POLICY" == "" ]
then
ENDORSEMENT_POLICY="AND('"$MSP.member"'"
else
ENDORSEMENT_POLICY=$ENDORSEMENT_POLICY,"'"$MSP.member"'"
fi
CC_PKG_ID_COUNT=$(peer lifecycle chaincode queryinstalled --connTimeout 120s | grep "Label: "$CC_LABEL | wc -l)
if [ $CC_PKG_ID_COUNT != $CC_SEQUENCE_NUM ]
then
verifyResult 1 "Failed to verify chaincode installation on peer0.$org.trade.com for channel '$CHANNEL_NAME' "
fi
done
ENDORSEMENT_POLICY=$ENDORSEMENT_POLICY")"
# Get the package ID from an org peer that is guaranteed to run all of our chaincodes
setOrganization exporterorg
peer lifecycle chaincode queryinstalled --connTimeout 120s | grep -v "Installed\ chaincodes\ on\ peer" | grep $CC_LABEL > install.tmp
if [ "$OLD_CC_PKG_IDS" != "" ]
then
for OLD_CC_PKG_ID in $OLD_CC_PKG_IDS
do
grep -v $OLD_CC_PKG_ID install.tmp > install1.tmp
mv install1.tmp install.tmp
done
fi
CC_PKG_ID=$(cat install.tmp | awk '{print $3}')
rm install.tmp
CC_PKG_ID=${CC_PKG_ID:0:${#CC_PKG_ID}-1} # Remove the comma at the end
# Approve definition by each peer on the channel
if [ "$NUM_ORGS_IN_CHANNEL" == "3" ]
then
ORG_LIST="exporterorg importerorg regulatororg"
else
ORG_LIST="exporterorg importerorg carrierorg regulatororg"
fi
if [ "$CC_SEQUENCE_NUM" == "2" ]
then
ORG_LIST=$ORG_LIST" exportingentityorg"
fi
for org in $ORG_LIST; do
approveChaincodeDefinitionForOrg $org
echo "===================== Approved chaincode definitions for ${org} for channel '$CHANNEL_NAME' ===================== "
echo
done
}
commitChaincodeDefinition() {
setOrganization exporterorg
ORG_PEER_CONNECTION=""
READINESS=$(peer lifecycle chaincode checkcommitreadiness --connTimeout 120s --channelID $CHANNEL_NAME --name $CC_LABEL --version $CC_VERSION --init-required --sequence $CC_SEQUENCE_NUM --tls true --cafile $ORDERER_CA --output json)
if [ "$NUM_ORGS_IN_CHANNEL" == "3" ]
then
ORG_LIST="exporterorg importerorg regulatororg"
else
ORG_LIST="exporterorg importerorg carrierorg regulatororg"
fi
if [ "$CC_SEQUENCE_NUM" == "2" ]
then
ORG_LIST=$ORG_LIST" exportingentityorg"
fi
for org in $ORG_LIST; do
READINESS_FOR_ORG=$(echo $READINESS | jq .approvals.${org})
if [ ! $READINESS_FOR_ORG ]
then
verifyResult 1 "${org} has not approved the chaincode definition for channel '$CHANNEL_NAME' yet"
fi
port_key=${org}_PORT
echo "Chaincode definition approved by ${org}"
ORG_PEER_CONNECTION=$ORG_PEER_CONNECTION" --peerAddresses peer0.${org}.trade.com:${!port_key} --tlsRootCertFiles /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/${org}.trade.com/peers/peer0.${org}.trade.com/tls/ca.crt"
done
ENDORSEMENT_POLICY=
for org in $PEERORGLIST; do
setOrganization $org
if [ "$ENDORSEMENT_POLICY" == "" ]
then
ENDORSEMENT_POLICY="AND('"$MSP.member"'"
else
ENDORSEMENT_POLICY=$ENDORSEMENT_POLICY,"'"$MSP.member"'"
fi
done
ENDORSEMENT_POLICY=$ENDORSEMENT_POLICY")"
set -x
peer lifecycle chaincode commit --connTimeout 120s -o $ORDERER_HOST:$ORDERER_PORT --ordererTLSHostnameOverride $ORDERER_HOST --channelID $CHANNEL_NAME --name $CC_LABEL --version $CC_VERSION --sequence $CC_SEQUENCE_NUM --signature-policy $ENDORSEMENT_POLICY --init-required --tls true --cafile $ORDERER_CA $ORG_PEER_CONNECTION >&log.txt
res=$?
set +x
cat log.txt
verifyResult $res "Failed to commit chaincode definition for channel '$CHANNEL_NAME' "
CC_COMMITMENT_MESSAGE="Committed chaincode definition for chaincode '${CC_LABEL}' on channel '${CHANNEL_NAME}'"
CC_COMMITMENT=$(peer lifecycle chaincode querycommitted --connTimeout 120s --channelID $CHANNEL_NAME --name $CC_LABEL --cafile $ORDERER_CA | grep "$CC_COMMITMENT_MESSAGE" | wc -l)
if [ $CC_COMMITMENT != 1 ]
then
verifyResult 1 "Failed to verify chaincode definition commitment on channel '$CHANNEL_NAME' "
fi
echo "===================== Committed chaincode definition on channel '$CHANNEL_NAME' ===================== "
}
initializeChaincode() {
setOrganization exporterorg User1
ORG_PEER_CONNECTION=""
for org in $PEERORGLIST; do
port_key=${org}_PORT
ORG_PEER_CONNECTION=$ORG_PEER_CONNECTION" --peerAddresses peer0.${org}.trade.com:${!port_key} --tlsRootCertFiles /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/${org}.trade.com/peers/peer0.${org}.trade.com/tls/ca.crt"
done
set -x
peer chaincode invoke --connTimeout 120s -o $ORDERER_HOST:$ORDERER_PORT --ordererTLSHostnameOverride $ORDERER_HOST -C $CHANNEL_NAME -n $CC_LABEL --isInit --tls true --waitForEvent --cafile $ORDERER_CA $ORG_PEER_CONNECTION -c '{"function":"'$CC_FUNC'","Args":['"$CC_ARGS"']}' >&log.txt
res=$?
set +x
cat log.txt
verifyResult $res "Failed to initialize chaincode on channel '$CHANNEL_NAME' "
echo "===================== Initialized chaincode on channel '$CHANNEL_NAME' ===================== "
}
installAndApproveContractOnNewOrg() {
# First, install and approve contract on new org peer
setOrganization exportingentityorg
# Use the old chaincode version to install the contract on the new org's peer
TEMP_CC_VERSION=$CC_VERSION
CC_VERSION=$OLD_CC_VERSION
CC_PKG_FILE=${CC_LABEL}_${CC_VERSION}.tar.gz
packageChaincode
installChaincodeInOrg exportingentityorg
ENDORSEMENT_POLICY=
for org in $PEERORGLIST; do
setOrganization $org
if [ "$ENDORSEMENT_POLICY" == "" ]
then
ENDORSEMENT_POLICY="AND('"$MSP.member"'"
else
ENDORSEMENT_POLICY=$ENDORSEMENT_POLICY,"'"$MSP.member"'"
fi
done
ENDORSEMENT_POLICY=$ENDORSEMENT_POLICY")"
CC_PKG_ID=$(peer lifecycle chaincode queryinstalled --connTimeout 120s | grep -v "Installed\ chaincodes\ on\ peer" | grep $CC_LABEL)
CC_PKG_ID=$(echo $CC_PKG_ID | awk '{print $3}')
CC_PKG_ID=${CC_PKG_ID:0:${#CC_PKG_ID}-1} # Remove the comma at the end
approveChaincodeDefinitionForOrg exportingentityorg
# Use the new chaincode version now, for the upgrade
CC_VERSION=$TEMP_CC_VERSION
CC_PKG_FILE=${CC_LABEL}_${CC_VERSION}.tar.gz
}
upgradeContract() {
# First, install and approve contract on new org peer
installAndApproveContractOnNewOrg
# Now increment the sequence number and update the contract on 5 peers in 5 different orgs
PEERORGLIST=$PEERORGLIST" exportingentityorg"
CC_SEQUENCE_NUM=2
packageChaincode
installChaincode
approveChaincodeDefinitions
commitChaincodeDefinition
initializeChaincode
}
invokeChaincode() {
setOrganization $ORGANIZATION User1
ORG_PEER_CONNECTION=""
for org in $PEERORGLIST; do
ORG_PEER_CONNECTION=$ORG_PEER_CONNECTION" --peerAddresses peer0.${org}.trade.com:${${org}_PORT} --tlsRootCertFiles /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/peerOrganizations/${org}.trade.com/peers/peer0.${org}.trade.com/tls/ca.crt"
done
set -x
peer chaincode invoke --connTimeout 120s -o $ORDERER_HOST:$ORDERER_PORT --ordererTLSHostnameOverride $ORDERER_HOST -C $CHANNEL_NAME -n $CC_LABEL --tls true --waitForEvent --cafile $ORDERER_CA $ORG_PEER_CONNECTION -c '{"function":"'$CC_FUNC'","Args":['"$CC_ARGS"']}' >&log.txt
res=$?
set +x
cat log.txt
verifyResult $res "Failed to invoke chaincode transaction on channel '$CHANNEL_NAME' "
echo "===================== Invoked chaincode transaction on channel '$CHANNEL_NAME' ===================== "
}
queryChaincode() {
setOrganization $ORGANIZATION User1
set -x
peer chaincode query --connTimeout 120s -C $CHANNEL_NAME -n $CC_LABEL -c '{"function":"'$CC_FUNC'","Args":['"$CC_ARGS"']}' >&log.txt
res=$?
set +x
cat log.txt
verifyResult $res "Failed to query chaincode function on channel '$CHANNEL_NAME' "
echo "===================== Queried chaincode function on channel '$CHANNEL_NAME' ===================== "
}
if [[ $# -ne 1 ]]
then
echo "Run: chaincode.sh [package|install|approve|commit|init|upgrade|invoke|query]"
exit 1
fi
echo $1
if [ "$1" == "package" ]
then
## Package chaincode
echo "Packaging chaincode..."
packageChaincode
echo "========= Chaincode packaging completed =========== "
elif [ "$1" == "install" ]
then
## Install chaincode on org peers
echo "Installing chaincode on org peers..."
installChaincode
echo "========= Chaincode installations completed =========== "
elif [ "$1" == "approve" ]
then
## Approve chaincode definition for orgs
echo "Approving chaincode definition for orgs..."
approveChaincodeDefinitions
echo "========= Chaincode definitions approved =========== "
elif [ "$1" == "commit" ]
then
## Commit chaincode definition to channel ledger
echo "Committing chaincode definition..."
commitChaincodeDefinition
echo "========= Chaincode definition committed =========== "
elif [ "$1" == "init" ]
then
## Initialize chaincode by calling an init function (doesn't have to be named "init")
echo "Initializing chaincode..."
initializeChaincode
echo "========= Chaincode initialized =========== "
elif [ "$1" == "upgrade" ]
then
## Upgrade chaincode by calling package, install, approve, commit, and init
echo "Upgrading chaincode..."
upgradeContract
echo "========= Chaincode upgraded =========== "
elif [ "$1" == "invoke" ]
then
## Invoke chaincode transaction
echo "Invoking chaincode..."
invokeChaincode
echo "========= Chaincode invoked =========== "
elif [ "$1" == "query" ]
then
## Query chaincode function
echo "Querying chaincode..."
queryChaincode
echo "========= Chaincode queried =========== "
else
echo "Unsupported chaincode operation: "$1
fi
echo
exit 0