forked from provable-things/dapp-stackexchange-bounty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStackExchangeBounty.sol
403 lines (335 loc) · 11.3 KB
/
StackExchangeBounty.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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
import "oraclizeAPI.sol";
contract StackExchangeBountyAddress is abstract {
address main;
uint questionID;
string site;
uint i;
function StackExchangeBountyAddress(uint _questionID, string _site, uint _i) {
main = msg.sender;
questionID = _questionID;
site = _site;
i = _i;
}
function() {
if (msg.value == 0 || questionID == 0 || bytes(site).length == 0 || main == 0)
throw;
StackExchangeBounty c = StackExchangeBounty(main);
c.increaseBounty.value(msg.value)(i);
}
}
contract StackExchangeBounty is usingOraclize {
// only for debug purpose
address owner;
uint numQuestions;
uint public contractBalance;
enum QueryType {
newQuestion,
isAnswerAccepted,
getWinnerID,
getWinnerAddress
}
struct Question {
address contractAddress;
address[] sponsors;
mapping (address => uint) sponsorsBalance;
string site;
uint questionID;
address winnerAddress;
uint winnerID;
uint acceptedAnswerID;
uint updateDelay;
uint expiryDate;
uint ownedFee;
mapping (bytes32 => QueryType) queryType;
}
Question[] public questions;
struct QueryInfo {
string site;
uint questionID;
uint iterator;
}
mapping(bytes32 => QueryInfo) queryInfo;
event QuestionAdded (
address questionAddr
);
event BountyIncreased();
event BountyPaid();
uint DEF_UPDATE_FREQ = 86400;
uint DEF_EXPIRY_DATE = now + 30 days;
function StackExchangeBounty() {
// **************** SET NETWORK *************************
oraclize_setNetwork(networkID_testnet);
// **************** SET NETWORK *************************
// only for debug purpose
owner = msg.sender;
}
function increaseBounty(uint _i) {
if (msg.value == 0 || questions[_i].acceptedAnswerID != 0) throw;
address sponsorAddr = msg.sender;
if (sponsorAddr == questions[_i].contractAddress)
sponsorAddr = tx.origin;
if (questions[_i].sponsorsBalance[sponsorAddr] == 0)
questions[_i].sponsors.push(sponsorAddr);
questions[_i].sponsorsBalance[sponsorAddr] += msg.value;
BountyIncreased();
}
function getSponsors(uint _i) constant returns (address[] sponsorList){
return questions[_i].sponsors;
}
function getSponsorBalance(uint _i, address _sponsorAddr) constant returns (uint sponsorBalance){
return questions[_i].sponsorsBalance[_sponsorAddr];
}
function getAddressOfQuestion(uint _questionID, string _site) constant returns(address questionAddr){
for (uint i = 0; i < questions.length; i++) {
if(questions[i].questionID ==_questionID && sha3(questions[i].site)==sha3(_site)){
return questions[i].contractAddress;
}
}
return address(0x0);
}
function handleQuestion(uint _questionID, string _site) {
if (_questionID == 0 || bytes(_site).length == 0) throw;
for (uint i = 0; i < questions.length; i++) {
if (questions[i].questionID == _questionID &&
sha3(questions[i].site) == sha3(_site)
) break;
}
if (i == questions.length) {
questions.length++;
numQuestions = questions.length;
increaseBounty(i);
queryOraclize(
0,
_questionID,
_site,
QueryType.newQuestion,
i
);
}
else {
increaseBounty(i);
}
}
function __callback(bytes32 queryID, string result) {
if (msg.sender != oraclize_cbAddress()) throw;
uint parsedResult = parseInt(result);
string site = queryInfo[queryID].site;
uint questionID = queryInfo[queryID].questionID;
uint i = queryInfo[queryID].iterator;
if (questions[i].queryType[queryID] == QueryType.newQuestion) {
if (bytes(result).length == 0) {
//Question doesn't exist or it was deleted/moved
fullfillContract(questionID, site, i);
}
else if (parsedResult > 0) {
questions[i].site = site;
questions[i].questionID = questionID;
questions[i].updateDelay = DEF_UPDATE_FREQ;
questions[i].expiryDate = DEF_EXPIRY_DATE;
questions[i].contractAddress =
new StackExchangeBountyAddress(questionID, site, i);
QuestionAdded(questions[i].contractAddress);
queryOraclize(
0,
questionID,
site,
QueryType.isAnswerAccepted,
i
);
}
}
else if (questions[i].queryType[queryID] == QueryType.isAnswerAccepted) {
if (bytes(result).length != 0 && parsedResult > 0 ) {
questions[i].acceptedAnswerID = parsedResult;
fullfillContract(questionID, site, i);
}
else {
queryOraclize(
questions[i].updateDelay,
questionID,
site,
QueryType.isAnswerAccepted,
i
);
}
}
else if (questions[i].queryType[queryID] == QueryType.getWinnerID) {
if (bytes(result).length != 0 && parsedResult > 0 ) {
questions[i].winnerID = parsedResult;
fullfillContract(questionID, site, i);
}
else {
queryOraclize(
questions[i].updateDelay,
questionID,
site,
QueryType.getWinnerID,
i
);
}
}
else {
if (bytes(result).length > 0 && bytes(result).length == 42) {
questions[i].winnerAddress = parseAddr(result);
fullfillContract(questionID, site, i);
}
else {
queryOraclize(
questions[i].updateDelay,
questionID,
site,
QueryType.isAnswerAccepted,
i
);
}
}
delete questions[i].queryType[queryID];
delete queryInfo[queryID];
}
function fullfillContract(uint _questionID, string _site, uint i) internal {
uint numSponsors;
uint paidFee;
uint sponsorBalance;
uint totalBounty = 0;
if (questions[i].acceptedAnswerID != 0) {
if (questions[i].winnerID == 0) {
queryOraclize(
0,
_questionID,
_site,
QueryType.getWinnerID,
i
);
}
else if (questions[i].winnerAddress == 0) {
queryOraclize(
0,
_questionID,
_site,
QueryType.getWinnerAddress,
i
);
}
else {
numSponsors = questions[i].sponsors.length;
paidFee = questions[i].ownedFee / numSponsors;
for (uint j = 0; j < numSponsors; j++) {
questions[i].sponsorsBalance[
questions[i].sponsors[j]
] -= paidFee;
totalBounty +=
questions[i].sponsorsBalance[
questions[i].sponsors[j]
];
}
questions[i].expiryDate = now;
questions[i].winnerAddress.send(totalBounty);
BountyPaid();
}
}
else {
numSponsors = questions[i].sponsors.length;
paidFee = questions[i].ownedFee / numSponsors;
for (uint k = 0; k < numSponsors; k++) {
sponsorBalance =
questions[i].sponsorsBalance[
questions[i].sponsors[k]
];
sponsorBalance -= paidFee;
questions[i].sponsors[k].send(sponsorBalance);
}
}
}
function queryOraclize(
uint _updateDelay,
uint _questionID,
string _site,
QueryType _queryType,
uint _i
) internal
{
contractBalance = this.balance;
string memory URL;
bytes32 queryID;
if (_queryType == QueryType.newQuestion) {
URL = strConcat(
"https://api.stackexchange.com/2.2/questions/",
uIntToStr(_questionID),
"?site=",
_site
);
queryID = oraclize_query(
"URL",
strConcat("json(",URL,").items.0.creation_date"),
500000
);
}
else if (_queryType == QueryType.isAnswerAccepted) {
URL = strConcat(
"https://api.stackexchange.com/2.2/questions/",
uIntToStr(_questionID),
"?site=",
_site
);
queryID = oraclize_query(
_updateDelay,
"URL",
strConcat("json(",URL,").items.0.accepted_answer_id"),
500000
);
}
else if (_queryType == QueryType.getWinnerID) {
URL = strConcat(
"https://api.stackexchange.com/2.2/answers/",
uIntToStr(questions[_i].acceptedAnswerID),
"?site=",
_site
);
queryID = oraclize_query(
_updateDelay,
"URL",
strConcat("json(",URL,").items.0.owner.user_id"),
500000
);
}
else {
URL = strConcat(
"https://api.stackexchange.com/2.2/users/",
uIntToStr(questions[_i].winnerID),
"?site=",
_site
);
queryID = oraclize_query(
_updateDelay,
"URL",
strConcat("json(",URL,").items.0.location"),
500000
);
}
questions[_i].ownedFee += (contractBalance - this.balance);
questions[_i].queryType[queryID] = _queryType;
queryInfo[queryID].site = _site;
queryInfo[queryID].questionID = _questionID;
queryInfo[queryID].iterator = _i;
}
// only for debug purpose
function kill(){
if (msg.sender == owner) suicide(msg.sender);
}
function uIntToStr(uint i) internal returns (string) {
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(48 + i % 10);
i /= 10;
}
return string(bstr);
}
}