2012-02-25 17:23:44 +01:00
|
|
|
var padManager = require('../../db/PadManager');
|
2012-06-13 21:20:29 +02:00
|
|
|
var url = require('url');
|
2012-02-24 23:38:37 +01:00
|
|
|
|
2012-02-25 16:53:15 +01:00
|
|
|
exports.expressCreateServer = function (hook_name, args, cb) {
|
2012-02-24 23:38:37 +01:00
|
|
|
//redirects browser to the pad's sanitized url if needed. otherwise, renders the html
|
|
|
|
args.app.param('pad', function (req, res, next, padId) {
|
|
|
|
//ensure the padname is valid and the url doesn't end with a /
|
|
|
|
if(!padManager.isValidPadId(padId) || /\/$/.test(req.url))
|
|
|
|
{
|
2012-09-22 13:51:39 +02:00
|
|
|
res.send(404, 'Such a padname is forbidden');
|
2012-02-24 23:38:37 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
padManager.sanitizePadId(padId, function(sanitizedPadId) {
|
|
|
|
//the pad id was sanitized, so we redirect to the sanitized version
|
|
|
|
if(sanitizedPadId != padId)
|
|
|
|
{
|
2012-07-03 01:46:31 +02:00
|
|
|
var real_url = sanitizedPadId;
|
2012-06-13 21:20:29 +02:00
|
|
|
var query = url.parse(req.url).query;
|
|
|
|
if ( query ) real_url += '?' + query;
|
|
|
|
res.header('Location', real_url);
|
2012-09-22 13:51:39 +02:00
|
|
|
res.send(302, 'You should be redirected to <a href="' + real_url + '">' + real_url + '</a>');
|
2012-02-24 23:38:37 +01:00
|
|
|
}
|
|
|
|
//the pad id was fine, so just render it
|
|
|
|
else
|
|
|
|
{
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|