2011-11-18 20:51:38 +00:00
|
|
|
var path = require('path');
|
|
|
|
var fs = require('fs');
|
|
|
|
|
|
|
|
var winston = require('winston');
|
|
|
|
|
|
|
|
// For serving static assets
|
|
|
|
|
|
|
|
var StaticHandler = function(path) {
|
2011-11-18 21:00:05 +00:00
|
|
|
this.basePath = path;
|
2011-11-18 20:51:38 +00:00
|
|
|
this.defaultPath = '/index.html';
|
|
|
|
};
|
|
|
|
|
|
|
|
// Determine the content type for a given extension
|
|
|
|
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 {
|
|
|
|
winston.error('unable to determine content type for static asset with extension: ' + ext);
|
|
|
|
return 'text/plain';
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Handle a request, and serve back the asset if it exists
|
2011-11-18 21:00:05 +00:00
|
|
|
StaticHandler.prototype.handle = function(incPath, response) {
|
|
|
|
var filePath = this.basePath + (incPath == '/' ? this.defaultPath : incPath);
|
2011-11-18 21:22:00 +00:00
|
|
|
var _this = this;
|
2011-11-18 20:51:38 +00:00
|
|
|
path.exists(filePath, function(exists) {
|
|
|
|
if (exists) {
|
|
|
|
fs.readFile(filePath, function(error, content) {
|
|
|
|
if (error) {
|
|
|
|
winston.error('unable to read file', { path: filePath, error: error.message });
|
|
|
|
response.writeHead(500, { 'content-type': 'application/json' });
|
|
|
|
response.end(JSON.stringify({ message: 'IO: Unable to read file' }));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
var contentType = StaticHandler.contentTypeFor(path.extname(filePath));
|
|
|
|
response.writeHead(200, { 'content-type': contentType });
|
|
|
|
response.end(content, 'utf-8');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
2011-11-18 22:14:44 +00:00
|
|
|
// serve the default route so that pushstate can work if not found
|
2011-11-18 21:22:00 +00:00
|
|
|
_this.handle('/', response);
|
2011-11-18 20:51:38 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = StaticHandler;
|