|
|
|
"use strict";
|
|
|
|
|
|
|
|
var _ = require('underscore'),
|
|
|
|
nconf = require('nconf'),
|
|
|
|
path = require('path'),
|
|
|
|
fs = require('fs'),
|
|
|
|
validator = require('validator'),
|
|
|
|
async = require('async'),
|
|
|
|
winston = require('winston'),
|
|
|
|
|
|
|
|
plugins = require('../plugins'),
|
|
|
|
pluginRoutes = [];
|
|
|
|
|
|
|
|
|
|
|
|
module.exports = function(app, middleware, controllers) {
|
|
|
|
// Static Assets
|
|
|
|
app.get('/plugins/:id/*', function(req, res) {
|
|
|
|
var relPath = req._parsedUrl.pathname.replace(nconf.get('relative_path') + '/plugins/', ''),
|
|
|
|
matches = _.map(plugins.staticDirs, function(realPath, mappedPath) {
|
|
|
|
if (relPath.match(mappedPath)) {
|
|
|
|
return mappedPath;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}).filter(function(a) { return a; });
|
|
|
|
|
|
|
|
if (matches) {
|
|
|
|
async.map(matches, function(mappedPath, next) {
|
|
|
|
var filePath = path.join(plugins.staticDirs[mappedPath], decodeURIComponent(relPath.slice(mappedPath.length)));
|
|
|
|
|
|
|
|
fs.exists(filePath, function(exists) {
|
|
|
|
if (exists) {
|
|
|
|
next(null, filePath);
|
|
|
|
} else {
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}, function(err, matches) {
|
|
|
|
// Filter out the nulls
|
|
|
|
matches = matches.filter(function(a) {
|
|
|
|
return a;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (matches.length) {
|
|
|
|
res.sendfile(matches[0]);
|
|
|
|
} else {
|
|
|
|
res.redirect('/404');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.redirect('/404');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|