-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathDAOSecurity.sol
190 lines (155 loc) · 5.94 KB
/
DAOSecurity.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
/*
This file is part of the DAO.
The DAO is free software: you can redistribute it and/or modify
it under the terms of the GNU lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The DAO is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU lesser General Public License for more details.
You should have received a copy of the GNU lesser General Public License
along with the DAO. If not, see <http://www.gnu.org/licenses/>.
*/
/*
Slockit's DAOSecurity proposal
*/
// use this http://solidity.readthedocs.io/en/latest/layout-of-source-files.html#use-in-actual-compilers
// solidity feature in order to point to the DAO's location when compiling with
// the command line solc compiler.
//
// example:
// solc DAO=/home/lefteris/ew/DAO DAOSecurity.sol
import "DAO/DAO.sol";
contract DAOSecurity {
// The total cost of the Offer. Exactly this amount is transfered from the
// Client to the Offer contract when the Offer is signed by the Client.
// Set once by the Offerer.
uint totalCosts;
// Initial withdraw to the Contractor. It is done the moment the Offer is
// signed.
// Set once by the Offerer.
uint oneTimeCosts;
// The minimal daily withdraw limit that the Contractor accepts.
// Set once by the Offerer.
uint128 minDailyWithdrawLimit;
// The amount of wei the Contractor has right to withdraw daily above the
// initial withdraw. The Contractor does not have to do the withdraws every
// day as this amount accumulates.
uint128 dailyWithdrawLimit;
// The address of the Contractor.
address contractor;
// The hash of the Proposal/Offer document.
bytes32 hashOfTheProposalDocument;
// The time of the last withdraw to the Contractor.
uint lastPayment;
uint dateOfSignature;
DAO client; // address of DAO
DAO originalClient; // address of DAO who signed the contract
bool isContractValid;
modifier onlyClient {
if (msg.sender != address(client))
throw;
_
}
// Prevents methods from perfoming any value transfer
modifier noEther() {if (msg.value > 0) throw; _}
function DAOSecurity(
address _contractor,
address _client,
bytes32 _hashOfTheProposalDocument,
uint _totalCosts,
uint _oneTimeCosts,
uint128 _minDailyWithdrawLimit
) {
contractor = _contractor;
originalClient = DAO(_client);
client = DAO(_client);
hashOfTheProposalDocument = _hashOfTheProposalDocument;
totalCosts = _totalCosts;
oneTimeCosts = _oneTimeCosts;
minDailyWithdrawLimit = _minDailyWithdrawLimit;
dailyWithdrawLimit = _minDailyWithdrawLimit;
}
// non-value-transfer getters
function getTotalCosts() noEther constant returns (uint) {
return totalCosts;
}
function getOneTimeCosts() noEther constant returns (uint) {
return oneTimeCosts;
}
function getMinDailyWithdrawLimit() noEther constant returns (uint128) {
return minDailyWithdrawLimit;
}
function getDailyWithdrawLimit() noEther constant returns (uint128) {
return dailyWithdrawLimit;
}
function getContractor() noEther constant returns (address) {
return contractor;
}
function getHashOfTheProposalDocument() noEther constant returns (bytes32) {
return hashOfTheProposalDocument;
}
function getLastPayment() noEther constant returns (uint) {
return lastPayment;
}
function getDateOfSignature() noEther constant returns (uint) {
return dateOfSignature;
}
function getClient() noEther constant returns (DAO) {
return client;
}
function getOriginalClient() noEther constant returns (DAO) {
return originalClient;
}
function getIsContractValid() noEther constant returns (bool) {
return isContractValid;
}
function sign() {
if (msg.sender != address(originalClient) // no good samaritans give us ether
|| msg.value != totalCosts // no under/over payment
|| dateOfSignature != 0) // don't sign twice
throw;
if (!contractor.send(oneTimeCosts))
throw;
dateOfSignature = now;
isContractValid = true;
lastPayment = now;
}
function setDailyWithdrawLimit(uint128 _dailyWithdrawLimit) onlyClient noEther {
if (_dailyWithdrawLimit >= minDailyWithdrawLimit)
dailyWithdrawLimit = _dailyWithdrawLimit;
}
// "fire the contractor"
function returnRemainingEther() onlyClient {
if (originalClient.DAOrewardAccount().call.value(this.balance)())
isContractValid = false;
}
// Withdraw to the Contractor.
//
// Withdraw the amount of ether the Contractor has right to according to
// the current withdraw limit.
// Executing this function before the Offer is signed off by the Client
// makes no sense as this contract has no ether.
function getDailyPayment() noEther {
if (msg.sender != contractor)
throw;
uint timeSinceLastPayment = now - lastPayment;
// Calculate the amount using 1 second precision.
uint amount = (timeSinceLastPayment * dailyWithdrawLimit) / (1 days);
if (amount > this.balance) {
amount = this.balance;
}
if (contractor.send(amount))
lastPayment = now;
}
// Change the client DAO by giving the new DAO's address
// warning: The new DAO must come either from a split of the original
// DAO or an update via `newContract()` so that it can claim rewards
function updateClientAddress(DAO _newClient) onlyClient noEther {
client = _newClient;
}
function () {
throw; // this is a business contract, no donations
}
}