mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-04-11 06:58:10 +02:00
71 lines
2.2 KiB
JavaScript
71 lines
2.2 KiB
JavaScript
'use strict';
|
|
|
|
const nconf = require('nconf');
|
|
const winston = require('winston');
|
|
const plugins = require('../../plugins');
|
|
const meta = require('../../meta');
|
|
|
|
const pluginsController = module.exports;
|
|
|
|
pluginsController.get = async function (req, res) {
|
|
const [compatible, all, trending] = await Promise.all([
|
|
getCompatiblePlugins(),
|
|
getAllPlugins(),
|
|
plugins.listTrending(),
|
|
]);
|
|
|
|
const compatiblePkgNames = compatible.map(pkgData => pkgData.name);
|
|
const installedPlugins = compatible.filter(plugin => plugin && (plugin.installed || (nconf.get('plugins:active') && plugin.active)));
|
|
const activePlugins = all.filter(plugin => plugin && (plugin.installed || nconf.get('plugins:active')) && plugin.active);
|
|
const inactivePlugins = all.filter(plugin => plugin && (plugin.installed || nconf.get('plugins:active')) && !plugin.active);
|
|
|
|
const trendingScores = trending.reduce((memo, cur) => {
|
|
memo[cur.label] = cur.value;
|
|
return memo;
|
|
}, {});
|
|
const trendingPlugins = all
|
|
.filter(plugin => plugin && Object.keys(trendingScores).includes(plugin.id))
|
|
.sort((a, b) => trendingScores[b.id] - trendingScores[a.id])
|
|
.map((plugin) => {
|
|
plugin.downloads = trendingScores[plugin.id];
|
|
return plugin;
|
|
});
|
|
|
|
const upgrade = compatible.filter(p => p.installed && p.outdated);
|
|
res.render('admin/extend/plugins', {
|
|
installed: installedPlugins,
|
|
installedCount: installedPlugins.length,
|
|
active: activePlugins,
|
|
activeCount: activePlugins.length,
|
|
inactive: inactivePlugins,
|
|
inactiveCount: inactivePlugins.length,
|
|
canChangeState: !nconf.get('plugins:active'),
|
|
upgrade: upgrade,
|
|
upgradeCount: upgrade.length,
|
|
download: compatible.filter(plugin => !plugin.installed),
|
|
incompatible: all.filter(plugin => !compatiblePkgNames.includes(plugin.name)),
|
|
trending: trendingPlugins,
|
|
submitPluginUsage: meta.config.submitPluginUsage,
|
|
version: nconf.get('version'),
|
|
isStarterPlan: nconf.get('saas_plan') === 'starter',
|
|
});
|
|
};
|
|
|
|
async function getCompatiblePlugins() {
|
|
return await getPlugins(true);
|
|
}
|
|
|
|
async function getAllPlugins() {
|
|
return await getPlugins(false);
|
|
}
|
|
|
|
async function getPlugins(matching) {
|
|
try {
|
|
const pluginsData = await plugins.list(matching);
|
|
return pluginsData || [];
|
|
} catch (err) {
|
|
winston.error(err.stack);
|
|
return [];
|
|
}
|
|
}
|