mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 09:53:32 +03:00
1a9a10c82b
refs #9178, refs 849e97640f
- i've reconsidered, these modules belong to lib
- prettify package-json module
57 lines
1.7 KiB
JavaScript
57 lines
1.7 KiB
JavaScript
var fs = require('fs-extra'),
|
|
Promise = require('bluebird'),
|
|
path = require('path'),
|
|
packageJSON = require('../../lib/fs/package-json');
|
|
|
|
function AppPermissions(appPath) {
|
|
this.appPath = appPath;
|
|
this.packagePath = path.join(this.appPath, 'package.json');
|
|
}
|
|
|
|
AppPermissions.prototype.read = function () {
|
|
var self = this;
|
|
|
|
return this.checkPackageContentsExists().then(function (exists) {
|
|
if (!exists) {
|
|
// If no package.json, return default permissions
|
|
return Promise.resolve(AppPermissions.DefaultPermissions);
|
|
}
|
|
|
|
// Read and parse the package.json
|
|
return self.getPackageContents().then(function (parsed) {
|
|
// If no permissions in the package.json then return the default permissions.
|
|
if (!(parsed.ghost && parsed.ghost.permissions)) {
|
|
return Promise.resolve(AppPermissions.DefaultPermissions);
|
|
}
|
|
|
|
// TODO: Validation on permissions object?
|
|
|
|
return Promise.resolve(parsed.ghost.permissions);
|
|
});
|
|
});
|
|
};
|
|
|
|
AppPermissions.prototype.checkPackageContentsExists = function () {
|
|
var self = this;
|
|
|
|
// Mostly just broken out for stubbing in unit tests
|
|
return new Promise(function (resolve) {
|
|
fs.stat(self.packagePath, function (err) {
|
|
var exists = !err;
|
|
resolve(exists);
|
|
});
|
|
});
|
|
};
|
|
|
|
// Get the contents of the package.json in the appPath root
|
|
AppPermissions.prototype.getPackageContents = function () {
|
|
return packageJSON.parse(this.packagePath);
|
|
};
|
|
|
|
// Default permissions for an App.
|
|
AppPermissions.DefaultPermissions = {
|
|
posts: ['browse', 'read']
|
|
};
|
|
|
|
module.exports = AppPermissions;
|