-
Notifications
You must be signed in to change notification settings - Fork 3
/
contract
223 lines (191 loc) · 8.27 KB
/
contract
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
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.12 <0.9.0;
contract Flights {
struct Flight {
string id;
string image;
string name;
string model;
Logs[] logs;
mapping (string => string) maintenance;
}
struct Maintenance {
string id;
string issue;
string solution;
string cost;
}
struct Logs {
string id;
string details;
string duration;
string stamp;
string fuel;
}
Flight[] public flightArray;
Maintenance[] public maintArray;
// Add this function to get the flight index
function getFlightIndex(string memory _sid) internal view returns (uint8) {
for (uint8 i = 0; i < flightArray.length; i++) {
if (keccak256(abi.encodePacked(flightArray[i].id)) == keccak256(abi.encodePacked(_sid))) {
return i;
}
}
revert("Flight not found");
}
function addFlights(string memory _image, string memory _name, string memory _model, string memory _id) external {
Flight storage newFlight = flightArray.push();
newFlight.image = _image;
newFlight.name = _name;
newFlight.model = _model;
newFlight.id = _id;
}
function getFlightAbs(string memory _sid) external view returns (string memory, string memory, string memory, string memory) {
uint8 _flightIndex = getFlightIndex(_sid);
return (flightArray[_flightIndex].image, flightArray[_flightIndex].name, flightArray[_flightIndex].model, flightArray[_flightIndex].id);
}
function getFlightDetail(string memory _sid) external view returns (string memory, string memory, string memory, string memory, string memory, string memory, string memory) {
uint8 _index = getFlightIndex(_sid);
return (
flightArray[_index].name,
flightArray[_index].model,
flightArray[_index].maintenance["issue"],
flightArray[_index].maintenance["solution"],
flightArray[_index].maintenance["cost"],
flightArray[_index].logs[flightArray[_index].logs.length - 1].details,
flightArray[_index].logs[flightArray[_index].logs.length - 1].duration
);
}
// ... (Other functions remain unchanged)
function updateFlightLogs(string memory _logDetails, string memory _flightDuration, string memory _signature, string memory _sid) public {
uint8 _flightIndex;
for (uint8 i = 0; i < flightArray.length; i++) {
if (keccak256(abi.encodePacked(flightArray[i].id)) == keccak256(abi.encodePacked(_sid))) {
_flightIndex = i; // Return the index if the flight with the given id is found
}
}
Flight storage currentFlight = flightArray[_flightIndex];
Logs memory newLog;
newLog.details = _logDetails;
newLog.duration = _flightDuration;
newLog.stamp = _signature;
currentFlight.logs.push(newLog); // Add the new log to the logs array
}
function updateFlightMaintenance(string memory _issue, string memory _solution, string memory _verdict, string memory _cost, string memory _sid) public {
uint8 _flightIndex;
for (uint8 i = 0; i < flightArray.length; i++) {
if (keccak256(abi.encodePacked(flightArray[i].id)) == keccak256(abi.encodePacked(_sid))) {
_flightIndex = i; // Return the index if the flight with the given id is found
}
}
Flight storage presentFlight = flightArray[_flightIndex];
presentFlight.maintenance["issue"] = _issue;
presentFlight.maintenance["solution"] = _solution;
presentFlight.maintenance["verdict"] = _verdict;
presentFlight.maintenance["cost"] = _cost;
}
function getFlightLogs(string memory _sid) public view returns (string[] memory, string[] memory) {
uint8 _flightIndex = getFlightIndex(_sid);
Logs[] storage logs = flightArray[_flightIndex].logs;
string[] memory details = new string[](logs.length);
string[] memory durations = new string[](logs.length);
for (uint256 i = 0; i < logs.length; i++) {
details[i] = logs[i].details;
durations[i] = logs[i].duration;
}
return (details, durations);
}
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.12 <0.9.0;
contract Flights {
struct Flight {
string id;
string image;
string name;
string model;
Logs[] logs;
mapping (string => string) maintenance;
}
struct Maintenance {
string id;
string issue;
string solution;
string cost;
}
struct Logs {
string id;
string details;
string duration;
string stamp;
string fuel;
}
Flight[] public flightArray;
Maintenance[] public maintArray;
// Add this function to get the flight index
function getFlightIndex(string memory _sid) internal view returns (uint8) {
for (uint8 i = 0; i < flightArray.length; i++) {
if (keccak256(abi.encodePacked(flightArray[i].id)) == keccak256(abi.encodePacked(_sid))) {
return i;
}
}
revert("Flight not found");
}
function addFlights(string memory _image, string memory _name, string memory _model, string memory _id) external {
Flight storage newFlight = flightArray.push();
newFlight.image = _image;
newFlight.name = _name;
newFlight.model = _model;
newFlight.id = _id;
}
function getFlightAbs(string memory _sid) external view returns (string memory, string memory, string memory, string memory) {
uint8 _flightIndex = getFlightIndex(_sid);
return (flightArray[_flightIndex].image, flightArray[_flightIndex].name, flightArray[_flightIndex].model, flightArray[_flightIndex].id);
}
function getFlightDetail(string memory _sid) external view returns (string memory, string memory, string memory, string memory, string memory, string memory, string memory) {
uint8 _index = getFlightIndex(_sid);
return (
flightArray[_index].name,
flightArray[_index].model,
flightArray[_index].maintenance["issue"],
flightArray[_index].maintenance["solution"],
flightArray[_index].maintenance["cost"],
flightArray[_index].logs[flightArray[_index].logs.length - 1].details,
flightArray[_index].logs[flightArray[_index].logs.length - 1].duration
);
}
function updateFlightLogs(string memory _logDetails, string memory _flightDuration, string memory _signature, string memory _sid) public {
uint8 _flightIndex = getFlightIndex(_sid);
Flight storage currentFlight = flightArray[_flightIndex];
Logs memory newLog;
newLog.details = _logDetails;
newLog.duration = _flightDuration;
newLog.stamp = _signature;
currentFlight.logs.push(newLog); // Add the new log to the logs array
}
function updateFlightMaintenance(string memory _issue, string memory _solution, string memory _verdict, string memory _cost, string memory _sid) public {
uint8 _flightIndex = getFlightIndex(_sid);
Flight storage presentFlight = flightArray[_flightIndex];
presentFlight.maintenance["issue"] = _issue;
presentFlight.maintenance["solution"] = _solution;
presentFlight.maintenance["verdict"] = _verdict;
presentFlight.maintenance["cost"] = _cost;
}
// Get flight details without logs
function getFlightDetailsWithoutLogs(string memory _sid) external view returns (
string memory, string memory, string memory, string memory,
string memory, string memory, string memory
) {
uint8 _index = getFlightIndex(_sid);
Flight storage currentFlight = flightArray[_index];
return (
currentFlight.image, currentFlight.name, currentFlight.model, currentFlight.id,
currentFlight.maintenance["issue"], currentFlight.maintenance["solution"], currentFlight.maintenance["cost"]
);
}
// Get all logs for a flight
function getFlightLogs(string memory _sid) external view returns (Logs[] memory) {
uint8 _index = getFlightIndex(_sid);
return flightArray[_index].logs;
}
}