mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-18 16:01:40 +03:00
bcf5a1bc34
refs #9178 * Add eslint deps, remove old lint deps * Add eslint config, remove old lint configs * Config for server and tests are different * Tweaked rules to suit us * Fix linting in codebase - lots of indent changes. * Fix a real broken test
95 lines
2.9 KiB
JavaScript
95 lines
2.9 KiB
JavaScript
/**
|
|
* Dependencies
|
|
*/
|
|
var parsePackageJson = require('./parse-package-json'),
|
|
errors = require('../../errors'),
|
|
Promise = require('bluebird'),
|
|
_ = require('lodash'),
|
|
join = require('path').join,
|
|
fs = require('fs'),
|
|
|
|
notAPackageRegex = /^\.|_messages|README.md|node_modules|bower_components/i,
|
|
packageJSONPath = 'package.json',
|
|
|
|
statFile = Promise.promisify(fs.stat),
|
|
readDir = Promise.promisify(fs.readdir),
|
|
|
|
readPackage,
|
|
readPackages,
|
|
processPackage;
|
|
|
|
/**
|
|
* Recursively read directory and find the packages in it
|
|
*/
|
|
processPackage = function processPackage(absolutePath, packageName) {
|
|
var pkg = {
|
|
name: packageName,
|
|
path: absolutePath
|
|
};
|
|
return parsePackageJson(join(absolutePath, packageJSONPath))
|
|
.then(function gotPackageJSON(packageJSON) {
|
|
pkg['package.json'] = packageJSON;
|
|
return pkg;
|
|
})
|
|
.catch(function noPackageJSON() {
|
|
// ignore invalid package.json for now,
|
|
// because Ghost does not rely/use them at the moment
|
|
// in the future, this .catch() will need to be removed,
|
|
// so that error is thrown on invalid json syntax
|
|
pkg['package.json'] = null;
|
|
return pkg;
|
|
});
|
|
};
|
|
|
|
readPackage = function readPackage(packagePath, packageName) {
|
|
var absolutePath = join(packagePath, packageName);
|
|
return statFile(absolutePath)
|
|
.then(function (stat) {
|
|
if (!stat.isDirectory()) {
|
|
return {};
|
|
}
|
|
|
|
return processPackage(absolutePath, packageName)
|
|
.then(function gotPackage(pkg) {
|
|
var res = {};
|
|
res[packageName] = pkg;
|
|
return res;
|
|
});
|
|
})
|
|
.catch(function (err) {
|
|
return Promise.reject(new errors.NotFoundError({
|
|
message: 'Package not found',
|
|
err: err,
|
|
help: 'path: ' + packagePath,
|
|
context: 'name: ' + packageName
|
|
}));
|
|
});
|
|
};
|
|
|
|
readPackages = function readPackages(packagePath) {
|
|
return readDir(packagePath)
|
|
.filter(function (packageName) {
|
|
// Filter out things which are not packages by regex
|
|
if (packageName.match(notAPackageRegex)) {
|
|
return;
|
|
}
|
|
// Check the remaining items to ensure they are a directory
|
|
return statFile(join(packagePath, packageName)).then(function (stat) {
|
|
return stat.isDirectory();
|
|
});
|
|
})
|
|
.map(function readPackageJson(packageName) {
|
|
var absolutePath = join(packagePath, packageName);
|
|
return processPackage(absolutePath, packageName);
|
|
})
|
|
.then(function (packages) {
|
|
return _.keyBy(packages, 'name');
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Expose Public API
|
|
*/
|
|
module.exports.all = readPackages;
|
|
module.exports.one = readPackage;
|