mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 23:46:14 -04:00

* Fixed determining file extension. * Added ts-node * Fixed backend tests. * Fixed frontend test runs. * Fixed tests. * Use script approach for starting etherpad. * Change directory to src. * Fixed env. * Change directory * Fixed build arg. * Fixed docker build. * Fixed. * Fixed cypress file path. * Fixed. * Use latest node container. * Fixed windows workflow. * Use tsx and optimized docker image. * Added workflow for type checks. * Fixed. * Added tsconfig. * Converted more files to typescript. * Removed commented keys. * Typed caching middleware. * Added script for checking the types. * Moved SecretRotator to typescript. * Fixed npm installation and moved to types folder. * Use better scripts for watching typescript changes. * Update windows.yml * Fixed order of npm installation. * Converted i18n. * Added more types. * Added more types. * Fixed import. * Fixed tests. * Fixed tests. * Fixed type checking test. * Fixed stats * Added express types. * fixed.
53 lines
1.7 KiB
TypeScript
53 lines
1.7 KiB
TypeScript
'use strict';
|
|
|
|
const eejs = require('../../eejs');
|
|
const fsp = require('fs').promises;
|
|
const hooks = require('../../../static/js/pluginfw/hooks');
|
|
const plugins = require('../../../static/js/pluginfw/plugins');
|
|
const settings = require('../../utils/Settings');
|
|
|
|
exports.expressCreateServer = (hookName:string, {app}:any) => {
|
|
app.get('/admin/settings', (req:any, res:any) => {
|
|
res.send(eejs.require('ep_etherpad-lite/templates/admin/settings.html', {
|
|
req,
|
|
settings: '',
|
|
errors: [],
|
|
}));
|
|
});
|
|
};
|
|
|
|
exports.socketio = (hookName:string, {io}:any) => {
|
|
io.of('/settings').on('connection', (socket: any ) => {
|
|
// @ts-ignore
|
|
const {session: {user: {is_admin: isAdmin} = {}} = {}} = socket.conn.request;
|
|
if (!isAdmin) return;
|
|
|
|
socket.on('load', async (query:string):Promise<any> => {
|
|
let data;
|
|
try {
|
|
data = await fsp.readFile(settings.settingsFilename, 'utf8');
|
|
} catch (err) {
|
|
return console.log(err);
|
|
}
|
|
// if showSettingsInAdminPage is set to false, then return NOT_ALLOWED in the result
|
|
if (settings.showSettingsInAdminPage === false) {
|
|
socket.emit('settings', {results: 'NOT_ALLOWED'});
|
|
} else {
|
|
socket.emit('settings', {results: data});
|
|
}
|
|
});
|
|
|
|
socket.on('saveSettings', async (newSettings:string) => {
|
|
await fsp.writeFile(settings.settingsFilename, newSettings);
|
|
socket.emit('saveprogress', 'saved');
|
|
});
|
|
|
|
socket.on('restartServer', async () => {
|
|
console.log('Admin request to restart server through a socket on /admin/settings');
|
|
settings.reloadSettings();
|
|
await plugins.update();
|
|
await hooks.aCallAll('loadSettings', {settings});
|
|
await hooks.aCallAll('restartServer');
|
|
});
|
|
});
|
|
};
|