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