ethstats-server/app.js

91 lines
2.0 KiB
JavaScript
Raw Normal View History

2014-12-03 04:47:43 +01:00
var express = require('express.io');
2014-12-03 04:08:49 +01:00
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var bodyParser = require('body-parser');
2015-02-05 00:55:48 +01:00
var fs = require('fs');
var config;
if(fs.existsSync('./config/nodes.js')){
config = require('./config/nodes');
} else {
config = require('./config/nodes.default');
}
2015-01-20 19:29:31 +01:00
var Node = require('./models/node');
2014-12-03 04:08:49 +01:00
var app = express();
2015-01-20 19:29:31 +01:00
app.http().io();
2014-12-03 04:08:49 +01:00
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'jade');
2015-01-20 19:29:31 +01:00
// uncomment after placing favicon in /public
2014-12-03 04:08:49 +01:00
//app.use(favicon(__dirname + '/public/favicon.ico'));
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: false }));
app.use(express.static(path.join(__dirname, 'public')));
2015-01-20 19:29:31 +01:00
var nodes = [],
2015-02-05 00:30:16 +01:00
nodeStatus = [],
nodeInterval;
2015-01-28 01:41:04 +01:00
2015-01-20 19:29:31 +01:00
for(i in config) {
2015-02-05 00:30:16 +01:00
nodes[i] = new Node(config[i], i);
console.log(nodes[i]);
nodeStatus[i] = nodes[i].update();
2015-01-20 19:29:31 +01:00
}
2015-02-05 00:30:16 +01:00
nodeInterval = setInterval(function(){
for(i in nodes){
app.io.broadcast('update', nodes[i].update());
}
}, 10000);
2015-01-20 19:29:31 +01:00
app.get('/', function(req, res) {
res.render('index', { title: 'Ethereum Network Status' });
});
app.io.route('ready', function(req) {
req.io.emit('init', {
nodes: nodeStatus
});
console.log('emited');
});
2014-12-03 04:08:49 +01:00
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handlers
// development error handler
// will print stacktrace
if (app.get('env') === 'development') {
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: err
});
});
}
// production error handler
// no stacktraces leaked to user
app.use(function(err, req, res, next) {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: {}
});
});
module.exports = app;