-
Notifications
You must be signed in to change notification settings - Fork 29
/
app.js
72 lines (59 loc) · 1.92 KB
/
app.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
/**************************************
Bitcoin / Litecoin / Altcoin Faucet
April 2014, clapyohands <[email protected]>
https://github.com/clapyohands/cryptofaucet-node
See config.js for Configuration Variables
Edit views/inc/nav.jade to add navigation elements
Edit views/inc/rightcol.jade and views/inc/leftcol.jade to manage advertisements and other text in the sidebars
Requirements:
express 3.x (not tested with express 4)
jade
node-bitcoin
iz
nedb
querystring
***************************************/
//global
config = require('./config')
,iz = require('iz')
,bitcoin = require('bitcoin')
,client = new bitcoin.Client(config.rpc)
,db = require('./db')(config.database)
,processor = require('./processor');
//local
var express = require('express')
,routes = require('./routes')
,http = require('http')
,path = require('path')
,app = express();
//Express Configuration
app.set('port', process.env.PORT || 80);
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.logger('dev'));
//app.use(express.methodOverride());
app.use(express.bodyParser());
app.use(express.cookieParser());
app.use(express.session({ secret: config.session_secret }));
app.use(express.static(path.join(__dirname, 'public')));
app.use(express.csrf());
app.use(function(req, res, next){
//res.cookie('TOKEN', req.csrfToken());
res.locals.csrftoken = req.csrfToken();
next();
});
app.disable('x-powered-by');
app.use(express.errorHandler());
// Express Routes
app.get('/', routes.index);
app.get('/captcha', routes.captcha);
app.get('/submit', function(req,res){res.redirect(302,'/')});
app.post('/submit', routes.submit);
app.get(config.dashboard.path, routes.dashboard);
app.post(config.dashboard.path, routes.dashboard);
// Run Express
http.createServer(app).listen(app.get('port'), function(){
console.log("Express server listening on port " + app.get('port'));
});
// Run Faucet Processor
processor.start();