mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-21 23:09:51 +01:00
32 lines
1 KiB
JavaScript
32 lines
1 KiB
JavaScript
var padManager = require('../../db/PadManager');
|
|
var url = require('url');
|
|
|
|
exports.expressCreateServer = function (hook_name, args, cb) {
|
|
//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))
|
|
{
|
|
res.send(404, 'Such a padname is forbidden');
|
|
}
|
|
else
|
|
{
|
|
padManager.sanitizePadId(padId, function(sanitizedPadId) {
|
|
//the pad id was sanitized, so we redirect to the sanitized version
|
|
if(sanitizedPadId != padId)
|
|
{
|
|
var real_url = sanitizedPadId;
|
|
var query = url.parse(req.url).query;
|
|
if ( query ) real_url += '?' + query;
|
|
res.header('Location', real_url);
|
|
res.send(302, 'You should be redirected to <a href="' + real_url + '">' + real_url + '</a>');
|
|
}
|
|
//the pad id was fine, so just render it
|
|
else
|
|
{
|
|
next();
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|