forked from sponnet/locals-faucetserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
469 lines (428 loc) · 12.1 KB
/
index.js
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
var express = require("express");
var app = express();
var cors = require("cors");
var Web3 = require("web3");
var HookedWeb3Provider = require("hooked-web3-provider");
var lightwallet = require("eth-lightwallet");
var config = require("./config.json");
const mkdirp = require("mkdirp");
const level = require("level");
mkdirp.sync(require("os").homedir() + "/.ethfaucetssl/queue");
mkdirp.sync(require("os").homedir() + "/.ethfaucetssl/exceptions");
const dbQueue = level(require("os").homedir() + "/.ethfaucetssl/queue");
const dbExceptions = level(
require("os").homedir() + "/.ethfaucetssl/exceptions"
);
const greylistduration = 1000 * 60 * 60 * 24;
var faucet_keystore = JSON.stringify(require("./wallet.json"));
var secretSeed = lightwallet.keystore.generateRandomSeed();
// check for valid Eth address
function isAddress(address) {
return /^(0x)?[0-9a-f]{40}$/i.test(address);
}
// Add 0x to address
function fixaddress(address) {
// Strip all spaces
address = address.replace(" ", "");
// Address lowercase
address = address.toLowerCase();
//console.log("Fix address", address);
if (!strStartsWith(address, "0x")) {
return "0x" + address;
}
return address;
}
function strStartsWith(str, prefix) {
return str.indexOf(prefix) === 0;
}
var account;
var web3;
lightwallet.keystore.deriveKeyFromPassword(config.walletpwd, function(
err,
pwDerivedKey
) {
var keystore = new lightwallet.keystore.deserialize(faucet_keystore);
console.log("connecting to ETH node: ", config.web3.host);
var web3Provider = new HookedWeb3Provider({
host: config.web3.host,
transaction_signer: keystore
});
web3 = new Web3();
web3.setProvider(web3Provider);
keystore.passwordProvider = function(callback) {
callback(null, config.walletpwd);
};
console.log("Wallet initted addr=" + keystore.getAddresses()[0]);
account = fixaddress(keystore.getAddresses()[0]);
//start webserver...
app.listen(config.httpport, function() {
console.log("faucet listening on port ", config.httpport);
});
// const options = {
// cert: fs.readFileSync('./sslcert/fullchain.pem'),
// key: fs.readFileSync('./sslcert/privkey.pem')
// };
// https.createServer(options, app).listen(443);
});
// Get faucet balance in ether ( or other denomination if given )
function getFaucetBalance(denomination) {
return parseFloat(
web3.fromWei(
web3.eth.getBalance(account).toNumber(),
denomination || "ether"
)
);
}
app.use(cors());
// frontend app is served from here
app.use(express.static("static/build"));
// get current faucet info
app.get("/faucetinfo", function(req, res) {
var ip = req.headers["x-forwarded-for"] || req.connection.remoteAddress;
console.log("client IP=", ip);
var etherbalance = -1;
try {
etherbalance = getFaucetBalance();
} catch (e) {
console.log(e);
}
res.status(200).json({
account: account,
balance: etherbalance,
etherscanroot: config.etherscanroot,
payoutfrequencyinsec: config.payoutfrequencyinsec,
payoutamountinether: config.payoutamountinether,
queuesize: config.queuesize,
queuename: "queue"
});
});
app.get("/blacklist/:address", function(req, res) {
var address = fixaddress(req.params.address);
if (isAddress(address)) {
setException(address, "blacklist").then(() => {
res.status(200).json({
msg: "address added to blacklist"
});
});
} else {
return res.status(400).json({
message: "the address is invalid"
});
}
});
app.get("/q", function(req, res) {
getQueue().then(q => {
res.status(200).json(q);
});
});
function getQueue() {
var q = [];
return new Promise((resolve, reject) => {
var stream = dbQueue
.createReadStream({
keys: true,
values: true
})
.on("data", item => {
q.push(item);
})
.on("end", function() {
resolve(q);
});
});
}
// queue monitor
setInterval(() => {
iterateQueue();
cleanupException();
}, config.payoutfrequencyinsec * 1000);
var lastIteration = 0;
function canDonateNow() {
return new Promise((resolve, reject) => {
const res = lastIteration < Date.now() - config.payoutfrequencyinsec * 1000;
if (!res) {
resolve(false);
} else {
queueLength().then(length => {
resolve(length == 0);
});
}
});
}
function setDonatedNow() {
lastIteration = Date.now();
console.log("last donation:", lastIteration);
}
function doDonation(address) {
return new Promise((resolve, reject) => {
setDonatedNow();
donate(address, (err, txhash) => {
if (err) {
resolve("0x0");
} else {
resolve(txhash);
}
});
});
}
function queueLength() {
return new Promise((resolve, reject) => {
var count = 0;
dbQueue
.createReadStream()
.on("data", function(data) {
count++;
})
.on("error", function(err) {
reject(err);
})
.on("end", function() {
resolve(count);
});
});
}
function exceptionsLength() {
return new Promise((resolve, reject) => {
var lengths = {};
dbExceptions
.createReadStream({
keys: true,
values: true
})
.on("data", function(item) {
var data = JSON.parse(item.value);
if (!lengths[data.reason]) {
lengths[data.reason] = 0;
}
lengths[data.reason]++;
})
.on("error", function(err) {
reject(err);
})
.on("end", function() {
resolve(lengths);
});
});
}
function enqueueRequest(address) {
return new Promise((resolve, reject) => {
const key = Date.now() + "-" + address;
dbQueue.put(
key,
JSON.stringify({
created: Date.now(),
address: address
}),
function(err) {
if (err) {
return reject(err);
}
queueLength().then(length => {
// calculated estimated payout date
return resolve(
Date.now() + length * config.payoutfrequencyinsec * 1000
);
});
}
);
});
}
function iterateQueue() {
return new Promise((resolve, reject) => {
// make sure faucet does not drip too fast.
if (canDonateNow()) {
var stream = dbQueue
.createReadStream({
keys: true,
values: true
})
.on("data", item => {
console.log("item:", item);
stream.destroy();
dbQueue.del(item.key, err => {
if (err) {
///
}
var data = JSON.parse(item.value);
console.log("DONATE TO ", data.address);
setDonatedNow();
doDonation(data.address).then(txhash => {
console.log("sent ETH to ", data.address);
return resolve();
});
});
});
} else {
return resolve();
}
});
}
// lookup if there is an exception made for this address
function getException(address) {
return new Promise((resolve, reject) => {
dbExceptions.get(address, function(err, value) {
if (err) {
if (err.notFound) {
// handle a 'NotFoundError' here
return resolve();
}
// I/O or other error, pass it up the callback chain
return reject(err);
}
value = JSON.parse(value);
resolve(value);
});
});
}
// set an exception for this address ( greylist / blacklist )
function setException(address, reason) {
return new Promise((resolve, reject) => {
dbExceptions.put(
address,
JSON.stringify({
created: Date.now(),
reason: reason,
address: address
}),
function(err) {
if (err) {
return reject(err);
}
resolve();
}
);
});
}
// check if there are items in the exception queue that need to be cleaned up.
function cleanupException() {
var stream = dbExceptions
.createReadStream({
keys: true,
values: true
})
.on("data", item => {
const value = JSON.parse(item.value);
if (value.reason === "greylist") {
if (value.created < Date.now() - greylistduration) {
dbExceptions.del(item.key, err => {
console.log("removed ", item.key, "from greylist");
});
}
}
});
}
// try to add an address to the donation queue
app.get("/donate/:address", function(req, res) {
var ip = req.headers["x-forwarded-for"] || req.connection.remoteAddress;
ip = ip.replace(/\./g, "_");
var address = fixaddress(req.params.address);
if (isAddress(address)) {
const key = Date.now() + "-" + address;
const val = {
address: address
};
Promise.all([getException(address), getException(ip)]).then(
([addressException, ipException]) => {
var exception = addressException || ipException;
if (exception) {
if (exception.reason === "greylist") {
console.log(exception.address, "is on the greylist");
return res.status(403).json({
address: exception.address,
message: "you are greylisted",
duration: exception.created + greylistduration - Date.now()
});
}
if (exception.reason === "blacklist") {
console.log(exception.address, "is on the blacklist");
return res.status(403).json({
address: address,
message: "you are blacklisted"
});
}
} else {
canDonateNow().then(canDonate => {
if (canDonate) {
// donate right away
console.log("donating now to:", address);
doDonation(address)
.then(txhash => {
Promise.all([
setException(ip, "greylist"),
setException(address, "greylist")
]).then(() => {
var reply = {
address: address,
txhash: txhash,
amount: config.payoutamountinether * 1e18
};
return res.status(200).json(reply);
});
})
.catch(e => {
return res.status(500).json({
err: e.message
});
});
} else {
// queue item
console.log("adding address to queue:", address);
queueLength().then(length => {
if (length < config.queuesize) {
enqueueRequest(address).then(paydate => {
console.log("request queued for", address);
Promise.all([
setException(ip, "greylist"),
setException(address, "greylist")
]).then(() => {
var queueitem = {
paydate: paydate,
address: address,
amount: config.payoutamountinether * 1e18
};
return res.status(200).json(queueitem);
});
});
} else {
return res.status(403).json({
msg: "queue is full"
});
}
});
}
});
}
}
);
} else {
return res.status(400).json({
message: "the address is invalid"
});
}
});
function donate(to, cb) {
web3.eth.getGasPrice(function(err, result) {
var gasPrice = result.toNumber(10);
console.log("gasprice is ", gasPrice);
var amount = config.payoutamountinether * 1e18;
console.log("Transferring ", amount, "wei from", account, "to", to);
var options = {
from: account,
to: to,
value: amount,
gas: 314150,
gasPrice: gasPrice
};
console.log(options);
web3.eth.sendTransaction(options, function(err, result) {
if (err != null) {
console.log(err);
console.log("ERROR: Transaction didn't go through. See console.");
} else {
console.log("Transaction Successful!");
console.log(result);
}
return cb(err, result);
});
});
}