-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAnswers.sol
75 lines (51 loc) · 1.62 KB
/
Answers.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
pragma solidity ^0.4.4;
contract Answers {
mapping (bytes32 => address) public organizationAddress;
mapping (address => bytes32) public organizations;
address public owner;
event _OrganizationAddressRegistered(bytes32 indexed organization, address indexed memberAddressKey);
modifier onlyOwner() {
if (msg.sender != owner) {
revert();
}
_;
}
modifier isRegistered() {
if (organizations[msg.sender] == 0) {
revert();
}
_;
}
modifier organizationAddressDoesNotExist(address pubKey) {
if (organizations[pubKey] != 0) {
revert();
}
// continue with code execution
_;
}
constructor() public {
owner = msg.sender;
}
function registerOrganizationAddress(bytes32 organizationName, address pubKey) onlyOwner organizationAddressDoesNotExist(pubKey) external {
organizationAddress[keccak256(organizationName)] = pubKey;
organizations[pubKey] = organizationName;
emit _OrganizationAddressRegistered(organizationName, pubKey);
}
// HELPER MODIFIER FUNCTIONS FOR TESTS
/**
* @notice Check if organizationAddress is registered.
* @param pubKey organizationAddress public key
* @return bool
*/
function isRegisteredOrganizationAddress(address pubKey) external constant returns (bool) {
return (organizations[pubKey] != "");
}
/**
* @notice Check if organizationAddress is registered
* @param organizationName name
* @return bool
*/
function isRegisteredOrganization(bytes32 organizationName) external constant returns (bool) {
return (organizationAddress[keccak256(organizationName)] != address(0));
}
}