z-nomp/libs/website.js

158 lines
4.1 KiB
JavaScript
Raw Normal View History

2014-03-12 23:37:27 -07:00
2014-03-14 00:18:51 -07:00
var fs = require('fs');
var path = require('path');
2014-03-12 23:37:27 -07:00
2014-03-14 00:18:51 -07:00
var async = require('async');
2014-03-12 23:37:27 -07:00
var dot = require('dot');
var express = require('express');
var watch = require('node-watch');
var api = require('./api.js');
2014-03-12 23:37:27 -07:00
2014-03-13 14:03:28 -07:00
2014-03-12 23:37:27 -07:00
module.exports = function(logger){
var portalConfig = JSON.parse(process.env.portalConfig);
var poolConfigs = JSON.parse(process.env.pools);
2014-03-18 23:54:18 -07:00
var websiteConfig = portalConfig.website;
2014-03-14 00:18:51 -07:00
var portalApi = new api(logger, portalConfig, poolConfigs);
var portalStats = portalApi.stats;
2014-03-14 00:18:51 -07:00
var logSystem = 'Website';
2014-03-12 23:37:27 -07:00
2014-03-18 23:54:18 -07:00
var pageFiles = {
'index.html': 'index',
'home.html': '',
'getting_started.html': 'getting_started',
'stats.html': 'stats',
'api.html': 'api'
2014-03-14 00:18:51 -07:00
};
2014-03-18 23:54:18 -07:00
var pageTemplates = {};
var pageProcessed = {};
2014-03-20 15:25:59 -07:00
var indexesProcessed = {};
2014-03-14 00:18:51 -07:00
2014-03-18 23:54:18 -07:00
var processTemplates = function(){
2014-03-20 15:25:59 -07:00
2014-03-18 23:54:18 -07:00
for (var pageName in pageTemplates){
2014-03-20 15:25:59 -07:00
if (pageName === 'index') continue;
2014-03-18 23:54:18 -07:00
pageProcessed[pageName] = pageTemplates[pageName]({
poolsConfigs: poolConfigs,
2014-03-19 13:24:29 -07:00
stats: portalStats.stats,
2014-03-19 00:26:20 -07:00
portalConfig: portalConfig
2014-03-18 23:54:18 -07:00
});
2014-03-20 15:25:59 -07:00
indexesProcessed[pageName] = pageTemplates.index({
page: pageProcessed[pageName],
selected: pageName,
stats: portalStats.stats,
poolConfigs: poolConfigs,
portalConfig: portalConfig
});
2014-03-18 23:54:18 -07:00
}
2014-03-26 19:53:30 -07:00
//logger.debug(logSystem, 'Stats', 'Website updated to latest stats');
2014-03-18 23:54:18 -07:00
};
2014-03-14 00:18:51 -07:00
2014-03-18 23:54:18 -07:00
var readPageFiles = function(){
async.each(Object.keys(pageFiles), function(fileName, callback){
2014-03-19 13:36:44 -07:00
var filePath = 'website/' + (fileName === 'index.html' ? '' : 'pages/') + fileName;
fs.readFile(filePath, 'utf8', function(err, data){
2014-03-18 23:54:18 -07:00
var pTemp = dot.template(data);
pageTemplates[pageFiles[fileName]] = pTemp
callback();
});
}, function(err){
if (err){
console.log('error reading files for creating dot templates: '+ JSON.stringify(err));
return;
}
processTemplates();
2014-03-14 00:18:51 -07:00
});
};
watch('website', function(filename){
//if (event === 'change' && filename in pageFiles)
//READ ALL THE FILEZ BLAHHH
2014-03-18 23:54:18 -07:00
readPageFiles();
});
portalStats.getGlobalStats(function(){
2014-03-18 23:54:18 -07:00
readPageFiles(Object.keys(pageFiles));
2014-03-14 00:18:51 -07:00
});
2014-03-18 23:54:18 -07:00
var buildUpdatedWebsite = function(){
portalStats.getGlobalStats(function(){
2014-03-18 23:54:18 -07:00
processTemplates();
2014-03-19 13:24:29 -07:00
var statData = 'data: ' + JSON.stringify(portalStats.stats) + '\n\n';
for (var uid in portalApi.liveStatConnections){
var res = portalApi.liveStatConnections[uid];
2014-03-19 13:24:29 -07:00
res.write(statData);
}
2014-03-18 23:54:18 -07:00
});
};
setInterval(buildUpdatedWebsite, websiteConfig.statUpdateInterval * 1000);
2014-03-14 00:18:51 -07:00
2014-03-12 23:37:27 -07:00
var app = express();
2014-03-18 23:54:18 -07:00
var getPage = function(pageId){
if (pageId in pageProcessed){
var requestedPage = pageProcessed[pageId];
return requestedPage;
}
};
var route = function(req, res, next){
var pageId = req.params.page || '';
2014-03-20 15:25:59 -07:00
if (pageId in indexesProcessed){
res.end(indexesProcessed[pageId]);
2014-03-18 23:54:18 -07:00
}
else
next();
2014-03-14 00:18:51 -07:00
2014-03-18 23:54:18 -07:00
};
2014-03-14 00:18:51 -07:00
2014-03-19 13:24:29 -07:00
app.get('/get_page', function(req, res, next){
var requestedPage = getPage(req.query.id);
if (requestedPage){
res.end(requestedPage);
return;
}
next();
});
2014-03-19 13:24:29 -07:00
2014-03-18 23:54:18 -07:00
app.get('/:page', route);
app.get('/', route);
2014-03-14 00:18:51 -07:00
2014-03-18 23:54:18 -07:00
app.get('/api/:method', function(req, res, next){
portalApi.handleApiRequest(req, res, next);
2014-03-12 23:37:27 -07:00
});
2014-03-19 13:36:44 -07:00
app.use('/static', express.static('website/static'));
2014-03-18 23:54:18 -07:00
2014-03-12 23:37:27 -07:00
app.use(function(err, req, res, next){
console.error(err.stack);
2014-03-19 13:24:29 -07:00
res.end(500, 'Something broke!');
2014-03-12 23:37:27 -07:00
});
app.listen(portalConfig.website.port, function(){
logger.debug(logSystem, 'Server', 'Website started on port ' + portalConfig.website.port);
2014-03-12 23:37:27 -07:00
});
};