-
Notifications
You must be signed in to change notification settings - Fork 300
/
vehicles.go
executable file
·793 lines (554 loc) · 36.3 KB
/
vehicles.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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
package main
import (
"errors"
"fmt"
"strconv"
"strings"
"github.com/hyperledger/fabric/core/chaincode/shim"
"encoding/json"
"regexp"
)
var logger = shim.NewLogger("CLDChaincode")
//==============================================================================================================================
// Participant types - Each participant type is mapped to an integer which we use to compare to the value stored in a
// user's eCert
//==============================================================================================================================
//CURRENT WORKAROUND USES ROLES CHANGE WHEN OWN USERS CAN BE CREATED SO THAT IT READ 1, 2, 3, 4, 5
const AUTHORITY = "regulator"
const MANUFACTURER = "manufacturer"
const PRIVATE_ENTITY = "private"
const LEASE_COMPANY = "lease_company"
const SCRAP_MERCHANT = "scrap_merchant"
//==============================================================================================================================
// Status types - Asset lifecycle is broken down into 5 statuses, this is part of the business logic to determine what can
// be done to the vehicle at points in it's lifecycle
//==============================================================================================================================
const STATE_TEMPLATE = 0
const STATE_MANUFACTURE = 1
const STATE_PRIVATE_OWNERSHIP = 2
const STATE_LEASED_OUT = 3
const STATE_BEING_SCRAPPED = 4
//==============================================================================================================================
// Structure Definitions
//==============================================================================================================================
// Chaincode - A blank struct for use with Shim (A HyperLedger included go file used for get/put state
// and other HyperLedger functions)
//==============================================================================================================================
type SimpleChaincode struct {
}
//==============================================================================================================================
// Vehicle - Defines the structure for a car object. JSON on right tells it what JSON fields to map to
// that element when reading a JSON object into the struct e.g. JSON make -> Struct Make.
//==============================================================================================================================
type Vehicle struct {
Make string `json:"make"`
Model string `json:"model"`
Reg string `json:"reg"`
VIN int `json:"VIN"`
Owner string `json:"owner"`
Scrapped bool `json:"scrapped"`
Status int `json:"status"`
Colour string `json:"colour"`
V5cID string `json:"v5cID"`
LeaseContractID string `json:"leaseContractID"`
}
//==============================================================================================================================
// V5C Holder - Defines the structure that holds all the v5cIDs for vehicles that have been created.
// Used as an index when querying all vehicles.
//==============================================================================================================================
type V5C_Holder struct {
V5Cs []string `json:"v5cs"`
}
//==============================================================================================================================
// User_and_eCert - Struct for storing the JSON of a user and their ecert
//==============================================================================================================================
type User_and_eCert struct {
Identity string `json:"identity"`
eCert string `json:"ecert"`
}
//==============================================================================================================================
// Init Function - Called when the user deploys the chaincode
//==============================================================================================================================
func (t *SimpleChaincode) Init(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error) {
//Args
// 0
// peer_address
var v5cIDs V5C_Holder
bytes, err := json.Marshal(v5cIDs)
if err != nil { return nil, errors.New("Error creating V5C_Holder record") }
err = stub.PutState("v5cIDs", bytes)
for i:=0; i < len(args); i=i+2 {
t.add_ecert(stub, args[i], args[i+1])
}
return nil, nil
}
//==============================================================================================================================
// General Functions
//==============================================================================================================================
// get_ecert - Takes the name passed and calls out to the REST API for HyperLedger to retrieve the ecert
// for that user. Returns the ecert as retrived including html encoding.
//==============================================================================================================================
func (t *SimpleChaincode) get_ecert(stub shim.ChaincodeStubInterface, name string) ([]byte, error) {
ecert, err := stub.GetState(name)
if err != nil { return nil, errors.New("Couldn't retrieve ecert for user " + name) }
return ecert, nil
}
//==============================================================================================================================
// add_ecert - Adds a new ecert and user pair to the table of ecerts
//==============================================================================================================================
func (t *SimpleChaincode) add_ecert(stub shim.ChaincodeStubInterface, name string, ecert string) ([]byte, error) {
err := stub.PutState(name, []byte(ecert))
if err == nil {
return nil, errors.New("Error storing eCert for user " + name + " identity: " + ecert)
}
return nil, nil
}
//==============================================================================================================================
// get_caller - Retrieves the username of the user who invoked the chaincode.
// Returns the username as a string.
//==============================================================================================================================
func (t *SimpleChaincode) get_username(stub shim.ChaincodeStubInterface) (string, error) {
username, err := stub.ReadCertAttribute("username");
if err != nil { return "", errors.New("Couldn't get attribute 'username'. Error: " + err.Error()) }
return string(username), nil
}
//==============================================================================================================================
// check_affiliation - Takes an ecert as a string, decodes it to remove html encoding then parses it and checks the
// certificates common name. The affiliation is stored as part of the common name.
//==============================================================================================================================
func (t *SimpleChaincode) check_affiliation(stub shim.ChaincodeStubInterface) (string, error) {
affiliation, err := stub.ReadCertAttribute("role");
if err != nil { return "", errors.New("Couldn't get attribute 'role'. Error: " + err.Error()) }
return string(affiliation), nil
}
//==============================================================================================================================
// get_caller_data - Calls the get_ecert and check_role functions and returns the ecert and role for the
// name passed.
//==============================================================================================================================
func (t *SimpleChaincode) get_caller_data(stub shim.ChaincodeStubInterface) (string, string, error){
user, err := t.get_username(stub)
// if err != nil { return "", "", err }
// ecert, err := t.get_ecert(stub, user);
// if err != nil { return "", "", err }
affiliation, err := t.check_affiliation(stub);
if err != nil { return "", "", err }
return user, affiliation, nil
}
//==============================================================================================================================
// retrieve_v5c - Gets the state of the data at v5cID in the ledger then converts it from the stored
// JSON into the Vehicle struct for use in the contract. Returns the Vehcile struct.
// Returns empty v if it errors.
//==============================================================================================================================
func (t *SimpleChaincode) retrieve_v5c(stub shim.ChaincodeStubInterface, v5cID string) (Vehicle, error) {
var v Vehicle
bytes, err := stub.GetState(v5cID);
if err != nil { fmt.Printf("RETRIEVE_V5C: Failed to invoke vehicle_code: %s", err); return v, errors.New("RETRIEVE_V5C: Error retrieving vehicle with v5cID = " + v5cID) }
err = json.Unmarshal(bytes, &v);
if err != nil { fmt.Printf("RETRIEVE_V5C: Corrupt vehicle record "+string(bytes)+": %s", err); return v, errors.New("RETRIEVE_V5C: Corrupt vehicle record"+string(bytes)) }
return v, nil
}
//==============================================================================================================================
// save_changes - Writes to the ledger the Vehicle struct passed in a JSON format. Uses the shim file's
// method 'PutState'.
//==============================================================================================================================
func (t *SimpleChaincode) save_changes(stub shim.ChaincodeStubInterface, v Vehicle) (bool, error) {
bytes, err := json.Marshal(v)
if err != nil { fmt.Printf("SAVE_CHANGES: Error converting vehicle record: %s", err); return false, errors.New("Error converting vehicle record") }
err = stub.PutState(v.V5cID, bytes)
if err != nil { fmt.Printf("SAVE_CHANGES: Error storing vehicle record: %s", err); return false, errors.New("Error storing vehicle record") }
return true, nil
}
//==============================================================================================================================
// Router Functions
//==============================================================================================================================
// Invoke - Called on chaincode invoke. Takes a function name passed and calls that function. Converts some
// initial arguments passed to other things for use in the called function e.g. name -> ecert
//==============================================================================================================================
func (t *SimpleChaincode) Invoke(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error) {
caller, caller_affiliation, err := t.get_caller_data(stub)
if err != nil { return nil, errors.New("Error retrieving caller information")}
if function == "create_vehicle" {
return t.create_vehicle(stub, caller, caller_affiliation, args[0])
} else if function == "ping" {
return t.ping(stub)
} else { // If the function is not a create then there must be a car so we need to retrieve the car.
argPos := 1
if function == "scrap_vehicle" { // If its a scrap vehicle then only two arguments are passed (no update value) all others have three arguments and the v5cID is expected in the last argument
argPos = 0
}
v, err := t.retrieve_v5c(stub, args[argPos])
if err != nil { fmt.Printf("INVOKE: Error retrieving v5c: %s", err); return nil, errors.New("Error retrieving v5c") }
if strings.Contains(function, "update") == false && function != "scrap_vehicle" { // If the function is not an update or a scrappage it must be a transfer so we need to get the ecert of the recipient.
if function == "authority_to_manufacturer" { return t.authority_to_manufacturer(stub, v, caller, caller_affiliation, args[0], "manufacturer")
} else if function == "manufacturer_to_private" { return t.manufacturer_to_private(stub, v, caller, caller_affiliation, args[0], "private")
} else if function == "private_to_private" { return t.private_to_private(stub, v, caller, caller_affiliation, args[0], "private")
} else if function == "private_to_lease_company" { return t.private_to_lease_company(stub, v, caller, caller_affiliation, args[0], "lease_company")
} else if function == "lease_company_to_private" { return t.lease_company_to_private(stub, v, caller, caller_affiliation, args[0], "private")
} else if function == "private_to_scrap_merchant" { return t.private_to_scrap_merchant(stub, v, caller, caller_affiliation, args[0], "scrap_merchant")
}
} else if function == "update_make" { return t.update_make(stub, v, caller, caller_affiliation, args[0])
} else if function == "update_model" { return t.update_model(stub, v, caller, caller_affiliation, args[0])
} else if function == "update_reg" { return t.update_registration(stub, v, caller, caller_affiliation, args[0])
} else if function == "update_vin" { return t.update_vin(stub, v, caller, caller_affiliation, args[0])
} else if function == "update_colour" { return t.update_colour(stub, v, caller, caller_affiliation, args[0])
} else if function == "scrap_vehicle" { return t.scrap_vehicle(stub, v, caller, caller_affiliation) }
return nil, errors.New("Function of the name "+ function +" doesn't exist.")
}
}
//=================================================================================================================================
// Query - Called on chaincode query. Takes a function name passed and calls that function. Passes the
// initial arguments passed are passed on to the called function.
//=================================================================================================================================
func (t *SimpleChaincode) Query(stub shim.ChaincodeStubInterface, function string, args []string) ([]byte, error) {
caller, caller_affiliation, err := t.get_caller_data(stub)
if err != nil { fmt.Printf("QUERY: Error retrieving caller details", err); return nil, errors.New("QUERY: Error retrieving caller details: "+err.Error()) }
logger.Debug("function: ", function)
logger.Debug("caller: ", caller)
logger.Debug("affiliation: ", caller_affiliation)
if function == "get_vehicle_details" {
if len(args) != 1 { fmt.Printf("Incorrect number of arguments passed"); return nil, errors.New("QUERY: Incorrect number of arguments passed") }
v, err := t.retrieve_v5c(stub, args[0])
if err != nil { fmt.Printf("QUERY: Error retrieving v5c: %s", err); return nil, errors.New("QUERY: Error retrieving v5c "+err.Error()) }
return t.get_vehicle_details(stub, v, caller, caller_affiliation)
} else if function == "check_unique_v5c" {
return t.check_unique_v5c(stub, args[0], caller, caller_affiliation)
} else if function == "get_vehicles" {
return t.get_vehicles(stub, caller, caller_affiliation)
} else if function == "get_ecert" {
return t.get_ecert(stub, args[0])
} else if function == "ping" {
return t.ping(stub)
}
return nil, errors.New("Received unknown function invocation " + function)
}
//=================================================================================================================================
// Ping Function
//=================================================================================================================================
// Pings the peer to keep the connection alive
//=================================================================================================================================
func (t *SimpleChaincode) ping(stub shim.ChaincodeStubInterface) ([]byte, error) {
return []byte("Hello, world!"), nil
}
//=================================================================================================================================
// Create Function
//=================================================================================================================================
// Create Vehicle - Creates the initial JSON for the vehcile and then saves it to the ledger.
//=================================================================================================================================
func (t *SimpleChaincode) create_vehicle(stub shim.ChaincodeStubInterface, caller string, caller_affiliation string, v5cID string) ([]byte, error) {
var v Vehicle
v5c_ID := "\"v5cID\":\""+v5cID+"\", " // Variables to define the JSON
vin := "\"VIN\":0, "
make := "\"Make\":\"UNDEFINED\", "
model := "\"Model\":\"UNDEFINED\", "
reg := "\"Reg\":\"UNDEFINED\", "
owner := "\"Owner\":\""+caller+"\", "
colour := "\"Colour\":\"UNDEFINED\", "
leaseContract := "\"LeaseContractID\":\"UNDEFINED\", "
status := "\"Status\":0, "
scrapped := "\"Scrapped\":false"
vehicle_json := "{"+v5c_ID+vin+make+model+reg+owner+colour+leaseContract+status+scrapped+"}" // Concatenates the variables to create the total JSON object
matched, err := regexp.Match("^[A-z][A-z][0-9]{7}", []byte(v5cID)) // matched = true if the v5cID passed fits format of two letters followed by seven digits
if err != nil { fmt.Printf("CREATE_VEHICLE: Invalid v5cID: %s", err); return nil, errors.New("Invalid v5cID") }
if v5c_ID == "" ||
matched == false {
fmt.Printf("CREATE_VEHICLE: Invalid v5cID provided");
return nil, errors.New("Invalid v5cID provided")
}
err = json.Unmarshal([]byte(vehicle_json), &v) // Convert the JSON defined above into a vehicle object for go
if err != nil { return nil, errors.New("Invalid JSON object") }
record, err := stub.GetState(v.V5cID) // If not an error then a record exists so cant create a new car with this V5cID as it must be unique
if record != nil { return nil, errors.New("Vehicle already exists") }
if caller_affiliation != AUTHORITY { // Only the regulator can create a new v5c
return nil, errors.New(fmt.Sprintf("Permission Denied. create_vehicle. %v === %v", caller_affiliation, AUTHORITY))
}
_, err = t.save_changes(stub, v)
if err != nil { fmt.Printf("CREATE_VEHICLE: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
bytes, err := stub.GetState("v5cIDs")
if err != nil { return nil, errors.New("Unable to get v5cIDs") }
var v5cIDs V5C_Holder
err = json.Unmarshal(bytes, &v5cIDs)
if err != nil { return nil, errors.New("Corrupt V5C_Holder record") }
v5cIDs.V5Cs = append(v5cIDs.V5Cs, v5cID)
bytes, err = json.Marshal(v5cIDs)
if err != nil { fmt.Print("Error creating V5C_Holder record") }
err = stub.PutState("v5cIDs", bytes)
if err != nil { return nil, errors.New("Unable to put the state") }
return nil, nil
}
//=================================================================================================================================
// Transfer Functions
//=================================================================================================================================
// authority_to_manufacturer
//=================================================================================================================================
func (t *SimpleChaincode) authority_to_manufacturer(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string, recipient_name string, recipient_affiliation string) ([]byte, error) {
if v.Status == STATE_TEMPLATE &&
v.Owner == caller &&
caller_affiliation == AUTHORITY &&
recipient_affiliation == MANUFACTURER &&
v.Scrapped == false { // If the roles and users are ok
v.Owner = recipient_name // then make the owner the new owner
v.Status = STATE_MANUFACTURE // and mark it in the state of manufacture
} else { // Otherwise if there is an error
fmt.Printf("AUTHORITY_TO_MANUFACTURER: Permission Denied");
return nil, errors.New(fmt.Sprintf("Permission Denied. authority_to_manufacturer. %v %v === %v, %v === %v, %v === %v, %v === %v, %v === %v", v, v.Status, STATE_PRIVATE_OWNERSHIP, v.Owner, caller, caller_affiliation, PRIVATE_ENTITY, recipient_affiliation, SCRAP_MERCHANT, v.Scrapped, false))
}
_, err := t.save_changes(stub, v) // Write new state
if err != nil { fmt.Printf("AUTHORITY_TO_MANUFACTURER: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
return nil, nil // We are Done
}
//=================================================================================================================================
// manufacturer_to_private
//=================================================================================================================================
func (t *SimpleChaincode) manufacturer_to_private(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string, recipient_name string, recipient_affiliation string) ([]byte, error) {
if v.Make == "UNDEFINED" ||
v.Model == "UNDEFINED" ||
v.Reg == "UNDEFINED" ||
v.Colour == "UNDEFINED" ||
v.VIN == 0 { //If any part of the car is undefined it has not bene fully manufacturered so cannot be sent
fmt.Printf("MANUFACTURER_TO_PRIVATE: Car not fully defined")
return nil, errors.New(fmt.Sprintf("Car not fully defined. %v", v))
}
if v.Status == STATE_MANUFACTURE &&
v.Owner == caller &&
caller_affiliation == MANUFACTURER &&
recipient_affiliation == PRIVATE_ENTITY &&
v.Scrapped == false {
v.Owner = recipient_name
v.Status = STATE_PRIVATE_OWNERSHIP
} else {
return nil, errors.New(fmt.Sprintf("Permission Denied. manufacturer_to_private. %v %v === %v, %v === %v, %v === %v, %v === %v, %v === %v", v, v.Status, STATE_PRIVATE_OWNERSHIP, v.Owner, caller, caller_affiliation, PRIVATE_ENTITY, recipient_affiliation, SCRAP_MERCHANT, v.Scrapped, false))
}
_, err := t.save_changes(stub, v)
if err != nil { fmt.Printf("MANUFACTURER_TO_PRIVATE: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
return nil, nil
}
//=================================================================================================================================
// private_to_private
//=================================================================================================================================
func (t *SimpleChaincode) private_to_private(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string, recipient_name string, recipient_affiliation string) ([]byte, error) {
if v.Status == STATE_PRIVATE_OWNERSHIP &&
v.Owner == caller &&
caller_affiliation == PRIVATE_ENTITY &&
recipient_affiliation == PRIVATE_ENTITY &&
v.Scrapped == false {
v.Owner = recipient_name
} else {
return nil, errors.New(fmt.Sprintf("Permission Denied. private_to_private. %v %v === %v, %v === %v, %v === %v, %v === %v, %v === %v", v, v.Status, STATE_PRIVATE_OWNERSHIP, v.Owner, caller, caller_affiliation, PRIVATE_ENTITY, recipient_affiliation, SCRAP_MERCHANT, v.Scrapped, false))
}
_, err := t.save_changes(stub, v)
if err != nil { fmt.Printf("PRIVATE_TO_PRIVATE: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
return nil, nil
}
//=================================================================================================================================
// private_to_lease_company
//=================================================================================================================================
func (t *SimpleChaincode) private_to_lease_company(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string, recipient_name string, recipient_affiliation string) ([]byte, error) {
if v.Status == STATE_PRIVATE_OWNERSHIP &&
v.Owner == caller &&
caller_affiliation == PRIVATE_ENTITY &&
recipient_affiliation == LEASE_COMPANY &&
v.Scrapped == false {
v.Owner = recipient_name
} else {
return nil, errors.New(fmt.Sprintf("Permission denied. private_to_lease_company. %v === %v, %v === %v, %v === %v, %v === %v, %v === %v", v.Status, STATE_PRIVATE_OWNERSHIP, v.Owner, caller, caller_affiliation, PRIVATE_ENTITY, recipient_affiliation, SCRAP_MERCHANT, v.Scrapped, false))
}
_, err := t.save_changes(stub, v)
if err != nil { fmt.Printf("PRIVATE_TO_LEASE_COMPANY: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
return nil, nil
}
//=================================================================================================================================
// lease_company_to_private
//=================================================================================================================================
func (t *SimpleChaincode) lease_company_to_private(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string, recipient_name string, recipient_affiliation string) ([]byte, error) {
if v.Status == STATE_PRIVATE_OWNERSHIP &&
v.Owner == caller &&
caller_affiliation == LEASE_COMPANY &&
recipient_affiliation == PRIVATE_ENTITY &&
v.Scrapped == false {
v.Owner = recipient_name
} else {
return nil, errors.New(fmt.Sprintf("Permission Denied. lease_company_to_private. %v %v === %v, %v === %v, %v === %v, %v === %v, %v === %v", v, v.Status, STATE_PRIVATE_OWNERSHIP, v.Owner, caller, caller_affiliation, PRIVATE_ENTITY, recipient_affiliation, SCRAP_MERCHANT, v.Scrapped, false))
}
_, err := t.save_changes(stub, v)
if err != nil { fmt.Printf("LEASE_COMPANY_TO_PRIVATE: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
return nil, nil
}
//=================================================================================================================================
// private_to_scrap_merchant
//=================================================================================================================================
func (t *SimpleChaincode) private_to_scrap_merchant(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string, recipient_name string, recipient_affiliation string) ([]byte, error) {
if v.Status == STATE_PRIVATE_OWNERSHIP &&
v.Owner == caller &&
caller_affiliation == PRIVATE_ENTITY &&
recipient_affiliation == SCRAP_MERCHANT &&
v.Scrapped == false {
v.Owner = recipient_name
v.Status = STATE_BEING_SCRAPPED
} else {
return nil, errors.New(fmt.Sprintf("Permission Denied. private_to_scrap_merchant. %v %v === %v, %v === %v, %v === %v, %v === %v, %v === %v", v, v.Status, STATE_PRIVATE_OWNERSHIP, v.Owner, caller, caller_affiliation, PRIVATE_ENTITY, recipient_affiliation, SCRAP_MERCHANT, v.Scrapped, false))
}
_, err := t.save_changes(stub, v)
if err != nil { fmt.Printf("PRIVATE_TO_SCRAP_MERCHANT: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
return nil, nil
}
//=================================================================================================================================
// Update Functions
//=================================================================================================================================
// update_vin
//=================================================================================================================================
func (t *SimpleChaincode) update_vin(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string, new_value string) ([]byte, error) {
new_vin, err := strconv.Atoi(string(new_value)) // will return an error if the new vin contains non numerical chars
if err != nil || len(string(new_value)) != 15 { return nil, errors.New("Invalid value passed for new VIN") }
if v.Status == STATE_MANUFACTURE &&
v.Owner == caller &&
caller_affiliation == MANUFACTURER &&
v.VIN == 0 && // Can't change the VIN after its initial assignment
v.Scrapped == false {
v.VIN = new_vin // Update to the new value
} else {
return nil, errors.New(fmt.Sprintf("Permission denied. update_vin %v %v %v %v %v", v.Status, STATE_MANUFACTURE, v.Owner, caller, v.VIN, v.Scrapped))
}
_, err = t.save_changes(stub, v) // Save the changes in the blockchain
if err != nil { fmt.Printf("UPDATE_VIN: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
return nil, nil
}
//=================================================================================================================================
// update_registration
//=================================================================================================================================
func (t *SimpleChaincode) update_registration(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string, new_value string) ([]byte, error) {
if v.Owner == caller &&
caller_affiliation != SCRAP_MERCHANT &&
v.Scrapped == false {
v.Reg = new_value
} else {
return nil, errors.New(fmt.Sprint("Permission denied. update_registration"))
}
_, err := t.save_changes(stub, v)
if err != nil { fmt.Printf("UPDATE_REGISTRATION: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
return nil, nil
}
//=================================================================================================================================
// update_colour
//=================================================================================================================================
func (t *SimpleChaincode) update_colour(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string, new_value string) ([]byte, error) {
if v.Owner == caller &&
caller_affiliation == MANUFACTURER &&/*((v.Owner == caller &&
caller_affiliation == MANUFACTURER) ||
caller_affiliation == AUTHORITY) &&*/
v.Scrapped == false {
v.Colour = new_value
} else {
return nil, errors.New(fmt.Sprint("Permission denied. update_colour %t %t %t" + v.Owner == caller, caller_affiliation == MANUFACTURER, v.Scrapped))
}
_, err := t.save_changes(stub, v)
if err != nil { fmt.Printf("UPDATE_COLOUR: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
return nil, nil
}
//=================================================================================================================================
// update_make
//=================================================================================================================================
func (t *SimpleChaincode) update_make(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string, new_value string) ([]byte, error) {
if v.Status == STATE_MANUFACTURE &&
v.Owner == caller &&
caller_affiliation == MANUFACTURER &&
v.Scrapped == false {
v.Make = new_value
} else {
return nil, errors.New(fmt.Sprint("Permission denied. update_make %t %t %t" + v.Owner == caller, caller_affiliation == MANUFACTURER, v.Scrapped))
}
_, err := t.save_changes(stub, v)
if err != nil { fmt.Printf("UPDATE_MAKE: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
return nil, nil
}
//=================================================================================================================================
// update_model
//=================================================================================================================================
func (t *SimpleChaincode) update_model(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string, new_value string) ([]byte, error) {
if v.Status == STATE_MANUFACTURE &&
v.Owner == caller &&
caller_affiliation == MANUFACTURER &&
v.Scrapped == false {
v.Model = new_value
} else {
return nil, errors.New(fmt.Sprint("Permission denied. update_model %t %t %t" + v.Owner == caller, caller_affiliation == MANUFACTURER, v.Scrapped))
}
_, err := t.save_changes(stub, v)
if err != nil { fmt.Printf("UPDATE_MODEL: Error saving changes: %s", err); return nil, errors.New("Error saving changes") }
return nil, nil
}
//=================================================================================================================================
// scrap_vehicle
//=================================================================================================================================
func (t *SimpleChaincode) scrap_vehicle(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string) ([]byte, error) {
if v.Status == STATE_BEING_SCRAPPED &&
v.Owner == caller &&
caller_affiliation == SCRAP_MERCHANT &&
v.Scrapped == false {
v.Scrapped = true
} else {
return nil, errors.New("Permission denied. scrap_vehicle")
}
_, err := t.save_changes(stub, v)
if err != nil { fmt.Printf("SCRAP_VEHICLE: Error saving changes: %s", err); return nil, errors.New("SCRAP_VEHICLError saving changes") }
return nil, nil
}
//=================================================================================================================================
// Read Functions
//=================================================================================================================================
// get_vehicle_details
//=================================================================================================================================
func (t *SimpleChaincode) get_vehicle_details(stub shim.ChaincodeStubInterface, v Vehicle, caller string, caller_affiliation string) ([]byte, error) {
bytes, err := json.Marshal(v)
if err != nil { return nil, errors.New("GET_VEHICLE_DETAILS: Invalid vehicle object") }
if v.Owner == caller ||
caller_affiliation == AUTHORITY {
return bytes, nil
} else {
return nil, errors.New("Permission Denied. get_vehicle_details")
}
}
//=================================================================================================================================
// get_vehicles
//=================================================================================================================================
func (t *SimpleChaincode) get_vehicles(stub shim.ChaincodeStubInterface, caller string, caller_affiliation string) ([]byte, error) {
bytes, err := stub.GetState("v5cIDs")
if err != nil { return nil, errors.New("Unable to get v5cIDs") }
var v5cIDs V5C_Holder
err = json.Unmarshal(bytes, &v5cIDs)
if err != nil { return nil, errors.New("Corrupt V5C_Holder") }
result := "["
var temp []byte
var v Vehicle
for _, v5c := range v5cIDs.V5Cs {
v, err = t.retrieve_v5c(stub, v5c)
if err != nil {return nil, errors.New("Failed to retrieve V5C")}
temp, err = t.get_vehicle_details(stub, v, caller, caller_affiliation)
if err == nil {
result += string(temp) + ","
}
}
if len(result) == 1 {
result = "[]"
} else {
result = result[:len(result)-1] + "]"
}
return []byte(result), nil
}
//=================================================================================================================================
// check_unique_v5c
//=================================================================================================================================
func (t *SimpleChaincode) check_unique_v5c(stub shim.ChaincodeStubInterface, v5c string, caller string, caller_affiliation string) ([]byte, error) {
_, err := t.retrieve_v5c(stub, v5c)
if err == nil {
return []byte("false"), errors.New("V5C is not unique")
} else {
return []byte("true"), nil
}
}
//=================================================================================================================================
// Main - main - Starts up the chaincode
//=================================================================================================================================
func main() {
err := shim.Start(new(SimpleChaincode))
if err != nil { fmt.Printf("Error starting Chaincode: %s", err) }
}