/*jsl:import ipa.js */ /* Authors: * Adam Young * * 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, either version 3 of the License, or * (at your option) any later version. * * 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, see . */ /* REQUIRES: ipa.js */ /* CURRENTLY ALSO REQUIRES search.js, because it reuses it's code to create * the AssociationList elements; IT NEEDS IT'S OWN CODE! */ IPA.associator = function (spec) { spec = spec || {}; var that = {}; that.entity = spec.entity; that.pkey = spec.pkey; that.other_entity = spec.other_entity; that.values = spec.values; that.method = spec.method; that.on_success = spec.on_success; that.on_error = spec.on_error; that.execute = function() { }; return that; }; /** *This associator is built for the case where each association requires a separate rpc */ IPA.serial_associator = function(spec) { spec = spec || {}; var that = IPA.associator(spec); that.execute = function() { if (!that.values || !that.values.length) { that.on_success(); return; } var batch = IPA.batch_command({ on_success: that.on_success, on_error: that.on_error }); var args, options, command; for(var i=0; i < that.values.length; i++) { args = [that.values[i]]; options = {}; options[that.entity.name] = that.pkey; command = IPA.command({ entity: that.other_entity, method: that.method, args: args, options: options }); batch.add_command(command); } //alert(JSON.stringify(command.to_json())); batch.execute(); }; return that; }; /** *This associator is for the common case where all the asociations can be sent in a single rpc */ IPA.bulk_associator = function(spec) { spec = spec || {}; var that = IPA.associator(spec); that.execute = function() { if (!that.values || !that.values.length) { that.on_success(); return; } var value = that.values.shift(); if (!value) { that.on_success(); return; } while (that.values.length > 0) { value += ',' + that.values.shift(); } var args = [that.pkey]; var options = { 'all': true }; options[that.other_entity] = value; var command = IPA.command({ entity: that.entity.name, method: that.method, args: args, options: options, on_success: that.on_success, on_error: that.on_error }); //alert(JSON.stringify(command.to_json())); command.execute(); }; return that; }; /** * This dialog is used for adding associations between two entities. */ IPA.association_adder_dialog = function (spec) { spec = spec || {}; /* TODO: columns map in IPA.adder_dialog should be removed and add_column() should be modified to add the column directly into the available_table and selected_table. This way IPA.association_adder_dialog can call create_column() from the initialization area, no need to modify the parameters. */ default_columns(spec); var that = IPA.adder_dialog(spec); that.entity = spec.entity; that.pkey = spec.pkey; that.other_entity = spec.other_entity; that.attribute_member = spec.attribute_member; that.search = function() { function on_success(data, text_status, xhr) { var results = data.result; that.clear_available_values(); var pkey_attr = that.entity.metadata.primary_key; for (var i=0; i 100) { length = 100; } var batch = IPA.batch_command({ 'name': that.entity.name+'_'+that.name, 'on_success': on_success, 'on_error': on_error }); for (var i=0; i 1) { var state = {}; state[that.entity_name+'-page'] = that.table.current_page - 1; IPA.nav.push_state(state); } }; that.table.next_page = function() { if (that.table.current_page < that.table.total_pages) { var state = {}; state[that.entity_name+'-page'] = that.table.current_page + 1; IPA.nav.push_state(state); } }; that.table.set_page = function(page) { if (page < 1) { page = 1; } else if (page > that.total_pages) { page = that.total_pages; } var state = {}; state[that.entity_name+'-page'] = page; IPA.nav.push_state(state); }; that.table.refresh = function() { var state = {}; var page = parseInt(IPA.nav.get_state(that.entity_name+'-page'), 10) || 1; if (page < 1) { state[that.entity_name+'-page'] = 1; IPA.nav.push_state(state); return; } else if (page > that.table.total_pages) { state[that.entity_name+'-page'] = that.table.total_pages; IPA.nav.push_state(state); return; } that.table.current_page = page; that.table.current_page_input.val(page); that.refresh_table(); }; } that.create_header = function(container) { that.facet_create_header(container); that.pkey = IPA.nav.get_state(that.entity.name+'-pkey'); if (!that.read_only) { that.remove_button = IPA.action_button({ name: 'remove', label: IPA.messages.buttons.remove, icon: 'remove-icon', click: function() { if (!that.remove_button.hasClass('action-button-disabled')) { that.show_remove_dialog(); } return false; } }).appendTo(that.controls); that.add_button = IPA.action_button({ name: 'add', label: IPA.messages.buttons.enroll, icon: 'add-icon', click: function() { if (!that.add_button.hasClass('action-button-disabled')) { that.show_add_dialog(); } return false; } }).appendTo(that.controls); } if (that.indirect_attribute_member) { var span = $('', { 'class': 'right-aligned-facet-controls' }).appendTo(that.controls); span.append(IPA.messages.association.show_results); span.append(' '); that.direct_radio = $('', { type: 'radio', name: 'type', value: 'direct', click: function() { that.association_type = $(this).val(); that.refresh(); return true; } }).appendTo(span); span.append(' '); span.append(IPA.messages.association.direct_enrollment); span.append(' '); that.indirect_radio = $('', { type: 'radio', name: 'type', value: 'indirect', click: function() { that.association_type = $(this).val(); that.refresh(); return true; } }).appendTo(span); span.append(' '); span.append(IPA.messages.association.indirect_enrollment); } }; that.get_attribute_name = function() { if (that.association_type == 'direct') { return that.attribute_member+'_'+that.other_entity; } else { return that.indirect_attribute_member+'_'+that.other_entity; } }; that.create_content = function(container) { that.table.create(container); }; that.show = function() { that.facet_show(); that.pkey = IPA.nav.get_state(that.entity.name+'-pkey'); that.header.set_pkey(that.pkey); }; that.show_add_dialog = function() { var pkey = IPA.nav.get_state(that.entity.name+'-pkey'); var label = IPA.metadata.objects[that.other_entity] ? IPA.metadata.objects[that.other_entity].label : that.other_entity; var title = that.add_title; title = title.replace('${entity}', that.entity.metadata.label_singular); title = title.replace('${primary_key}', pkey); title = title.replace('${other_entity}', label); var dialog = IPA.association_adder_dialog({ 'title': title, 'entity': that.entity, 'pkey': pkey, 'other_entity': that.other_entity, 'attribute_member': that.attribute_member }); var adder_columns = that.adder_columns.values; if (adder_columns.length) { dialog.set_columns(adder_columns); } dialog.execute = function() { var pkey = IPA.nav.get_state(that.entity.name+'-pkey'); var associator = that.associator({ 'entity': that.entity, 'pkey': pkey, 'other_entity': that.other_entity, 'values': dialog.get_selected_values(), 'method': that.add_method, 'on_success': function() { that.refresh(); dialog.close(); }, 'on_error': function() { that.refresh(); dialog.close(); } }); associator.execute(); }; dialog.open(that.container); }; that.show_remove_dialog = function() { var label = IPA.metadata.objects[that.other_entity] ? IPA.metadata.objects[that.other_entity].label : that.other_entity; var values = that.table.get_selected_values(); if (!values.length) { var message = IPA.messages.dialogs.remove_empty; alert(message); return; } var pkey = IPA.nav.get_state(that.entity.name+'-pkey'); var title = that.remove_title; title = title.replace('${entity}', that.entity.metadata.label_singular); title = title.replace('${primary_key}', pkey); title = title.replace('${other_entity}', label); var dialog = IPA.association_deleter_dialog({ title: title, entity: that.entity, pkey: pkey, other_entity: that.other_entity, values: values }); dialog.execute = function() { var associator = that.associator({ entity: that.entity, pkey: pkey, other_entity: that.other_entity, values: values, method: that.remove_method, on_success: function() { that.refresh(); dialog.close(); }, on_error: function() { that.refresh(); dialog.close(); } }); associator.execute(); }; dialog.open(that.container); }; that.refresh_table = function() { that.table.current_page_input.val(that.table.current_page); that.table.total_pages_span.text(that.table.total_pages); var pkeys = that.data[that.get_attribute_name()]; if (!pkeys || !pkeys.length) { that.table.empty(); that.table.summary.text(IPA.messages.association.no_entries); return; } pkeys.sort(); var total = pkeys.length; var start = (that.table.current_page - 1) * that.table.page_length + 1; var end = that.table.current_page * that.table.page_length; end = end > total ? total : end; var summary = IPA.messages.association.paging; summary = summary.replace('${start}', start); summary = summary.replace('${end}', end); summary = summary.replace('${total}', total); that.table.summary.text(summary); var list = pkeys.slice(start-1, end); var columns = that.table.columns.values; if (columns.length == 1) { // show pkey only var name = columns[0].name; that.table.empty(); for (var i=0; i