haste-server/server.js

69 lines
2.1 KiB
JavaScript
Raw Normal View History

2011-11-18 16:17:41 +01:00
var http = require('http');
var url = require('url');
var fs = require('fs');
2011-11-18 16:17:41 +01:00
2011-11-18 21:44:28 +01:00
var winston = require('winston');
2011-11-18 21:51:38 +01:00
var StaticHandler = require('./lib/static_handler');
var DocumentHandler = require('./lib/document_handler');
2011-11-18 21:44:28 +01:00
2011-11-18 22:57:23 +01:00
// Load the configuration and set some defaults
var config = JSON.parse(fs.readFileSync('config.js', 'utf8'));
2011-11-18 22:57:23 +01:00
config.port = config.port || 7777;
config.host = config.host || 'localhost';
2011-11-18 23:26:25 +01:00
// Set up the logger
if (config.logging) {
try {
winston.remove(winston.transports.Console);
} catch(er) { }
var detail, type;
for (var i = 0; i < config.logging.length; i++) {
detail = config.logging[i];
type = detail.type;
delete detail.type;
winston.add(winston.transports[type], detail);
}
}
2011-11-18 16:17:41 +01:00
2011-11-19 00:04:24 +01:00
// build the store from the config on-demand - so that we don't load it
// for statics
2011-11-22 04:03:50 +01:00
if (!config.storage) {
config.storage = { type: 'file' };
}
if (!config.storage.type) {
config.storage.type = 'file';
}
var Store = require('./lib/' + config.storage.type + '_document_store');
var preferredStore = new Store(config.storage);
2011-11-18 16:17:41 +01:00
2011-11-22 05:00:28 +01:00
// Configure a static handler for the static files
var staticHandler = new StaticHandler('./static', !!config.cacheStaticAssets);
2011-11-19 00:04:24 +01:00
// Set the server up and listen forever
http.createServer(function(request, response) {
2011-11-18 16:49:00 +01:00
var incoming = url.parse(request.url, false);
2011-11-18 16:49:38 +01:00
var handler = null;
2011-11-18 21:44:28 +01:00
// Looking to add a new doc
if (incoming.pathname.match(/^\/documents$/) && request.method == 'POST') {
2011-11-18 23:54:57 +01:00
handler = new DocumentHandler({
keyLength: config.keyLength,
2011-11-21 16:17:23 +01:00
maxLength: config.maxLength,
2011-11-22 04:03:50 +01:00
store: preferredStore
2011-11-18 23:54:57 +01:00
});
2011-11-18 21:51:38 +01:00
return handler.handlePost(request, response);
2011-11-18 16:49:00 +01:00
}
2011-11-18 21:44:28 +01:00
// Looking up a doc
2011-11-18 21:51:38 +01:00
var match = incoming.pathname.match(/^\/documents\/([A-Za-z0-9]+)$/);
if (request.method == 'GET' && match) {
2011-11-18 23:54:57 +01:00
handler = new DocumentHandler({
2011-11-22 04:03:50 +01:00
store: preferredStore
2011-11-18 23:54:57 +01:00
});
2011-11-18 21:51:38 +01:00
return handler.handleGet(match[1], response);
2011-11-18 21:44:28 +01:00
}
// Otherwise, look for static file
2011-11-22 05:00:28 +01:00
staticHandler.handle(incoming.pathname, response);
2011-11-18 22:57:23 +01:00
}).listen(config.port, config.host);
2011-11-18 22:58:21 +01:00
winston.info('listening on ' + config.host + ':' + config.port);