-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathaccessControl.sol
84 lines (67 loc) · 2.52 KB
/
accessControl.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
pragma solidity ^0.5.3;
pragma experimental ABIEncoderV2;
contract StoreData {
// Data related to the transaction
mapping (string => bool) private user_transaction;
mapping (string => bool) private admins;
// Transaction data map
mapping (string => string) private data;
//List of transaction_id
mapping (string => string) private transaction_id_list;
function setTransaction(string[] memory dataBulk, string memory user_id) public {
for(uint i = 0; i < dataBulk.length; i++){
string memory data_to_send = dataBulk[i];
// Concatenate sender and time in one string
string memory transaction_id = strConcat(data_to_send,uint2str(Time_call()));
// Add transaction info in maps
user_transaction[strConcat(user_id,transaction_id)] = true;
data[transaction_id] = data_to_send;
transaction_id_list[user_id] = strConcat(strConcat(transaction_id_list[user_id],","),transaction_id);
}
}
function getTrasanctionIds(string memory user) public view returns (string memory){
return transaction_id_list[user];
}
function getData(string memory tran_id, string memory user) public view returns (string memory){
if(checkUser(user,tran_id) == true){
return data[tran_id];
}
return "No Data Found For This Transaction";
}
function checkUser(string memory user_id, string memory tran_id) internal view returns (bool){
if (user_transaction[strConcat(user_id,tran_id)] == true){
return true;
} else if(admins[user_id]){
return true;
}
return false;
}
// Utils function
function Time_call()private returns (uint256){
return now;
}
function strConcat(string memory _s1, string memory _s2)internal pure returns (string memory _concatString){
bytes memory _s;
_s = abi.encodePacked(_s1);
_s = abi.encodePacked(_s, _s2);
return string(_s);
}
function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
if (_i == 0) {
return "0";
}
uint j = _i;
uint len;
while (j != 0) {
len++;
j /= 10;
}
bytes memory bstr = new bytes(len);
uint k = len - 1;
while (_i != 0) {
bstr[k--] = byte(uint8(48 + _i % 10));
_i /= 10;
}
return string(bstr);
}
}