haste-server/server.js
2011-11-18 16:25:53 -05:00

40 lines
1.1 KiB
JavaScript

var http = require('http');
var url = require('url');
var winston = require('winston');
var StaticHandler = require('./lib/static_handler');
var DocumentHandler = require('./lib/document_handler');
/////////////
// Configure logging TODO
winston.remove(winston.transports.Console);
winston.add(winston.transports.Console, { colorize: true, level: 'verbose' });
// TODO preparse static instead of using exists
// Set the server up
http.createServer(function(request, response) {
var incoming = url.parse(request.url, false);
var handler = null;
// Looking to add a new doc
if (incoming.pathname.match(/^\/documents$/) && request.method == 'POST') {
handler = new DocumentHandler();
return handler.handlePost(request, response);
}
// Looking up a doc
var match = incoming.pathname.match(/^\/documents\/([A-Za-z0-9]+)$/);
if (request.method == 'GET' && match) {
handler = new DocumentHandler();
return handler.handleGet(match[1], response);
}
// Otherwise, look for static file
handler = new StaticHandler('./static');
handler.handle(incoming.pathname, response);
}).listen(7777);