mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30:21 +01:00
58 lines
1.4 KiB
JavaScript
58 lines
1.4 KiB
JavaScript
var http = require('http');
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
var url = require('url');
|
|
|
|
|
|
// TODO logging
|
|
// TODO preparse static instead of using exists
|
|
|
|
//////////////
|
|
|
|
var StaticHandler = function(path) {
|
|
this.path = path;
|
|
this.defaultPath = '/index.html';
|
|
};
|
|
|
|
StaticHandler.contentTypeFor = function(ext) {
|
|
if (ext == '.js') return 'text/javascript';
|
|
else if (ext == '.css') return 'text/css';
|
|
else if (ext == '.html') return 'text/html';
|
|
else if (ext == '.ico') return 'image/ico';
|
|
else console.log(ext);
|
|
};
|
|
|
|
StaticHandler.prototype.handle = function(request, response) {
|
|
var inc = url.parse(request.url, false);
|
|
var filePath = this.path + (inc.pathname == '/' ? this.defaultPath : inc.pathname);
|
|
path.exists(filePath, function(exists) {
|
|
if (exists) {
|
|
fs.readFile(filePath, function(error, content) {
|
|
if (error) {
|
|
// TODO make nice
|
|
console.log(error);
|
|
response.writeHead(500);
|
|
response.end();
|
|
}
|
|
else {
|
|
response.writeHead(200, { 'content-type': StaticHandler.contentTypeFor(path.extname(filePath)) });
|
|
response.end(content, 'utf-8');
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
// TODO make nice
|
|
response.writeHead(404);
|
|
response.end();
|
|
}
|
|
});
|
|
};
|
|
|
|
///////////
|
|
|
|
http.createServer(function(request, response) {
|
|
|
|
var handler = new StaticHandler('./static');
|
|
handler.handle(request, response);
|
|
|
|
}).listen(7777);
|