83f084608f
refs #8221 Instead of serving our shared assets from a `shared/` folder, we move the file, which are used server side to `server/public`. Adds a new `config.paths` entry: `publicFilePath` and renames the middleware to serve the files to reflect the changes. Adds `404-ghost.png` images to be used by the server side rendered default template `error.hbs`.
53 lines
2.0 KiB
JavaScript
53 lines
2.0 KiB
JavaScript
var crypto = require('crypto'),
|
|
fs = require('fs'),
|
|
path = require('path'),
|
|
config = require('../config'),
|
|
utils = require('../utils');
|
|
|
|
// ### servePublicFile Middleware
|
|
// Handles requests to robots.txt and favicon.ico (and caches them)
|
|
function servePublicFile(file, type, maxAge) {
|
|
var content,
|
|
publicFilePath = config.get('paths').publicFilePath,
|
|
filePath,
|
|
blogRegex = /(\{\{blog-url\}\})/g,
|
|
apiRegex = /(\{\{api-url\}\})/g;
|
|
|
|
filePath = file.match(/^public/) ? path.join(publicFilePath, file.replace(/^public/, '')) : path.join(publicFilePath, file);
|
|
|
|
return function servePublicFile(req, res, next) {
|
|
if (req.path === '/' + file) {
|
|
if (content) {
|
|
res.writeHead(200, content.headers);
|
|
res.end(content.body);
|
|
} else {
|
|
fs.readFile(filePath, function readFile(err, buf) {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
|
|
if (type === 'text/xsl' || type === 'text/plain' || type === 'application/javascript') {
|
|
buf = buf.toString().replace(blogRegex, utils.url.urlFor('home', true).replace(/\/$/, ''));
|
|
buf = buf.toString().replace(apiRegex, utils.url.urlFor('api', {cors: true}, true));
|
|
}
|
|
content = {
|
|
headers: {
|
|
'Content-Type': type,
|
|
'Content-Length': buf.length,
|
|
ETag: '"' + crypto.createHash('md5').update(buf, 'utf8').digest('hex') + '"',
|
|
'Cache-Control': 'public, max-age=' + maxAge
|
|
},
|
|
body: buf
|
|
};
|
|
res.writeHead(200, content.headers);
|
|
res.end(content.body);
|
|
});
|
|
}
|
|
} else {
|
|
next();
|
|
}
|
|
};
|
|
}
|
|
|
|
module.exports = servePublicFile;
|