forked from AmarMundi/Monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
613 lines (460 loc) · 18 KB
/
main.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
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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
package main
import (
"encoding/json"
"errors"
"fmt"
"strconv"
"github.com/hyperledger/fabric/core/chaincode/shim"
"github.com/hyperledger/fabric/core/crypto/primitives"
)
// CTS is a high level smart contract that CTSs together business artifact based smart contracts
type CTS struct {
}
// AssetDetails is for storing Asset Details
type AssetDetails struct{
CtnId string `json:"ctnId"`
Title string `json:"title"`
Gender string `json:"gender"`
FirstName string `json:"firstName"`
LastName string `json:"lastName"`
Dob string `json:"dob"`
Email string `json:"email"`
Country string `json:"country"`
Address string `json:"address"`
City string `json:"city"`
Zip string `json:"zip"`
CreatedBy string `json:"createdBy"`
TotalPoint string `json:"totalPoint"`
}
// Transaction is for storing transaction Details
type Transaction struct{
TrxId string `json:"trxId"`
TimeStamp string `json:"timeStamp"`
CtnId string `json:"ctnId"`
Source string `json:"source"`
Points string `json:"points"`
Trxntype string `json:"trxntype"`
TrxnSubType string `json:"trxnSubType"`
Remarks string `json:"remarks"`
}
// GetMile is for storing retreived Get the total Points
type GetMile struct{
TotalPoint string `json:"totalPoint"`
}
// to return the verify result
type VerifyU struct{
Result string `json:"result"`
}
// Init initializes the smart contracts
func (t *CTS) Init(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error) {
// Check if table already exists
_, err := stub.GetTable("AssetDetails")
if err == nil {
// Table already exists; do not recreate
return nil, nil
}
// Create application Table
err = stub.CreateTable("AssetDetails", []*shim.ColumnDefinition{
&shim.ColumnDefinition{Name: "ctnId", Type: shim.ColumnDefinition_STRING, Key: true},
&shim.ColumnDefinition{Name: "title", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "gender", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "firstName", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "lastName", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "dob", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "email", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "country", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "address", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "city", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "zip", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "createdBy", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "totalPoint", Type: shim.ColumnDefinition_STRING, Key: false},
})
if err != nil {
return nil, errors.New("Failed creating AssetDetails.")
}
// Check if table already exists
_, err = stub.GetTable("Transaction")
if err == nil {
// Table already exists; do not recreate
return nil, nil
}
// Create application Table
err = stub.CreateTable("Transaction", []*shim.ColumnDefinition{
&shim.ColumnDefinition{Name: "trxId", Type: shim.ColumnDefinition_STRING, Key: true},
&shim.ColumnDefinition{Name: "timeStamp", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "ctnId", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "source", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "points", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "trxntype", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "trxnSubType", Type: shim.ColumnDefinition_STRING, Key: false},
&shim.ColumnDefinition{Name: "remarks", Type: shim.ColumnDefinition_STRING, Key: false},
})
if err != nil {
return nil, errors.New("Failed creating ApplicationTable.")
}
// setting up the users role
stub.PutState("user_type1_1", []byte("ABC"))
stub.PutState("user_type1_2", []byte("DEF"))
stub.PutState("user_type1_3", []byte("PQR"))
stub.PutState("user_type1_4", []byte("XYZ"))
return nil, nil
}
//registerAsset to register a asset
func (t *CTS) registerAsset(stub shim.ChaincodeStubInterface, args []string) ([]byte, error) {
if len(args) != 12 {
return nil, fmt.Errorf("Incorrect number of arguments. Expecting 12. Got: %d.", len(args))
}
ctnId:=args[0]
title:=args[1]
gender:=args[2]
firstName:=args[3]
lastName:=args[4]
dob:=args[5]
email:=args[6]
country:=args[7]
address:=args[8]
city:=args[9]
zip:=args[10]
assignerOrg1, err := stub.GetState(args[11])
assignerOrg := string(assignerOrg1)
createdBy:=assignerOrg
totalPoint:="0"
// Insert a row
ok, err := stub.InsertRow("AssetDetails", shim.Row{
Columns: []*shim.Column{
&shim.Column{Value: &shim.Column_String_{String_: ctnId}},
&shim.Column{Value: &shim.Column_String_{String_: title}},
&shim.Column{Value: &shim.Column_String_{String_: gender}},
&shim.Column{Value: &shim.Column_String_{String_: firstName}},
&shim.Column{Value: &shim.Column_String_{String_: lastName}},
&shim.Column{Value: &shim.Column_String_{String_: dob}},
&shim.Column{Value: &shim.Column_String_{String_: email}},
&shim.Column{Value: &shim.Column_String_{String_: country}},
&shim.Column{Value: &shim.Column_String_{String_: address}},
&shim.Column{Value: &shim.Column_String_{String_: city}},
&shim.Column{Value: &shim.Column_String_{String_: zip}},
&shim.Column{Value: &shim.Column_String_{String_: createdBy}},
&shim.Column{Value: &shim.Column_String_{String_: totalPoint}},
}})
if err != nil {
return nil, err
}
if !ok && err == nil {
return nil, errors.New("Row already exists.")
}
return nil, nil
}
// add or delete points and insert the transaction(irrespective of org)
func (t *CTS) addDeleteMile(stub shim.ChaincodeStubInterface, args []string) ([]byte, error) {
if len(args) != 8 {
return nil, errors.New("Incorrect number of arguments. Expecting 2.")
}
trxId := args[0]
timeStamp:=args[1]
ctnId := args[2]
assignerOrg1, err := stub.GetState(args[3])
assignerOrg := string(assignerOrg1)
source := assignerOrg
points := args[4]
trxntype := args[5]
trxnSubType := args[6]
remarks := args[7]
newPoints, _ := strconv.ParseInt(points, 10, 0)
//whether ADD_PENDING, DELETE_PENDING
if trxnSubType == "ADD_PENDING" || trxnSubType == "DELETE_PENDING"{
newPoints = 0
}
// Get the row pertaining to this ctnid
var columns []shim.Column
col1 := shim.Column{Value: &shim.Column_String_{String_: ctnId}}
columns = append(columns, col1)
row, err := stub.GetRow("AssetDetails", columns)
if err != nil {
return nil, fmt.Errorf("Error: Failed retrieving asset with ctnid %s. Error %s", ctnId, err.Error())
}
// GetRows returns empty message if key does not exist
if len(row.Columns) == 0 {
return nil, nil
}
newRoyaltyPoint := row.Columns[12].GetString_()
if trxntype=="add"{
earlierMile:=row.Columns[12].GetString_()
earlierRoyalty, _:=strconv.ParseInt(earlierMile, 10, 0)
newRoyaltyPoint = strconv.Itoa(int(earlierRoyalty) + int(newPoints))
}else if trxntype=="delete"{
earlierMile:=row.Columns[12].GetString_()
earlierRoyalty, _:=strconv.ParseInt(earlierMile, 10, 0)
newRoyaltiPointtoTest := int(earlierRoyalty) - int(newPoints)
if newRoyaltiPointtoTest < 0 {
return nil, errors.New("can't deduct as the resulting royalty becoming less than zero.")
}
newRoyaltyPoint = strconv.Itoa(int(earlierRoyalty) - int(newPoints))
}else{
return nil, fmt.Errorf("Error: Failed retrieving asset with ctnid %s. Error %s", ctnId, err.Error())
}
//End- Check that the currentStatus to newStatus transition is accurate
// Delete the row pertaining to this ctnid
err = stub.DeleteRow(
"AssetDetails",
columns,
)
if err != nil {
return nil, errors.New("Failed deleting row.")
}
//ctnId := row.Columns[0].GetString_()
title := row.Columns[1].GetString_()
gender := row.Columns[2].GetString_()
firstName := row.Columns[3].GetString_()
lastName := row.Columns[4].GetString_()
dob := row.Columns[5].GetString_()
email := row.Columns[6].GetString_()
country := row.Columns[7].GetString_()
address := row.Columns[8].GetString_()
city := row.Columns[9].GetString_()
zip := row.Columns[10].GetString_()
createdBy := row.Columns[11].GetString_()
totalPoint := newRoyaltyPoint
// Insert a row
ok, err := stub.InsertRow("AssetDetails", shim.Row{
Columns: []*shim.Column{
&shim.Column{Value: &shim.Column_String_{String_: ctnId}},
&shim.Column{Value: &shim.Column_String_{String_: title}},
&shim.Column{Value: &shim.Column_String_{String_: gender}},
&shim.Column{Value: &shim.Column_String_{String_: firstName}},
&shim.Column{Value: &shim.Column_String_{String_: lastName}},
&shim.Column{Value: &shim.Column_String_{String_: dob}},
&shim.Column{Value: &shim.Column_String_{String_: email}},
&shim.Column{Value: &shim.Column_String_{String_: country}},
&shim.Column{Value: &shim.Column_String_{String_: address}},
&shim.Column{Value: &shim.Column_String_{String_: city}},
&shim.Column{Value: &shim.Column_String_{String_: zip}},
&shim.Column{Value: &shim.Column_String_{String_: createdBy}},
&shim.Column{Value: &shim.Column_String_{String_: totalPoint}},
}})
if err != nil {
return nil, err
}
if !ok && err == nil {
return nil, errors.New("Row already exists.")
}
//inserting the transaction
// Insert a row
ok, err = stub.InsertRow("Transaction", shim.Row{
Columns: []*shim.Column{
&shim.Column{Value: &shim.Column_String_{String_: trxId}},
&shim.Column{Value: &shim.Column_String_{String_: timeStamp}},
&shim.Column{Value: &shim.Column_String_{String_: ctnId}},
&shim.Column{Value: &shim.Column_String_{String_: source}},
&shim.Column{Value: &shim.Column_String_{String_: points}},
&shim.Column{Value: &shim.Column_String_{String_: trxntype}},
&shim.Column{Value: &shim.Column_String_{String_: trxnSubType}},
&shim.Column{Value: &shim.Column_String_{String_: remarks}},
}})
if err != nil {
return nil, err
}
if !ok && err == nil {
return nil, errors.New("Row already exists.")
}
return nil, nil
}
//get the miles against the ctnid (irrespective of org)
func (t *CTS) getMile(stub shim.ChaincodeStubInterface, args []string) ([]byte, error) {
if len(args) != 1 {
return nil, errors.New("Incorrect number of arguments. Expecting ctnId to query")
}
ctnId := args[0]
// Get the row pertaining to this ctnId
var columns []shim.Column
col1 := shim.Column{Value: &shim.Column_String_{String_: ctnId}}
columns = append(columns, col1)
row, err := stub.GetRow("AssetDetails", columns)
if err != nil {
jsonResp := "{\"Error\":\"Failed to get the data for the ctnId " + ctnId + "\"}"
return nil, errors.New(jsonResp)
}
// GetRows returns empty message if key does not exist
if len(row.Columns) == 0 {
jsonResp := "{\"Error\":\"Failed to get the data for the ctnId " + ctnId + "\"}"
return nil, errors.New(jsonResp)
}
res2E := GetMile{}
res2E.TotalPoint = row.Columns[12].GetString_()
mapB, _ := json.Marshal(res2E)
fmt.Println(string(mapB))
return mapB, nil
}
//get all transaction against the ctnid (depends on org)
func (t *CTS) getTransaction(stub shim.ChaincodeStubInterface, args []string) ([]byte, error) {
if len(args) != 2 {
return nil, errors.New("Incorrect number of arguments. Expecting ctnId to query")
}
ctnId := args[0]
assignerRole := args[1]
var columns []shim.Column
rows, err := stub.GetRows("Transaction", columns)
if err != nil {
return nil, fmt.Errorf("Failed to retrieve row")
}
assignerOrg1, err := stub.GetState(assignerRole)
assignerOrg := string(assignerOrg1)
res2E:= []*Transaction{}
for row := range rows {
newApp:= new(Transaction)
newApp.TrxId = row.Columns[0].GetString_()
newApp.TimeStamp = row.Columns[1].GetString_()
newApp.CtnId = row.Columns[2].GetString_()
newApp.Source = row.Columns[3].GetString_()
newApp.Points = row.Columns[4].GetString_()
newApp.Trxntype = row.Columns[5].GetString_()
newApp.TrxnSubType = row.Columns[6].GetString_()
newApp.Remarks = row.Columns[7].GetString_()
if newApp.CtnId == ctnId && newApp.Source == assignerOrg{
res2E=append(res2E,newApp)
}
}
mapB, _ := json.Marshal(res2E)
fmt.Println(string(mapB))
return mapB, nil
}
//get All transaction against ctnid (irrespective of org)
func (t *CTS) getAllTransaction(stub shim.ChaincodeStubInterface, args []string) ([]byte, error) {
if len(args) != 1 {
return nil, errors.New("Incorrect number of arguments. Expecting ctnId to query")
}
ctnId := args[0]
//assignerRole := args[1]
var columns []shim.Column
rows, err := stub.GetRows("Transaction", columns)
if err != nil {
return nil, fmt.Errorf("Failed to retrieve row")
}
//assignerOrg1, err := stub.GetState(assignerRole)
//assignerOrg := string(assignerOrg1)
res2E:= []*Transaction{}
for row := range rows {
newApp:= new(Transaction)
newApp.TrxId = row.Columns[0].GetString_()
newApp.TimeStamp = row.Columns[1].GetString_()
newApp.CtnId = row.Columns[2].GetString_()
newApp.Source = row.Columns[3].GetString_()
newApp.Points = row.Columns[4].GetString_()
newApp.Trxntype = row.Columns[5].GetString_()
newApp.TrxnSubType = row.Columns[6].GetString_()
newApp.Remarks = row.Columns[7].GetString_()
if newApp.CtnId == ctnId{
res2E=append(res2E,newApp)
}
}
mapB, _ := json.Marshal(res2E)
fmt.Println(string(mapB))
return mapB, nil
}
// to get the deatils of a asset against ctnid (for internal testing, irrespective of org)
func (t *CTS) getAsset(stub shim.ChaincodeStubInterface, args []string) ([]byte, error) {
if len(args) != 1 {
return nil, errors.New("Incorrect number of arguments. Expecting ctnId to query")
}
ctnId := args[0]
// Get the row pertaining to this ctnId
var columns []shim.Column
col1 := shim.Column{Value: &shim.Column_String_{String_: ctnId}}
columns = append(columns, col1)
row, err := stub.GetRow("AssetDetails", columns)
if err != nil {
jsonResp := "{\"Error\":\"Failed to get the data for the application " + ctnId + "\"}"
return nil, errors.New(jsonResp)
}
// GetRows returns empty message if key does not exist
if len(row.Columns) == 0 {
jsonResp := "{\"Error\":\"Failed to get the data for the application " + ctnId + "\"}"
return nil, errors.New(jsonResp)
}
res2E := AssetDetails{}
res2E.CtnId = row.Columns[0].GetString_()
res2E.Title = row.Columns[1].GetString_()
res2E.Gender = row.Columns[2].GetString_()
res2E.FirstName = row.Columns[3].GetString_()
res2E.LastName = row.Columns[4].GetString_()
res2E.Dob = row.Columns[5].GetString_()
res2E.Email = row.Columns[6].GetString_()
res2E.Country = row.Columns[7].GetString_()
res2E.Address = row.Columns[8].GetString_()
res2E.City = row.Columns[9].GetString_()
res2E.Zip = row.Columns[10].GetString_()
res2E.CreatedBy = row.Columns[11].GetString_()
res2E.TotalPoint = row.Columns[12].GetString_()
mapB, _ := json.Marshal(res2E)
fmt.Println(string(mapB))
return mapB, nil
}
// verify the asset is present or not (for internal testing, irrespective of org)
func (t *CTS) verifyAsset(stub shim.ChaincodeStubInterface, args []string) ([]byte, error) {
if len(args) != 2 {
return nil, errors.New("Incorrect number of arguments. Expecting ctnId to query")
}
ctnId := args[0]
dob := args[1]
// Get the row pertaining to this ctnId
var columns []shim.Column
col1 := shim.Column{Value: &shim.Column_String_{String_: ctnId}}
columns = append(columns, col1)
row, err := stub.GetRow("AssetDetails", columns)
if err != nil {
jsonResp := "{\"Error\":\"Failed to get the data for the application " + ctnId + "\"}"
return nil, errors.New(jsonResp)
}
// GetRows returns empty message if key does not exist
if len(row.Columns) == 0 {
jsonResp := "{\"Error\":\"Failed to get the data for the application " + ctnId + "\"}"
return nil, errors.New(jsonResp)
}
assetDob := row.Columns[5].GetString_()
res2E := VerifyU{}
if dob == assetDob{
res2E.Result="success"
}else{
res2E.Result="failed"
}
mapB, _ := json.Marshal(res2E)
fmt.Println(string(mapB))
return mapB, nil
}
// Invoke invokes the chaincode
func (t *CTS) Invoke(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error) {
if function == "registerAsset" {
t := CTS{}
return t.registerAsset(stub, args)
} else if function == "addDeleteMile" {
t := CTS{}
return t.addDeleteMile(stub, args)
}
return nil, errors.New("Invalid invoke function name.")
}
// query queries the chaincode
func (t *CTS) Query(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error) {
if function == "getMile" {
t := CTS{}
return t.getMile(stub, args)
} else if function == "getTransaction" {
t := CTS{}
return t.getTransaction(stub, args)
}else if function == "getAllTransaction" {
t := CTS{}
return t.getAllTransaction(stub, args)
} else if function == "getAsset" {
t := CTS{}
return t.getAsset(stub, args)
}else if function == "verifyAsset" {
t := CTS{}
return t.verifyAsset(stub, args)
}
return nil, nil
}
func main() {
primitives.SetSecurityLevel("SHA3", 256)
err := shim.Start(new(CTS))
if err != nil {
fmt.Printf("Error starting CTS: %s", err)
}
}