-
Notifications
You must be signed in to change notification settings - Fork 7
/
blockreader.go
318 lines (254 loc) · 7.39 KB
/
blockreader.go
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
package main
import (
"crypto/sha256"
"encoding/hex"
"encoding/json"
"flag"
"fmt"
"github.com/golang/protobuf/proto"
"github.com/hyperledger/fabric-protos-go/common"
"github.com/hyperledger/fabric-protos-go/peer"
"github.com/hyperledger/fabric-sdk-go/pkg/client/ledger"
contextAPI "github.com/hyperledger/fabric-sdk-go/pkg/common/providers/context"
"github.com/hyperledger/fabric-sdk-go/pkg/common/providers/fab"
"github.com/hyperledger/fabric-sdk-go/pkg/core/config"
"github.com/hyperledger/fabric-sdk-go/pkg/fabsdk"
"github.com/pkg/errors"
)
var channelCtx contextAPI.ChannelProvider
var ChannelID string
var TxnID string
const (
OrgAdmin = "Admin"
OrgName = "org1"
ConfigFile = "config.yaml"
)
type BlockMetadataIndex int32
const (
BlockMetadataIndex_SIGNATURES BlockMetadataIndex = 0
BlockMetadataIndex_LAST_CONFIG BlockMetadataIndex = 1 // Deprecated: Do not use.
BlockMetadataIndex_TRANSACTIONS_FILTER BlockMetadataIndex = 2
BlockMetadataIndex_ORDERER BlockMetadataIndex = 3 // Deprecated: Do not use.
BlockMetadataIndex_COMMIT_HASH BlockMetadataIndex = 4
)
func Initialize() error {
sdk, err := fabsdk.New(config.FromFile(ConfigFile))
if err != nil {
return errors.WithMessage(err, "failed to create SDK")
}
fmt.Println("SDK Initialized Successfully")
channelCtx = sdk.ChannelContext(ChannelID,
fabsdk.WithUser(OrgAdmin),
fabsdk.WithOrg(OrgName))
fmt.Println("Channel Context Initialized Successfully")
return nil
}
func CreateLedgerClient() (*ledger.Client, error) {
lc, err := ledger.New(channelCtx)
if err != nil {
return nil, errors.WithMessage(err, "failed to create ledger client")
}
fmt.Println("Ledger Client Created Successfully\n")
return lc, nil
}
func BlockReader() error {
lc, err := CreateLedgerClient()
if err != nil {
return errors.WithMessage(err, "failed to create ledger client")
}
block, err := QueryBlock(lc)
if err != nil {
return errors.WithMessage(err, "failed to query block")
}
/********************** READ THE BLOCK **************************/
/*
type Block struct {
Header *BlockHeader
Data *BlockData
Metadata *BlockMetadata
}
*/
/////////////////////////// -> BlockHeader <- //////////////////////////////////
blockHeader := block.Header
/*
type BlockHeader struct {
Number uint64
PreviousHash []byte
DataHash []byte
}
*/
previousHash := sha256.Sum256(blockHeader.PreviousHash)
dataHash := sha256.Sum256(blockHeader.DataHash)
blockHeaderJson := BlockHeader{
Number: blockHeader.Number,
PreviousHash: hex.EncodeToString(previousHash[:]),
DataHash: hex.EncodeToString(dataHash[:]),
}
//////////////////////////////////////////////////////////////////////////////////
/////////////////////////// -> BlockData <- //////////////////////////////////
/*
type BlockData struct {
Data [][]byte
}
*/
blockData := block.Data.Data
//First Get the Envelope from the BlockData
/*
type Envelope struct {
Payload []byte
Signature []byte
}
*/
envelope, err := GetEnvelopeFromBlock(blockData[0])
if err != nil {
return errors.WithMessage(err, "unmarshaling Envelope error: ")
}
//Retrieve the Payload from the Envelope
/*
type Payload struct {
Header *Header
Data []byte
}
*/
payload := &common.Payload{}
err = proto.Unmarshal(envelope.Payload, payload)
if err != nil {
return errors.WithMessage(err, "unmarshaling Payload error: ")
}
payloadJson, err := GetPayloadJson(payload)
if err != nil {
return errors.WithMessage(err, "unmarshaling Payload error: ")
}
//Read the Transaction from the Payload Data
/*
type TransactionAction struct {
Header []byte
Payload []byte
}
*/
transaction := &peer.Transaction{}
err = proto.Unmarshal(payload.Data, transaction)
if err != nil {
return errors.WithMessage(err, "unmarshaling Payload Transaction error: ")
}
// Payload field is marshalled object of ChaincodeActionPayload
/*
type ChaincodeActionPayload struct {
ChaincodeProposalPayload []byte
Action *ChaincodeEndorsedAction
}
*/
chaincodeActionPayload := &peer.ChaincodeActionPayload{}
err = proto.Unmarshal(transaction.Actions[0].Payload, chaincodeActionPayload)
if err != nil {
return errors.WithMessage(err, "unmarshaling Chaincode Action Payload error: ")
}
transactionJson, err := GetTransactionJson(chaincodeActionPayload)
if err != nil {
return errors.WithMessage(err, "failed to get Transaction Json error: ")
}
headerJson := Header{
Payload: payloadJson,
}
dataJson := Data{
Transaction: transactionJson,
}
envelopeJson := Envelope{
Header: headerJson,
Data: dataJson,
}
blockDataJson := BlockData{
Envelope: envelopeJson,
}
//////////////////////////////////////////////////////////////////////////////////
/////////////////////////// -> BlockMetaData <- //////////////////////////////////
blockMetaData := block.Metadata
metadata := &common.Metadata{}
err = proto.Unmarshal(blockMetaData.Metadata[BlockMetadataIndex_SIGNATURES], metadata)
if err != nil {
return errors.Wrapf(err, "error unmarshaling metadata")
}
/*
type Metadata struct {
Value []byte
Signatures []*MetadataSignature
}
type MetadataSignature struct {
SignatureHeader []byte
Signature []byte
}
*/
signatureHeader := &common.SignatureHeader{}
err = proto.Unmarshal(metadata.Signatures[0].SignatureHeader, signatureHeader)
if err != nil {
return errors.WithMessage(err, "unmarshaling Signature Header error: ")
}
signatureHeaderJson, err := GetSignatureHeaderJson(signatureHeader)
if err != nil {
return errors.WithMessage(err, "failed get Signature Header")
}
blockMetaDataJson := BlockMetaData{
Value: metadata.Value,
Signature: metadata.Signatures[0].Signature,
SignatureHeader: signatureHeaderJson,
}
//////////////////////////////////////////////////////////////////////////////////
blockReader := Block{
BlockHeader: blockHeaderJson,
BlockData: blockDataJson,
BlockMetaData: blockMetaDataJson,
}
fmt.Println("************* BLOCK READER JSON ************* ")
var jsonData []byte
jsonData, err = json.MarshalIndent(blockReader, "", " ")
if err != nil {
errors.WithMessage(err, "failed to marshal Json")
}
fmt.Println(string(jsonData))
return nil
}
func QueryBlock(lc *ledger.Client) (*common.Block, error) {
block, err := lc.QueryBlockByTxID(fab.TransactionID(TxnID))
if err != nil {
return nil, errors.WithMessage(err, "failed to query block by transaction ID")
}
if block == nil {
return nil, errors.New("No Block exists for this TxnID - " + TxnID)
}
return block, nil
}
func GetEnvelopeFromBlock(data []byte) (*common.Envelope, error) {
var err error
env := &common.Envelope{}
if err = proto.Unmarshal(data, env); err != nil {
return nil, errors.Wrap(err, "error unmarshaling Envelope")
}
return env, nil
}
func CToGoString(c []byte) string {
n := -1
for i, b := range c {
if b == 0 {
break
}
n = i
}
return string(c[:n+1])
}
func main() {
flag.StringVar(&ChannelID, "channelId", "", "add channel name")
flag.StringVar(&TxnID, "txnId", "", "add txnId")
flag.Parse()
if len(TxnID) == 0 || len(ChannelID) == 0 {
fmt.Println("Please add the 'txnId' and 'channelId' to continue...")
} else {
err := Initialize()
if err != nil {
fmt.Println("failed to initialize")
}
err = BlockReader()
if err != nil {
fmt.Println(" failed to read the Block - ", err)
}
}
}