mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-22 08:26:16 -04:00
25 lines
783 B
JavaScript
25 lines
783 B
JavaScript
const readOnlyManager = require('../../db/ReadOnlyManager');
|
|
const hasPadAccess = require('../../padaccess');
|
|
const exporthtml = require('../../utils/ExportHtml');
|
|
|
|
exports.expressCreateServer = function (hook_name, args, cb) {
|
|
// serve read only pad
|
|
args.app.get('/ro/:id', async (req, res) => {
|
|
// translate the read only pad to a padId
|
|
const padId = await readOnlyManager.getPadId(req.params.id);
|
|
if (padId == null) {
|
|
res.status(404).send('404 - Not Found');
|
|
return;
|
|
}
|
|
|
|
// we need that to tell hasPadAcess about the pad
|
|
req.params.pad = padId;
|
|
|
|
if (await hasPadAccess(req, res)) {
|
|
// render the html document
|
|
const html = await exporthtml.getPadHTMLDocument(padId, null);
|
|
res.send(html);
|
|
}
|
|
});
|
|
return cb();
|
|
};
|