-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnBoltV2.sol
283 lines (239 loc) · 10.5 KB
/
UnBoltV2.sol
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
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.7;
//This is an asset contract.
contract Assets{
uint256 public assetCount = 1; //always -1
Asset[] public assets;
// //mappping each address with an array of assets (assets each user has created)
mapping(address => Asset[]) public userAssetMap;
//definition of a data type of Asset using structs
struct Asset {
//attributes of the struct
uint256 id;
string assetName;
string description;
uint256 creationTime;
uint256 completionTime;
bool cancelled;
uint256 quantity;
bool completed;
address creator;
}
//creation of events
event AssetCreated(uint256 indexed id,string indexed _assetName, string _description,uint256 _quantity, bool completed,address indexed creator);
event CompletedAssetValueChanged(bool indexed newValue);
event CancelledAsset(bool indexed newValue);
//create multiple assets at once.
//this is one call and saves gas rather than using 5 seperate calls to create asset
function createAssets(string[5] memory _assetNames,string[5] memory _description ,uint16[5] memory _quantities) public returns (bool) {
uint256 assetLength = _assetNames.length;
require(assetLength == _quantities.length, "Wrong client data");
require(assetLength < 10, "Wrong number of assets");
for(uint8 i=0; i < assetLength;) {
createAsset(_assetNames[i],_description[i], _quantities[i]);
unchecked {
// There is never going to be where it overflow
++i;
}
}
return true;
}
//create an asset
function createAsset(string memory _assetName,string memory _description, uint256 _quantity) public returns (bool){
Asset memory newAsset;
newAsset.id = assetCount;
newAsset.assetName = _assetName;
newAsset.description = _description;
newAsset.creationTime = block.timestamp; //store the unix timestamp of when this function was called
newAsset.quantity = _quantity;
newAsset.creator = msg.sender;
assets.push(newAsset); // Push the newAsset struct into the asset array
userAssetMap[msg.sender].push(newAsset); // Push the newAsset struct into the asset array related to an eth address
++assetCount;
//emit event to stack
emit AssetCreated(
newAsset.id,
newAsset.assetName,
newAsset.description,
newAsset.quantity,
newAsset.completed,
newAsset.creator
);
return true;
}
//get all assets
function getAssets() public view returns (Asset[] memory){
return assets;
}
//get all assets associated with a users ethereum address
function getUserAssets(address _userAddress) public view returns (Asset[] memory){
Asset[] memory tempAsset;
tempAsset = userAssetMap[_userAddress];
return tempAsset;
}
//toggle multiple assets at once.
//this is one call and saves gas rather toggling assets complete once at a time
function toggleAssetsCompleted(uint256[] memory _assetIds) public returns (bool) {
uint256 assetLength = _assetIds.length;
require(assetLength < 6, "Too many assets selected");
for(uint8 i=0; i < assetLength;) {
toggleAssetCompleted(_assetIds[i]);
unchecked {
// There is never going to be where it overflow
++i;
}
}
return true;
}
//change the toggle completed variable to the opposide of current value
// should only works if all tasks associated with the asset are completed (need to work on this!)
function toggleAssetCompleted(uint256 _id) public returns (bool newCompletionStatus){
require(assets.length >= _id, "Id not created");
Asset memory _asset = assets[ _id - 1];
newCompletionStatus = !_asset.completed;
_asset.completed = newCompletionStatus;
assets[_id - 1] = _asset;
// find the index of the asset in the userAssetMap
Asset[] memory _allAssets = getUserAssets(msg.sender);
uint8 index = 0;
for (index; index < _allAssets.length-1; index++) {
if (_allAssets[index].id == _id) {
index = index;
break;
}
}
//make these changes in the userAssetMap
userAssetMap[msg.sender][index] = _asset;
//toggle asset complete in the userAssetMap
emit CompletedAssetValueChanged(newCompletionStatus);
}
}
// Tasks which inherts from Assets (all functions and variables from Assets can be accessed int Tasks)
contract Tasks is Assets{ //make assets the parent contract
uint256 public taskCount = 1; //always -1
Task[] public tasks;
//mappping each asset (id) with an array of Tasks it is made up of
mapping(uint256 => Task[]) public assetTaskMap;
//definition of a data type of Task using structs
struct Task {
//attributes of the struct
uint256 id;
string content;
string creator_note; //the task creators message
string intermediary_note; // the signators message (e.g message on why things are behind schedule)
uint256 creationTime;
uint256 completionTime;
bool completed;
address signator;
Asset asset; //an Asset object/struct what is associated with the task
}
event Sender(address indexed who, address indexed signator );
event TaskCreated(uint indexed id,address indexed who, string indexed content);
event CompletedTaskValueChanged(bool indexed newValue);
//create multiple tasks at once.
//this is one call and saves gas rather than using 3 seperate calls to create tasks
function createTasks(string[3] memory _taskContents,string[3] memory _notes ,uint8[3] memory _assetIds, address[3] memory _adresses) public returns (bool) {
uint256 taskLength = _taskContents.length;
require(taskLength == _assetIds.length, "Wrong client data");
require(taskLength < 5, "Wrong number of tasks");
for(uint8 i=0; i < taskLength;) {
createTask(_taskContents[i],_notes[i], _assetIds[i], _adresses[i]);
unchecked {
// There is never going to be where it overflow
++i;
}
}
return true;
}
//create a task
function createTask(string memory _taskContent,string memory _note, uint256 _assetId, address _signator) public returns (bool){
//get asset assoicated with current task and make sure the function is being called by the asset creator
Asset memory currAsset;
currAsset = assets[_assetId-1];
require(msg.sender == currAsset.creator, "This function is restricted to the asset creator");
//create an empty temporary Task object adding the function paramenter values to it then
//it is pushed into the the array of assets
Task memory newTask;
newTask.id = taskCount;
newTask.content = _taskContent;
newTask.creator_note = _note;
newTask.creationTime = block.timestamp;
newTask.signator = _signator;
newTask.asset = assets[_assetId-1];
tasks.push(newTask); // Push the newTask struct into the task array
// map newly created task to its associated assed based on the "_assedID"
assetTaskMap[_assetId-1].push(newTask); // each assetid maps to a task[]
taskCount++;
emit TaskCreated(
newTask.id,
newTask.signator,
newTask.content
);
return true;
}
//get all tasks associated with a certain asset (by using assetID)
function getAssetTasks( uint256 _assetID) public view returns (Task[] memory){
Task[] memory _tasks = assetTaskMap[_assetID-1];
return _tasks;
}
// add a message for a task being perfromed (signators message)
function addDescription(uint _TaskId,string memory _note ) public returns (bool){
Task memory _task = tasks[_TaskId-1];
emit Sender(
msg.sender,
_task.signator
);
require(msg.sender == _task.signator, "This function is restricted to the signator");
_task.intermediary_note = _note;
tasks[_TaskId-1] = _task;
//make same change inn assetTaskMap
// find the index of the task in the assetTaskMap
Task[] memory _allTasks = getAssetTasks(_task.asset.id);
uint8 index = 0;
for (index; index < _allTasks.length-1; index++) {
if (_allTasks[index].id == _TaskId) {
index = index;
break;
}
}
//make these changes in the asset task map
assetTaskMap[_task.asset.id-1][index] = _task;
return true;
}
//change the toggle completed variable to the opposide of current value
function toggleTaskCompleted(uint _id) public returns (bool){
Task memory _task = tasks[_id-1];
// require(msg.sender == _task.signator, "This function is restricted to the signator");
_task.completed = !_task.completed;
tasks[_id-1] = _task;
// find the index of the task in the assetTaskMap
Task[] memory _allTasks = getAssetTasks(_task.asset.id);
uint8 index = 0;
for (index; index < _allTasks.length-1; index++) {
if (_allTasks[index].id == _id) {
index = index;
break;
}
}
//make these changes in the asset task map
assetTaskMap[_task.asset.id-1][index] = _task;
emit CompletedTaskValueChanged(!_task.completed);
return !_task.completed; // retruns the new value
}
}
//when a contract inherits from these two only 1 contract is created on the blockchain which is this one
contract Unbolt is Tasks{ //inheritance
constructor () payable {
createAssets(
["Berken Bag", "PS4", "Iphone 6","Xbox 1","Issey Miyake Top"],
["Pink Bag", "Blue Ps4", "Pink Iphone", "500GB", "Home Plissee jacket"],
[1000, 4500, 6500,1500,19000]
);
createTasks(
["Source Leather", "Transport to Factory", "Assemble the plastic"],
["Make sure it is the best quality mushroom leather", "Make to deliver before 2/03/2022", "Make sure to use blue plastic!"],
[1, 1, 3],
[0x25e86d826d5ccAc2D45Df42c942f8258b143B273, 0xeD7c7e86469E6BC51ef6943253B4DE01173e1473,0x25e86d826d5ccAc2D45Df42c942f8258b143B273]
);
}
}