mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
cec6703da3
The user details facet has been modified such that when the account is activated/deactivated the page will be reloaded. Some methods in the framework have been changed: - The ipa_widget.clear() has been removed because it can be replaced by existing reset(). - The ipa_widget.set_values() has been renamed into update().
119 lines
3.3 KiB
JavaScript
119 lines
3.3 KiB
JavaScript
/* Authors:
|
|
* Pavel Zuna <pzuna@redhat.com>
|
|
* Endi Sukma 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 */
|
|
|
|
function ipa_add_dialog(spec) {
|
|
|
|
spec = spec || {};
|
|
|
|
var that = ipa_dialog(spec);
|
|
|
|
that.name = spec.name;
|
|
that.title = spec.title;
|
|
that._entity_name = spec.entity_name;
|
|
|
|
that.init = function() {
|
|
|
|
that.add_button('Add', function() {
|
|
var record = that.get_record();
|
|
that.add(
|
|
record,
|
|
function() {
|
|
var entity = IPA.get_entity(that.entity_name);
|
|
var facet = entity.get_facet('search');
|
|
var table = facet.table;
|
|
table.refresh();
|
|
that.close();
|
|
}
|
|
);
|
|
});
|
|
|
|
|
|
that.add_button('Add and Add Another', function() {
|
|
var record = that.get_record();
|
|
that.add(
|
|
record,
|
|
function() {
|
|
var entity = IPA.get_entity(that.entity_name);
|
|
var facet = entity.get_facet('search');
|
|
var table = facet.table;
|
|
table.refresh();
|
|
that.reset();
|
|
}
|
|
);
|
|
});
|
|
|
|
that.add_button('Add and Edit', function() {
|
|
var record = that.get_record();
|
|
that.add(
|
|
record,
|
|
function() {
|
|
that.close();
|
|
|
|
var pkey_name = IPA.metadata[that.entity_name].primary_key;
|
|
var pkey = record[pkey_name];
|
|
|
|
var state = {};
|
|
state[that.entity_name + '-facet'] = 'details';
|
|
state[that.entity_name + '-pkey'] = pkey;
|
|
$.bbq.pushState(state);
|
|
},
|
|
function() { that.close(); }
|
|
);
|
|
});
|
|
|
|
that.add_button('Cancel', function() {
|
|
that.close();
|
|
});
|
|
|
|
that.dialog_init();
|
|
};
|
|
|
|
that.add = function(record, on_success, on_error) {
|
|
|
|
var pkey_name = IPA.metadata[that.entity_name].primary_key;
|
|
|
|
var args = [];
|
|
var options = {};
|
|
|
|
for (var i=0; i<that.fields.length; i++) {
|
|
var field = that.fields[i];
|
|
|
|
var value = record[field.name];
|
|
if (!value) continue;
|
|
|
|
if (field.name == pkey_name) {
|
|
args.push(value);
|
|
} else {
|
|
options[field.name] = value;
|
|
}
|
|
}
|
|
|
|
ipa_cmd('add', args, options, on_success, on_error, that.entity_name);
|
|
};
|
|
|
|
that.add_dialog_init = that.init;
|
|
|
|
return that;
|
|
}
|
|
|