forked from PAY-IT-FORWARD/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSMSVerification.sol
98 lines (75 loc) · 2.77 KB
/
SMSVerification.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
//! SMS verification contract
//! By Gav Wood, 2016.
pragma solidity ^0.4.0;
contract Owned {
modifier only_owner { if (msg.sender != owner) return; _; }
event NewOwner(address indexed old, address indexed current);
function setOwner(address _new) only_owner { NewOwner(owner, _new); owner = _new; }
address public owner = msg.sender;
}
contract Certifier {
event Confirmed(address indexed who);
event Revoked(address indexed who);
function certified(address _who) constant returns (bool);
function get(address _who, string _field) constant returns (bytes32) {}
function getAddress(address _who, string _field) constant returns (address) {}
function getUint(address _who, string _field) constant returns (uint) {}
}
contract SimpleCertifier is Owned, Certifier {
modifier only_delegate { if (msg.sender != delegate) return; _; }
modifier only_certified(address _who) { if (!certs[_who].active) return; _; }
struct Certification {
bool active;
mapping (string => bytes32) meta;
}
function certify(address _who) only_delegate {
certs[_who].active = true;
Confirmed(_who);
}
function revoke(address _who) only_delegate only_certified(_who) {
certs[_who].active = false;
Revoked(_who);
}
function certified(address _who) constant returns (bool) { return certs[_who].active; }
function get(address _who, string _field) constant returns (bytes32) { return certs[_who].meta[_field]; }
function getAddress(address _who, string _field) constant returns (address) { return address(certs[_who].meta[_field]); }
function getUint(address _who, string _field) constant returns (uint) { return uint(certs[_who].meta[_field]); }
function setDelegate(address _new) only_owner { delegate = _new; }
mapping (address => Certification) certs;
// So that the server posting puzzles doesn't have access to the ETH.
address public delegate = msg.sender;
}
contract ProofOfSMS is SimpleCertifier {
modifier when_fee_paid { if (msg.value < fee) throw; _; }
event Requested(address indexed who);
event Puzzled(address indexed who, bytes32 puzzle);
function request() payable when_fee_paid {
if (certs[msg.sender].active)
throw;
Requested(msg.sender);
}
function puzzle(address _who, bytes32 _puzzle) only_delegate {
puzzles[_who] = _puzzle;
Puzzled(_who, _puzzle);
}
function confirm(bytes32 _code) returns (bool) {
if (puzzles[msg.sender] != sha3(_code))
return;
delete puzzles[msg.sender];
certs[msg.sender].active = true;
Confirmed(msg.sender);
return true;
}
function setFee(uint _new) only_owner {
fee = _new;
}
function drain() only_owner {
if (!msg.sender.send(this.balance))
throw;
}
function certified(address _who) constant returns (bool) {
return certs[_who].active;
}
mapping (address => bytes32) puzzles;
uint public fee = 30 finney;
}