2021-01-21 21:06:52 +00:00
|
|
|
'use strict';
|
|
|
|
|
2024-07-18 08:51:30 +02:00
|
|
|
import path from 'node:path';
|
|
|
|
const eejs = require('../../eejs')
|
|
|
|
import fs from 'node:fs';
|
2021-04-19 22:47:02 -04:00
|
|
|
const fsp = fs.promises;
|
2021-01-21 21:06:52 +00:00
|
|
|
const toolbar = require('../../utils/toolbar');
|
|
|
|
const hooks = require('../../../static/js/pluginfw/hooks');
|
2020-11-23 13:24:19 -05:00
|
|
|
const settings = require('../../utils/Settings');
|
2024-07-18 08:51:30 +02:00
|
|
|
import util from 'node:util';
|
2020-09-19 15:30:04 -04:00
|
|
|
const webaccess = require('./webaccess');
|
2024-07-18 08:51:30 +02:00
|
|
|
const plugins = require('../../../static/js/pluginfw/plugin_defs');
|
|
|
|
|
|
|
|
import {build, buildSync} from 'esbuild'
|
|
|
|
let ioI: { sockets: { sockets: any[]; }; } | null = null
|
|
|
|
|
|
|
|
exports.socketio = (hookName: string, {io}: any) => {
|
|
|
|
ioI = io
|
|
|
|
}
|
|
|
|
|
2012-02-24 20:50:55 +01:00
|
|
|
|
2024-02-22 11:36:43 +01:00
|
|
|
exports.expressPreSession = async (hookName:string, {app}:any) => {
|
2021-12-20 20:34:43 -05:00
|
|
|
// This endpoint is intended to conform to:
|
|
|
|
// https://www.ietf.org/archive/id/draft-inadarei-api-health-check-06.html
|
2024-02-22 11:36:43 +01:00
|
|
|
app.get('/health', (req:any, res:any) => {
|
2021-12-20 20:34:43 -05:00
|
|
|
res.set('Content-Type', 'application/health+json');
|
|
|
|
res.json({
|
|
|
|
status: 'pass',
|
|
|
|
releaseId: settings.getEpVersion(),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2024-02-22 11:36:43 +01:00
|
|
|
app.get('/stats', (req:any, res:any) => {
|
2021-01-21 21:06:52 +00:00
|
|
|
res.json(require('../../stats').toJSON());
|
2020-11-23 13:24:19 -05:00
|
|
|
});
|
2012-02-24 20:50:55 +01:00
|
|
|
|
2024-02-22 11:36:43 +01:00
|
|
|
app.get('/javascript', (req:any, res:any) => {
|
2020-11-19 03:19:13 -05:00
|
|
|
res.send(eejs.require('ep_etherpad-lite/templates/javascript.html', {req}));
|
2016-09-20 09:06:07 +02:00
|
|
|
});
|
|
|
|
|
2024-02-22 11:36:43 +01:00
|
|
|
app.get('/robots.txt', (req:any, res:any) => {
|
2022-02-21 00:53:03 -05:00
|
|
|
let filePath =
|
|
|
|
path.join(settings.root, 'src', 'static', 'skins', settings.skinName, 'robots.txt');
|
2024-02-22 11:36:43 +01:00
|
|
|
res.sendFile(filePath, (err:any) => {
|
2020-11-23 13:24:19 -05:00
|
|
|
// there is no custom robots.txt, send the default robots.txt which dissallows all
|
|
|
|
if (err) {
|
|
|
|
filePath = path.join(settings.root, 'src', 'static', 'robots.txt');
|
2015-04-07 07:55:05 -05:00
|
|
|
res.sendFile(filePath);
|
2012-11-01 13:32:04 +00:00
|
|
|
}
|
|
|
|
});
|
2012-02-24 20:50:55 +01:00
|
|
|
});
|
|
|
|
|
2024-02-22 11:36:43 +01:00
|
|
|
app.get('/favicon.ico', (req:any, res:any, next:Function) => {
|
2021-12-17 17:01:55 -05:00
|
|
|
(async () => {
|
2024-01-20 23:11:52 +01:00
|
|
|
/*
|
|
|
|
If this is a url we simply redirect to that one.
|
|
|
|
*/
|
|
|
|
if (settings.favicon && settings.favicon.startsWith('http')) {
|
|
|
|
res.redirect(settings.favicon);
|
|
|
|
res.send();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-12-17 17:01:55 -05:00
|
|
|
const fns = [
|
|
|
|
...(settings.favicon ? [path.resolve(settings.root, settings.favicon)] : []),
|
|
|
|
path.join(settings.root, 'src', 'static', 'skins', settings.skinName, 'favicon.ico'),
|
|
|
|
path.join(settings.root, 'src', 'static', 'favicon.ico'),
|
|
|
|
];
|
|
|
|
for (const fn of fns) {
|
|
|
|
try {
|
|
|
|
await fsp.access(fn, fs.constants.R_OK);
|
|
|
|
} catch (err) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
res.setHeader('Cache-Control', `public, max-age=${settings.maxAge}`);
|
|
|
|
await util.promisify(res.sendFile.bind(res))(fn);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
next();
|
|
|
|
})().catch((err) => next(err || new Error(err)));
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2024-07-18 08:51:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
const convertTypescript = (content: string) => {
|
|
|
|
const outputRaw = buildSync({
|
|
|
|
stdin: {
|
|
|
|
contents: content,
|
|
|
|
resolveDir: path.join(settings.root, 'var','js'),
|
|
|
|
loader: 'js'
|
|
|
|
},
|
|
|
|
alias:{
|
|
|
|
"ep_etherpad-lite/static/js/browser": 'ep_etherpad-lite/static/js/vendors/browser',
|
|
|
|
"ep_etherpad-lite/static/js/nice-select": 'ep_etherpad-lite/static/js/vendors/nice-select'
|
|
|
|
},
|
|
|
|
bundle: true, // Bundle the files together
|
|
|
|
minify: process.env.NODE_ENV === "production", // Minify the output
|
|
|
|
sourcemap: !(process.env.NODE_ENV === "production"), // Generate source maps
|
|
|
|
sourceRoot: settings.root+"/src/static/js/",
|
|
|
|
target: ['es2020'], // Target ECMAScript version
|
|
|
|
metafile: true,
|
|
|
|
write: false, // Do not write to file system,
|
|
|
|
})
|
|
|
|
const output = outputRaw.outputFiles[0].text
|
|
|
|
|
|
|
|
return {
|
|
|
|
output,
|
2024-08-08 21:41:18 +02:00
|
|
|
hash: outputRaw.outputFiles[0].hash.replaceAll('/','2').replaceAll("+",'5').replaceAll("^","7")
|
2024-07-18 08:51:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-23 18:14:49 +02:00
|
|
|
const handleLiveReload = async (args: any, padString: string, timeSliderString: string, indexString: any) => {
|
2024-07-18 08:51:30 +02:00
|
|
|
const chokidar = await import('chokidar')
|
|
|
|
const watcher = chokidar.watch(path.join(settings.root, 'src', 'static', 'js'));
|
|
|
|
let routeHandlers: { [key: string]: Function } = {};
|
|
|
|
|
|
|
|
const setRouteHandler = (path: string, newHandler: Function) => {
|
|
|
|
routeHandlers[path] = newHandler;
|
|
|
|
};
|
|
|
|
args.app.use((req: any, res: any, next: Function) => {
|
|
|
|
if (req.path.startsWith('/p/') && req.path.split('/').length == 3) {
|
|
|
|
req.params = {
|
|
|
|
pad: req.path.split('/')[2]
|
|
|
|
}
|
|
|
|
routeHandlers['/p/:pad'](req, res);
|
|
|
|
} else if (req.path.startsWith('/p/') && req.path.split('/').length == 4) {
|
|
|
|
req.params = {
|
|
|
|
pad: req.path.split('/')[2]
|
|
|
|
}
|
|
|
|
routeHandlers['/p/:pad/timeslider'](req, res);
|
2024-07-23 18:14:49 +02:00
|
|
|
} else if (req.path == "/"){
|
|
|
|
routeHandlers['/'](req, res);
|
2024-07-18 08:51:30 +02:00
|
|
|
} else if (routeHandlers[req.path]) {
|
|
|
|
routeHandlers[req.path](req, res);
|
|
|
|
} else {
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function handleUpdate() {
|
2024-07-23 18:14:49 +02:00
|
|
|
|
|
|
|
convertTypescriptWatched(indexString, (output, hash) => {
|
|
|
|
setRouteHandler('/watch/index', (req: any, res: any) => {
|
|
|
|
res.header('Content-Type', 'application/javascript');
|
|
|
|
res.send(output)
|
|
|
|
})
|
|
|
|
setRouteHandler('/', (req: any, res: any) => {
|
|
|
|
res.send(eejs.require('ep_etherpad-lite/templates/index.html', {req, entrypoint: '/watch/index?hash=' + hash, settings}));
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2024-07-18 08:51:30 +02:00
|
|
|
convertTypescriptWatched(padString, (output, hash) => {
|
|
|
|
console.log("New pad hash is", hash)
|
|
|
|
setRouteHandler('/watch/pad', (req: any, res: any) => {
|
|
|
|
res.header('Content-Type', 'application/javascript');
|
|
|
|
res.send(output)
|
|
|
|
})
|
|
|
|
|
2024-07-23 18:14:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2024-07-18 08:51:30 +02:00
|
|
|
setRouteHandler("/p/:pad", (req: any, res: any, next: Function) => {
|
|
|
|
// The below might break for pads being rewritten
|
|
|
|
const isReadOnly = !webaccess.userCanModify(req.params.pad, req);
|
|
|
|
|
|
|
|
hooks.callAll('padInitToolbar', {
|
|
|
|
toolbar,
|
|
|
|
isReadOnly
|
|
|
|
});
|
|
|
|
|
|
|
|
const content = eejs.require('ep_etherpad-lite/templates/pad.html', {
|
|
|
|
req,
|
|
|
|
toolbar,
|
|
|
|
isReadOnly,
|
|
|
|
entrypoint: '/watch/pad?hash=' + hash
|
|
|
|
})
|
|
|
|
res.send(content);
|
|
|
|
})
|
|
|
|
ioI!.sockets.sockets.forEach(socket => socket.emit('liveupdate'))
|
|
|
|
})
|
|
|
|
convertTypescriptWatched(timeSliderString, (output, hash) => {
|
|
|
|
// serve timeslider.html under /p/$padname/timeslider
|
|
|
|
console.log("New timeslider hash is", hash)
|
|
|
|
|
|
|
|
setRouteHandler('/watch/timeslider', (req: any, res: any) => {
|
|
|
|
res.header('Content-Type', 'application/javascript');
|
|
|
|
res.send(output)
|
|
|
|
})
|
|
|
|
|
|
|
|
setRouteHandler("/p/:pad/timeslider", (req: any, res: any, next: Function) => {
|
|
|
|
console.log("Reloading pad")
|
|
|
|
// The below might break for pads being rewritten
|
|
|
|
const isReadOnly = !webaccess.userCanModify(req.params.pad, req);
|
|
|
|
|
|
|
|
hooks.callAll('padInitToolbar', {
|
|
|
|
toolbar,
|
|
|
|
isReadOnly
|
|
|
|
});
|
|
|
|
|
|
|
|
const content = eejs.require('ep_etherpad-lite/templates/timeslider.html', {
|
|
|
|
req,
|
|
|
|
toolbar,
|
|
|
|
isReadOnly,
|
|
|
|
entrypoint: '/watch/timeslider?hash=' + hash
|
|
|
|
})
|
|
|
|
res.send(content);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
watcher.on('change', path => {
|
|
|
|
console.log(`File ${path} has been changed`);
|
|
|
|
handleUpdate();
|
|
|
|
});
|
|
|
|
handleUpdate()
|
|
|
|
}
|
|
|
|
|
|
|
|
const convertTypescriptWatched = (content: string, cb: (output:string, hash: string)=>void) => {
|
|
|
|
build({
|
|
|
|
stdin: {
|
|
|
|
contents: content,
|
|
|
|
resolveDir: path.join(settings.root, 'var','js'),
|
|
|
|
loader: 'js'
|
|
|
|
},
|
|
|
|
alias:{
|
|
|
|
"ep_etherpad-lite/static/js/browser": 'ep_etherpad-lite/static/js/vendors/browser',
|
|
|
|
"ep_etherpad-lite/static/js/nice-select": 'ep_etherpad-lite/static/js/vendors/nice-select'
|
|
|
|
},
|
|
|
|
bundle: true, // Bundle the files together
|
|
|
|
minify: process.env.NODE_ENV === "production", // Minify the output
|
|
|
|
sourcemap: !(process.env.NODE_ENV === "production"), // Generate source maps
|
|
|
|
sourceRoot: settings.root+"/src/static/js/",
|
|
|
|
target: ['es2020'], // Target ECMAScript version
|
|
|
|
metafile: true,
|
|
|
|
write: false, // Do not write to file system,
|
|
|
|
}).then((outputRaw) => {
|
|
|
|
cb(
|
|
|
|
outputRaw.outputFiles[0].text,
|
2024-08-08 21:41:18 +02:00
|
|
|
outputRaw.outputFiles[0].hash.replaceAll('/','2').replaceAll("+",'5').replaceAll("^","7")
|
2024-07-18 08:51:30 +02:00
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.expressCreateServer = async (hookName: string, args: any, cb: Function) => {
|
|
|
|
const padString = eejs.require('ep_etherpad-lite/templates/padBootstrap.js', {
|
|
|
|
pluginModules: (() => {
|
|
|
|
const pluginModules = new Set();
|
|
|
|
for (const part of plugins.parts) {
|
|
|
|
for (const [, hookFnName] of Object.entries(part.client_hooks || {})) {
|
|
|
|
// @ts-ignore
|
|
|
|
pluginModules.add(hookFnName.split(':')[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return [...pluginModules];
|
|
|
|
})(),
|
|
|
|
settings,
|
|
|
|
})
|
2013-04-13 12:06:51 -07:00
|
|
|
|
2024-07-23 18:14:49 +02:00
|
|
|
const indexString = eejs.require('ep_etherpad-lite/templates/indexBootstrap.js', {
|
|
|
|
})
|
|
|
|
|
2024-07-18 08:51:30 +02:00
|
|
|
const timeSliderString = eejs.require('ep_etherpad-lite/templates/timeSliderBootstrap.js', {
|
|
|
|
pluginModules: (() => {
|
|
|
|
const pluginModules = new Set();
|
|
|
|
for (const part of plugins.parts) {
|
|
|
|
for (const [, hookFnName] of Object.entries(part.client_hooks || {})) {
|
|
|
|
// @ts-ignore
|
|
|
|
pluginModules.add(hookFnName.split(':')[0]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return [...pluginModules];
|
|
|
|
})(),
|
|
|
|
settings,
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const outdir = path.join(settings.root, 'var','js')
|
2024-07-24 20:04:03 +02:00
|
|
|
// Create the outdir if it doesn't exist
|
|
|
|
if (!fs.existsSync(outdir)) {
|
|
|
|
fs.mkdirSync(outdir);
|
|
|
|
}
|
2024-07-18 08:51:30 +02:00
|
|
|
|
|
|
|
let fileNamePad: string
|
|
|
|
let fileNameTimeSlider: string
|
2024-07-23 18:14:49 +02:00
|
|
|
let fileNameIndex: string
|
2024-07-18 08:51:30 +02:00
|
|
|
if(process.env.NODE_ENV === "production"){
|
|
|
|
const padSliderWrite = convertTypescript(padString)
|
|
|
|
const timeSliderWrite = convertTypescript(timeSliderString)
|
2024-07-23 18:14:49 +02:00
|
|
|
const indexWrite = convertTypescript(indexString)
|
2024-07-18 08:51:30 +02:00
|
|
|
|
|
|
|
fileNamePad = `padbootstrap-${padSliderWrite.hash}.min.js`
|
|
|
|
fileNameTimeSlider = `timeSliderBootstrap-${timeSliderWrite.hash}.min.js`
|
2024-07-23 18:14:49 +02:00
|
|
|
fileNameIndex = `indexBootstrap-${indexWrite.hash}.min.js`
|
2024-07-18 08:51:30 +02:00
|
|
|
const pathNamePad = path.join(outdir, fileNamePad)
|
|
|
|
const pathNameTimeSlider = path.join(outdir, fileNameTimeSlider)
|
2024-07-23 18:14:49 +02:00
|
|
|
const pathNameIndex = path.join(outdir, 'index.js')
|
2012-11-04 13:02:55 +01:00
|
|
|
|
2024-07-18 08:51:30 +02:00
|
|
|
if (!fs.existsSync(pathNamePad)) {
|
|
|
|
fs.writeFileSync(pathNamePad, padSliderWrite.output);
|
|
|
|
}
|
|
|
|
|
2024-07-23 18:14:49 +02:00
|
|
|
if (!fs.existsSync(pathNameIndex)) {
|
|
|
|
fs.writeFileSync(pathNameIndex, indexWrite.output);
|
|
|
|
}
|
|
|
|
|
2024-07-18 08:51:30 +02:00
|
|
|
if (!fs.existsSync(pathNameTimeSlider)) {
|
|
|
|
fs.writeFileSync(pathNameTimeSlider,timeSliderWrite.output)
|
|
|
|
}
|
|
|
|
|
|
|
|
args.app.get("/"+fileNamePad, (req: any, res: any) => {
|
|
|
|
res.sendFile(pathNamePad)
|
|
|
|
})
|
|
|
|
|
2024-07-23 18:14:49 +02:00
|
|
|
args.app.get("/"+fileNameIndex, (req: any, res: any) => {
|
|
|
|
res.sendFile(pathNameIndex)
|
|
|
|
})
|
|
|
|
|
2024-07-18 08:51:30 +02:00
|
|
|
args.app.get("/"+fileNameTimeSlider, (req: any, res: any) => {
|
|
|
|
res.sendFile(pathNameTimeSlider)
|
|
|
|
})
|
|
|
|
|
2024-07-23 18:14:49 +02:00
|
|
|
// serve index.html under /
|
|
|
|
args.app.get('/', (req: any, res: any) => {
|
2024-08-31 21:36:21 +09:00
|
|
|
res.send(eejs.require('ep_etherpad-lite/templates/index.html', {req, settings, entrypoint: "./"+fileNameIndex}));
|
2024-07-23 18:14:49 +02:00
|
|
|
});
|
|
|
|
|
2024-07-18 08:51:30 +02:00
|
|
|
|
|
|
|
// serve pad.html under /p
|
|
|
|
args.app.get('/p/:pad', (req: any, res: any, next: Function) => {
|
|
|
|
// The below might break for pads being rewritten
|
|
|
|
const isReadOnly = !webaccess.userCanModify(req.params.pad, req);
|
|
|
|
|
|
|
|
hooks.callAll('padInitToolbar', {
|
|
|
|
toolbar,
|
|
|
|
isReadOnly
|
|
|
|
});
|
|
|
|
|
|
|
|
const content = eejs.require('ep_etherpad-lite/templates/pad.html', {
|
|
|
|
req,
|
|
|
|
toolbar,
|
|
|
|
isReadOnly,
|
2024-08-31 21:36:21 +09:00
|
|
|
entrypoint: "../"+fileNamePad
|
2024-07-18 08:51:30 +02:00
|
|
|
})
|
|
|
|
res.send(content);
|
2014-03-30 13:02:41 +02:00
|
|
|
});
|
2016-01-17 21:44:03 -05:00
|
|
|
|
2024-07-18 08:51:30 +02:00
|
|
|
// serve timeslider.html under /p/$padname/timeslider
|
|
|
|
args.app.get('/p/:pad/timeslider', (req: any, res: any, next: Function) => {
|
|
|
|
hooks.callAll('padInitToolbar', {
|
|
|
|
toolbar,
|
|
|
|
});
|
|
|
|
|
|
|
|
res.send(eejs.require('ep_etherpad-lite/templates/timeslider.html', {
|
|
|
|
req,
|
|
|
|
toolbar,
|
2024-08-31 21:36:21 +09:00
|
|
|
entrypoint: "../../"+fileNameTimeSlider
|
2024-07-18 08:51:30 +02:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
} else {
|
2024-07-23 18:14:49 +02:00
|
|
|
await handleLiveReload(args, padString, timeSliderString, indexString)
|
2024-07-18 08:51:30 +02:00
|
|
|
}
|
2012-11-04 13:02:55 +01:00
|
|
|
|
2021-12-23 01:45:38 -05:00
|
|
|
// The client occasionally polls this endpoint to get an updated expiration for the express_sid
|
|
|
|
// cookie. This handler must be installed after the express-session middleware.
|
2024-07-18 08:51:30 +02:00
|
|
|
args.app.put('/_extendExpressSessionLifetime', (req: any, res: any) => {
|
2021-12-23 01:45:38 -05:00
|
|
|
// express-session automatically calls req.session.touch() so we don't need to do it here.
|
|
|
|
res.json({status: 'ok'});
|
|
|
|
});
|
2020-11-23 13:24:19 -05:00
|
|
|
};
|