152 lines
4.4 KiB
JavaScript
152 lines
4.4 KiB
JavaScript
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014-2015 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
|
|
* Website: http://www.espocrm.com
|
|
*
|
|
* EspoCRM is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* EspoCRM is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with EspoCRM. If not, see http://www.gnu.org/licenses/.
|
|
************************************************************************/
|
|
|
|
|
|
/**
|
|
* Example:
|
|
* Lead: {
|
|
* edit: 'own',
|
|
* read: 'team',
|
|
* delete: 'no',
|
|
* }
|
|
*/
|
|
|
|
Espo.define('acl', [], function () {
|
|
|
|
var Acl = function (user) {
|
|
this.data = {
|
|
table: {}
|
|
};
|
|
this.user = user || null;
|
|
}
|
|
|
|
_.extend(Acl.prototype, {
|
|
|
|
data: null,
|
|
|
|
user: null,
|
|
|
|
set: function (data) {
|
|
data = data || {};
|
|
this.data = data;
|
|
this.data.table = this.data.table || {};
|
|
},
|
|
|
|
get: function (name) {
|
|
if (this.user.isAdmin()) {
|
|
return true;
|
|
}
|
|
return this.data[name] || null;
|
|
},
|
|
|
|
check: function (controller, action, isOwner, inTeam) {
|
|
if (this.user.isAdmin()) {
|
|
return true;
|
|
}
|
|
|
|
if (controller in this.data.table) {
|
|
if (this.data.table[controller] === false) {
|
|
return false;
|
|
}
|
|
if (this.data.table[controller] === true) {
|
|
return true;
|
|
}
|
|
if (typeof action !== 'undefined') {
|
|
if (action in this.data.table[controller]) {
|
|
var value = this.data.table[controller][action];
|
|
|
|
if (value === 'all' || value === true) {
|
|
return true;
|
|
}
|
|
|
|
if ((action == 'edit' || action == 'read') && (value == 'no' || value === false)) {
|
|
return false;
|
|
}
|
|
|
|
if (typeof isOwner === 'undefined') {
|
|
return true;
|
|
}
|
|
|
|
if (isOwner && action == 'delete' && value === 'no') {
|
|
return this.check(controller, 'edit', isOwner);
|
|
}
|
|
|
|
if (!value || value === 'no') {
|
|
return false;
|
|
}
|
|
|
|
if (isOwner) {
|
|
if (value === 'own' || value === 'team') {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
if (value === 'team') {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
return true;
|
|
},
|
|
|
|
checkModel: function (model, action) {
|
|
if (action == 'edit') {
|
|
if (!model.isEditable()) {
|
|
return false;
|
|
}
|
|
}
|
|
if (action == 'delete') {
|
|
if (!model.isRemovable()) {
|
|
return false;
|
|
}
|
|
}
|
|
if (this.user.isAdmin()) {
|
|
return true;
|
|
}
|
|
if (action == 'edit') {
|
|
if (model.has('isEditable')) {
|
|
return model.get('isEditable');
|
|
}
|
|
}
|
|
if (action == 'delete') {
|
|
if (model.has('isRemovable')) {
|
|
return model.get('isRemovable');
|
|
}
|
|
}
|
|
return this.check(model.name, action, this.user.isOwner(model), this.user.inTeam(model));
|
|
},
|
|
|
|
clear: function () {
|
|
this.data = {
|
|
table: {}
|
|
};
|
|
}
|
|
});
|
|
|
|
return Acl;
|
|
|
|
});
|
|
|