mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
5b0b308513
closes #3075 - added special treatment for role with name ‚Owner‘
55 lines
No EOL
1.8 KiB
JavaScript
55 lines
No EOL
1.8 KiB
JavaScript
var _ = require('lodash'),
|
|
Models = require('../models'),
|
|
errors = require('../errors'),
|
|
User = Models.User,
|
|
App = Models.App;
|
|
|
|
var effective = {
|
|
user: function (id) {
|
|
return User.findOne({id: id}, { include: ['permissions', 'roles', 'roles.permissions'] })
|
|
.then(function (foundUser) {
|
|
var seenPerms = {},
|
|
rolePerms = _.map(foundUser.related('roles').models, function (role) {
|
|
return role.related('permissions').models;
|
|
}),
|
|
allPerms = [],
|
|
user = foundUser.toJSON();
|
|
|
|
// TODO: using 'Owner' as return value is a bit hacky.
|
|
if (user.roles[0] && user.roles[0].name === 'Owner') {
|
|
return 'Owner';
|
|
}
|
|
|
|
rolePerms.push(foundUser.related('permissions').models);
|
|
|
|
_.each(rolePerms, function (rolePermGroup) {
|
|
_.each(rolePermGroup, function (perm) {
|
|
var key = perm.get('action_type') + '-' + perm.get('object_type') + '-' + perm.get('object_id');
|
|
|
|
// Only add perms once
|
|
if (seenPerms[key]) {
|
|
return;
|
|
}
|
|
|
|
allPerms.push(perm);
|
|
seenPerms[key] = true;
|
|
});
|
|
});
|
|
|
|
return allPerms;
|
|
}, errors.logAndThrowError);
|
|
},
|
|
|
|
app: function (appName) {
|
|
return App.findOne({name: appName}, { withRelated: ['permissions'] })
|
|
.then(function (foundApp) {
|
|
if (!foundApp) {
|
|
return [];
|
|
}
|
|
|
|
return foundApp.related('permissions').models;
|
|
}, errors.logAndThrowError);
|
|
}
|
|
};
|
|
|
|
module.exports = effective; |