mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-02 12:16:56 -06:00
9c502641b5
The HBAC details page has been enhanced to support Undo and Reset operations. The functionality is implemented in the base widget class so the behavior will be more consistent across widgets. A <span> tag now used to define the field boundary in the HTML doc. The tag contains the visual representation of the field which include the input tag and optionally the undo link. The Update method on HBAC details page has been modified so that it executes several operations using a batch command. The operations being executed depends on the changes made to the fields. These operations may include: - removing access time if access time is changed to any time - removing memberships if member category is changed to all - modifying rule attributes if description or rule type is changed - enabling/disabling the rule if rule status is changed The behavior of the Add & Remove buttons also has been changed such that it adjust the category attribute properly in addition to adding the memberships using batch command. For example, if category is initially set to all, adding a new member will also change the category to empty. The ipa_command have been modified to store the on_success and on_error handlers as properties. When the command is executed as a part of batch operation, the result of each command will be passed to the appropriate handler. The unit tests and test data have been updated as well.
383 lines
9.3 KiB
JavaScript
383 lines
9.3 KiB
JavaScript
/* Authors:
|
|
* Pavel Zuna <pzuna@redhat.com>
|
|
* Endi S. Dewata <edewata@redhat.com>
|
|
*
|
|
* Copyright (C) 2010 Red Hat
|
|
* see file 'COPYING' for use and warranty information
|
|
*
|
|
* This program 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; version 2 only
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
/* REQUIRES: ipa.js, details.js, search.js, add.js */
|
|
|
|
function ipa_facet(spec) {
|
|
|
|
spec = spec || {};
|
|
|
|
var that = {};
|
|
that.name = spec.name;
|
|
that.label = spec.label;
|
|
that._entity_name = spec.entity_name;
|
|
|
|
that.init = spec.init || init;
|
|
that.create = spec.create || create;
|
|
that.setup = spec.setup || setup;
|
|
that.load = spec.load || load;
|
|
|
|
that.__defineGetter__("entity_name", function(){
|
|
return that._entity_name;
|
|
});
|
|
|
|
that.__defineSetter__("entity_name", function(entity_name){
|
|
that._entity_name = entity_name;
|
|
});
|
|
|
|
that.setup_views = ipa_facet_setup_views;
|
|
|
|
that.superior = function(name) {
|
|
var method = that[name];
|
|
return function () {
|
|
return method.apply(that, arguments);
|
|
};
|
|
};
|
|
|
|
function init() {
|
|
}
|
|
|
|
function create() {
|
|
}
|
|
|
|
function setup() {
|
|
}
|
|
|
|
function load() {
|
|
}
|
|
|
|
return that;
|
|
}
|
|
|
|
function ipa_entity(spec) {
|
|
|
|
spec = spec || {};
|
|
|
|
var that = {};
|
|
that.name = spec.name;
|
|
that.label = spec.label;
|
|
|
|
that.setup = spec.setup || ipa_entity_setup;
|
|
|
|
that.dialogs = [];
|
|
that.dialogs_by_name = {};
|
|
|
|
that.facets = [];
|
|
that.facets_by_name = {};
|
|
|
|
that.facet_name = null;
|
|
|
|
that.associations = [];
|
|
that.associations_by_name = {};
|
|
|
|
that.superior = function(name) {
|
|
var method = that[name];
|
|
return function () {
|
|
return method.apply(that, arguments);
|
|
};
|
|
};
|
|
|
|
that.get_dialog = function(name) {
|
|
return that.dialogs_by_name[name];
|
|
};
|
|
|
|
that.add_dialog = function(dialog) {
|
|
dialog.entity_name = that.name;
|
|
that.dialogs.push(dialog);
|
|
that.dialogs_by_name[dialog.name] = dialog;
|
|
};
|
|
|
|
that.get_facet = function(name) {
|
|
return that.facets_by_name[name];
|
|
};
|
|
|
|
that.add_facet = function(facet) {
|
|
facet.entity_name = that.name;
|
|
that.facets.push(facet);
|
|
that.facets_by_name[facet.name] = facet;
|
|
};
|
|
|
|
that.get_associations = function() {
|
|
return that.associations;
|
|
};
|
|
|
|
that.get_association = function(name) {
|
|
return that.associations_by_name[name];
|
|
};
|
|
|
|
that.add_association = function(config) {
|
|
that.associations.push(config);
|
|
that.associations_by_name[config.name] = config;
|
|
};
|
|
|
|
that.create_association = function(spec) {
|
|
var config = ipa_association_config(spec);
|
|
that.add_association(config);
|
|
return config;
|
|
};
|
|
|
|
that.init = function() {
|
|
for (var i=0; i<that.facets.length; i++) {
|
|
var facet = that.facets[i];
|
|
facet.init();
|
|
}
|
|
};
|
|
|
|
return that;
|
|
}
|
|
|
|
/* use this to track individual changes between two hashchange events */
|
|
var window_hash_cache = {};
|
|
|
|
function ipa_get_entity(entity_name) {
|
|
|
|
var entity = IPA.get_entity(entity_name);
|
|
if (entity) return entity;
|
|
|
|
entity = ipa_entity({
|
|
'name': entity_name
|
|
});
|
|
|
|
IPA.add_entity(entity);
|
|
return entity;
|
|
}
|
|
|
|
function ipa_entity_get_search_facet(entity_name) {
|
|
|
|
var entity = ipa_get_entity(entity_name);
|
|
|
|
var facet = entity.get_facet('search');
|
|
if (facet) return facet;
|
|
|
|
facet = ipa_search_facet({
|
|
'name': 'search',
|
|
'label': 'Search'
|
|
});
|
|
entity.add_facet(facet);
|
|
|
|
return facet;
|
|
}
|
|
|
|
function ipa_entity_set_search_definition(entity_name, data) {
|
|
|
|
var facet = ipa_entity_get_search_facet(entity_name);
|
|
|
|
for (var i=0; i<data.length; i++) {
|
|
var defn = data[i];
|
|
facet.create_column({
|
|
'name': defn[0],
|
|
'label': defn[1],
|
|
'setup': defn[2]
|
|
});
|
|
}
|
|
}
|
|
|
|
function ipa_entity_set_add_definition(entity_name, data) {
|
|
|
|
var entity = ipa_get_entity(entity_name);
|
|
|
|
var dialog = ipa_add_dialog({
|
|
'name': 'add',
|
|
'title': data[1]
|
|
});
|
|
entity.add_dialog(dialog);
|
|
dialog.init();
|
|
|
|
for (var i=0; i<data[2].length; i++) {
|
|
var field = data[2][i];
|
|
dialog.add_field(ipa_text_widget({
|
|
name: field[0],
|
|
label: field[1],
|
|
setup: field[2],
|
|
undo: false
|
|
}));
|
|
}
|
|
}
|
|
|
|
function ipa_entity_get_add_dialog(entity_name) {
|
|
|
|
var entity = ipa_get_entity(entity_name);
|
|
return entity.get_add_dialog();
|
|
}
|
|
|
|
function ipa_entity_get_details_facet(entity_name) {
|
|
|
|
var entity = ipa_get_entity(entity_name);
|
|
|
|
var facet = entity.get_facet('details');
|
|
if (facet) return facet;
|
|
|
|
facet = ipa_details_facet({
|
|
'name': 'details',
|
|
'label': 'Details'
|
|
});
|
|
entity.add_facet(facet);
|
|
|
|
return facet;
|
|
}
|
|
|
|
function ipa_entity_set_details_definition(entity_name, sections) {
|
|
|
|
var facet = ipa_entity_get_details_facet(entity_name);
|
|
|
|
for (var i=0; i<sections.length; i++) {
|
|
var section = sections[i];
|
|
facet.add_section(section);
|
|
}
|
|
}
|
|
|
|
function ipa_entity_get_association_facet(entity_name) {
|
|
|
|
var entity = ipa_get_entity(entity_name);
|
|
|
|
var facet = entity.get_facet('associate');
|
|
if (facet) return facet;
|
|
|
|
facet = ipa_association_facet({
|
|
'name': 'associate'
|
|
});
|
|
entity.add_facet(facet);
|
|
|
|
return facet;
|
|
}
|
|
|
|
function ipa_entity_set_association_definition(entity_name, data) {
|
|
|
|
var entity = ipa_get_entity(entity_name);
|
|
|
|
ipa_entity_get_association_facet(entity_name);
|
|
|
|
for (var other_entity in data) {
|
|
var config = data[other_entity];
|
|
entity.create_association({
|
|
'name': other_entity,
|
|
'associator': config.associator,
|
|
'add_method': config.add_method,
|
|
'delete_method': config.delete_method
|
|
});
|
|
}
|
|
}
|
|
|
|
function ipa_entity_set_facet_definition(entity_name, list) {
|
|
|
|
var entity = ipa_get_entity(entity_name);
|
|
|
|
for (var i=0; i<list.length; i++) {
|
|
var facet = list[i];
|
|
entity.add_facet(facet);
|
|
}
|
|
}
|
|
|
|
function ipa_details_only_setup(container){
|
|
ipa_entity_setup.call(this, container, 'details');
|
|
}
|
|
|
|
function ipa_entity_setup(container) {
|
|
|
|
var entity = this;
|
|
|
|
var facet_name = $.bbq.getState(entity.name + '-facet', true) || entity.default_facet || 'search';
|
|
|
|
var facet = entity.get_facet(facet_name);
|
|
if (!facet) return;
|
|
|
|
if (IPA.entity_name == entity.name) {
|
|
if (entity.facet_name == facet_name) {
|
|
if (!facet.is_dirty()) return;
|
|
|
|
} else {
|
|
entity.facet_name = facet_name;
|
|
}
|
|
} else {
|
|
IPA.entity_name = entity.name;
|
|
}
|
|
|
|
container.empty();
|
|
|
|
facet.setup_views(container);
|
|
facet.create(container);
|
|
container.children().last().addClass('client');
|
|
facet.setup(container);
|
|
facet.load(container);
|
|
}
|
|
|
|
|
|
function action_panel(entity_name){
|
|
var div = $('<div/>', {
|
|
"class":"action-panel",
|
|
html: $('<h3>Actions</h3>')
|
|
});
|
|
var ul = $('<ul/>', {'class': 'action'}).appendTo(div);
|
|
|
|
var entity = IPA.get_entity(entity_name);
|
|
|
|
for (var i=0; i<entity.facets.length; i++) {
|
|
var other_facet = entity.facets[i];
|
|
var facet_name = other_facet.name;
|
|
|
|
if (other_facet.label) {
|
|
|
|
var label = other_facet.label;
|
|
|
|
ul.append($('<li/>', {
|
|
title: other_facet.name,
|
|
text: label,
|
|
click: function(entity_name, facet_name) {
|
|
return function() {
|
|
IPA.show_page(entity_name, facet_name);
|
|
};
|
|
}(entity_name, facet_name)
|
|
}));
|
|
|
|
} else { // For now empty label indicates an association facet
|
|
|
|
var attribute_members = IPA.metadata[entity_name].attribute_members;
|
|
for (var attribute_member in attribute_members) {
|
|
var other_entities = attribute_members[attribute_member];
|
|
for (var j = 0; j < other_entities.length; j++) {
|
|
var other_entity = other_entities[j];
|
|
var label = IPA.metadata[other_entity].label;
|
|
|
|
ul.append($('<li/>', {
|
|
title: other_entity,
|
|
text: label,
|
|
click: function(entity_name, facet_name, other_entity) {
|
|
return function() {
|
|
IPA.show_page(entity_name, facet_name, other_entity);
|
|
};
|
|
}(entity_name, facet_name, other_entity)
|
|
}));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return div;
|
|
}
|
|
|
|
|
|
function ipa_facet_setup_views(container) {
|
|
|
|
var facet = this;
|
|
var entity_name = facet.entity_name;
|
|
action_panel(entity_name).appendTo(container);
|
|
}
|
|
|