mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 15:36:16 -04:00

* Move from deprecated request package to axios.
* Fixed package.json
* Another check.
* Fixing npm - hopefully the last.
* Remove double parsing of JSON.
* Bump bundled npm to also get rid of request in the bundled npm.
* Revert "Bump bundled npm to also get rid of request in the bundled npm."
This reverts commit b60fa4f435
.
119 lines
3.7 KiB
JavaScript
119 lines
3.7 KiB
JavaScript
'use strict';
|
|
|
|
const log4js = require('log4js');
|
|
const plugins = require('./plugins');
|
|
const hooks = require('./hooks');
|
|
const runCmd = require('../../../node/utils/run_cmd');
|
|
const settings = require('../../../node/utils/Settings');
|
|
const axios = require('axios');
|
|
|
|
const logger = log4js.getLogger('plugins');
|
|
|
|
const onAllTasksFinished = async () => {
|
|
settings.reloadSettings();
|
|
await hooks.aCallAll('loadSettings', {settings});
|
|
await hooks.aCallAll('restartServer');
|
|
};
|
|
|
|
let tasks = 0;
|
|
|
|
const wrapTaskCb = (cb) => {
|
|
tasks++;
|
|
|
|
return (...args) => {
|
|
cb && cb(...args);
|
|
tasks--;
|
|
if (tasks === 0) onAllTasksFinished();
|
|
};
|
|
};
|
|
|
|
exports.uninstall = async (pluginName, cb = null) => {
|
|
cb = wrapTaskCb(cb);
|
|
logger.info(`Uninstalling plugin ${pluginName}...`);
|
|
try {
|
|
// The --no-save flag prevents npm from creating package.json or package-lock.json.
|
|
// The --legacy-peer-deps flag is required to work around a bug in npm v7:
|
|
// https://github.com/npm/cli/issues/2199
|
|
await runCmd(['npm', 'uninstall', '--no-save', '--legacy-peer-deps', pluginName]);
|
|
} catch (err) {
|
|
logger.error(`Failed to uninstall plugin ${pluginName}`);
|
|
cb(err || new Error(err));
|
|
throw err;
|
|
}
|
|
logger.info(`Successfully uninstalled plugin ${pluginName}`);
|
|
await hooks.aCallAll('pluginUninstall', {pluginName});
|
|
await plugins.update();
|
|
cb(null);
|
|
};
|
|
|
|
exports.install = async (pluginName, cb = null) => {
|
|
cb = wrapTaskCb(cb);
|
|
logger.info(`Installing plugin ${pluginName}...`);
|
|
try {
|
|
// The --no-save flag prevents npm from creating package.json or package-lock.json.
|
|
// The --legacy-peer-deps flag is required to work around a bug in npm v7:
|
|
// https://github.com/npm/cli/issues/2199
|
|
await runCmd(['npm', 'install', '--no-save', '--legacy-peer-deps', pluginName]);
|
|
} catch (err) {
|
|
logger.error(`Failed to install plugin ${pluginName}`);
|
|
cb(err || new Error(err));
|
|
throw err;
|
|
}
|
|
logger.info(`Successfully installed plugin ${pluginName}`);
|
|
await hooks.aCallAll('pluginInstall', {pluginName});
|
|
await plugins.update();
|
|
cb(null);
|
|
};
|
|
|
|
exports.availablePlugins = null;
|
|
let cacheTimestamp = 0;
|
|
|
|
exports.getAvailablePlugins = (maxCacheAge) => {
|
|
const nowTimestamp = Math.round(Date.now() / 1000);
|
|
|
|
return new Promise(async (resolve, reject) => {
|
|
// check cache age before making any request
|
|
if (exports.availablePlugins && maxCacheAge && (nowTimestamp - cacheTimestamp) <= maxCacheAge) {
|
|
return resolve(exports.availablePlugins);
|
|
}
|
|
|
|
await axios.get('https://static.etherpad.org/plugins.json')
|
|
.then(pluginsLoaded => {
|
|
exports.availablePlugins = pluginsLoaded.data;
|
|
cacheTimestamp = nowTimestamp;
|
|
resolve(exports.availablePlugins);
|
|
})
|
|
})
|
|
}
|
|
|
|
|
|
exports.search = (searchTerm, maxCacheAge) => exports.getAvailablePlugins(maxCacheAge).then(
|
|
(results) => {
|
|
const res = {};
|
|
|
|
if (searchTerm) {
|
|
searchTerm = searchTerm.toLowerCase();
|
|
}
|
|
|
|
for (const pluginName in results) {
|
|
// for every available plugin
|
|
// TODO: Also search in keywords here!
|
|
if (pluginName.indexOf(plugins.prefix) !== 0) continue;
|
|
|
|
if (searchTerm && !~results[pluginName].name.toLowerCase().indexOf(searchTerm) &&
|
|
(typeof results[pluginName].description !== 'undefined' &&
|
|
!~results[pluginName].description.toLowerCase().indexOf(searchTerm))
|
|
) {
|
|
if (typeof results[pluginName].description === 'undefined') {
|
|
logger.debug(`plugin without Description: ${results[pluginName].name}`);
|
|
}
|
|
|
|
continue;
|
|
}
|
|
|
|
res[pluginName] = results[pluginName];
|
|
}
|
|
|
|
return res;
|
|
}
|
|
);
|