mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-10-27 00:56:13 +01:00
56 lines
1.3 KiB
JavaScript
56 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
var async = require('async');
|
|
var plugins = require('../../plugins');
|
|
|
|
var pluginsController = {};
|
|
|
|
pluginsController.get = function (req, res, next) {
|
|
async.parallel({
|
|
compatible: function (next) {
|
|
plugins.list(function (err, plugins) {
|
|
if (err || !Array.isArray(plugins)) {
|
|
plugins = [];
|
|
}
|
|
|
|
next(null, plugins);
|
|
});
|
|
},
|
|
all: function (next) {
|
|
plugins.list(false, function (err, plugins) {
|
|
if (err || !Array.isArray(plugins)) {
|
|
plugins = [];
|
|
}
|
|
|
|
next(null, plugins);
|
|
});
|
|
},
|
|
}, function (err, payload) {
|
|
if (err) {
|
|
return next(err);
|
|
}
|
|
var compatiblePkgNames = payload.compatible.map(function (pkgData) {
|
|
return pkgData.name;
|
|
});
|
|
|
|
res.render('admin/extend/plugins', {
|
|
installed: payload.compatible.filter(function (plugin) {
|
|
return plugin.installed;
|
|
}),
|
|
upgradeCount: payload.compatible.reduce(function (count, current) {
|
|
if (current.installed && current.outdated) {
|
|
count += 1;
|
|
}
|
|
return count;
|
|
}, 0),
|
|
download: payload.compatible.filter(function (plugin) {
|
|
return !plugin.installed;
|
|
}),
|
|
incompatible: payload.all.filter(function (plugin) {
|
|
return compatiblePkgNames.indexOf(plugin.name) === -1;
|
|
}),
|
|
});
|
|
});
|
|
};
|
|
|
|
module.exports = pluginsController; |