/*jsl:import ipa.js */ /*jsl:import certificate.js */ /* Authors: * Pavel Zuna * Endi S. Dewata * * 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, details.js, search.js, add.js, entity.js */ IPA.entity_factories.host = function () { return IPA.entity_builder(). entity('host'). search_facet({ columns: [ 'fqdn', 'description', { name: 'krblastpwdchange', label: IPA.messages.objects.host.enrolled, format: IPA.utc_date_column_format } ] }). details_facet({ sections: [ { name: 'details', fields: [ { factory: IPA.host_dnsrecord_entity_link_widget, name: 'fqdn', other_entity: 'dnsrecord' }, 'krbprincipalname', 'description', 'l', 'nshostlocation', 'nshardwareplatform', 'nsosversion' ] }, { factory: IPA.host_enrollment_section, name: 'enrollment', fields: [ { factory: IPA.host_keytab_widget, name: 'has_keytab', label: IPA.messages.objects.host.keytab }, { factory: IPA.host_password_widget, name: 'has_password', label: IPA.messages.objects.host.password } ] }, { name: 'certificate', fields: [ { factory: IPA.host_certificate_status_widget, name: 'certificate_status', label: IPA.messages.objects.host.status } ] } ] }). association_facet({ name: 'managedby_host', add_method: 'add_managedby', remove_method: 'remove_managedby' }). association_facet({ name: 'memberof_hostgroup', associator: IPA.serial_associator }). association_facet({ name: 'memberof_netgroup', associator: IPA.serial_associator }). association_facet({ name: 'memberof_role', associator: IPA.serial_associator }). association_facet({ name: 'memberof_hbacrule', associator: IPA.serial_associator, add_method: 'add_host', remove_method: 'remove_host' }). association_facet({ name: 'memberof_sudorule', associator: IPA.serial_associator, add_method: 'add_host', remove_method: 'remove_host' }). standard_association_facets(). adder_dialog({ factory: IPA.host_adder_dialog, width: 400, height: 250, fields: [ { name: 'fqdn', optional: true, hidden: true }, { factory: IPA.text_widget, name: 'hostname', label: IPA.messages.objects.service.host, undo: false }, { factory: IPA.dnszone_select_widget, name: 'dnszone', label: IPA.metadata.objects.dnszone.label_singular, editable: true, empty_option: false, undo: false }, { factory: IPA.force_host_add_checkbox_widget, name: 'force' }, { factory: IPA.text_widget, name: 'ip_address', label: IPA.get_method_option('host_add','ip_address')['label'], tooltip: IPA.get_method_option('host_add','ip_address')['doc'], undo: false } ] }). deleter_dialog({ factory: IPA.host_deleter_dialog }). build(); }; IPA.host_adder_dialog = function(spec) { spec = spec || {}; spec.retry = typeof spec.retry !== 'undefined' ? spec.retry : false; var that = IPA.add_dialog(spec); that.create = function() { that.container.addClass('host-adder-dialog'); var hostname = that.get_field('hostname'); var dnszone = that.get_field('dnszone'); var table = $('', { name: 'fqdn' }).appendTo(that.container); var tr = $('').appendTo(table); var td = $('').appendTo(table); td = $('
', { name: hostname.name, title: hostname.label, text: hostname.label }).appendTo(tr); td = $('', { name: dnszone.name, title: dnszone.label, text: dnszone.label }).appendTo(tr); tr = $('
').appendTo(tr); var span = $('', { name: hostname.name }).appendTo(td); hostname.create(span); td = $('').appendTo(tr); span = $('', { name: dnszone.name }).appendTo(td); dnszone.create(span); table = $('', { name: 'other' }).appendTo(that.container); var force = that.get_field('force'); tr = $('').appendTo(table); td = $('').appendTo(table); td = $('
', { title: force.label, text: force.label+':' }).appendTo(tr); td = $('', { title: force.label }).appendTo(tr); span = $('', { name: force.name }).appendTo(td); force.create(span); var ip_address = that.get_field('ip_address'); tr = $('
', { title: ip_address.label, text: ip_address.label+':' }).appendTo(tr); td = $('', { title: ip_address.label }).appendTo(tr); span = $('', { name: ip_address.name }).appendTo(td); ip_address.create(span); var hostname_input = $('input', hostname.container); var dnszone_input = $('input', dnszone.container); hostname_input.keyup(function(e) { var value = hostname_input.val(); var i = value.indexOf('.'); if (i >= 0) { var hostname = value.substr(0, i); var dnszone = value.substr(i+1); hostname_input.val(hostname); if (dnszone) { dnszone_input.val(dnszone); dnszone_input.focus(); } IPA.select_range(dnszone_input, 0, dnszone_input.val().length); } }); }; that.save = function(record) { var field = that.get_field('hostname'); var hostname = field.save()[0]; field = that.get_field('dnszone'); var dnszone = field.save()[0]; record.fqdn = hostname && dnszone ? hostname+'.'+dnszone : null; field = that.get_field('force'); record.force = field.save()[0]; field = that.get_field('ip_address'); record.ip_address = field.save()[0]; }; that.on_error = function(xhr, text_status, error_thrown) { var ajax = this; var command = that.command; var data = error_thrown.data; var dialog = null; if(data && data.error && data.error.code === 4304) { dialog = IPA.message_dialog({ message: data.error.message, title: spec.title, on_ok: function() { data.result = { result: { fqdn: command.args[0] } }; command.on_success.call(ajax, data, text_status, xhr); } }); } else { dialog = IPA.error_dialog({ xhr: xhr, text_status: text_status, error_thrown: error_thrown, command: command }); } dialog.open(that.container); }; return that; }; IPA.host_deleter_dialog = function(spec) { spec = spec || {}; var that = IPA.search_deleter_dialog(spec); that.create = function() { that.deleter_dialog_create(); var metadata = IPA.get_method_option('host_del', 'updatedns'); that.updatedns = $('', { type: 'checkbox', name: 'updatedns', title: metadata.doc }).appendTo(that.container); that.container.append(' '); that.container.append(metadata.doc); }; that.create_command = function() { var batch = that.search_deleter_dialog_create_command(); var updatedns = that.updatedns.is(':checked'); for (var i=0; i', { name: 'missing', style: 'display: none;' }).appendTo(container); $('', { src: 'caution.png', 'class': 'status-icon' }).appendTo(that.missing_span); that.missing_span.append(' '); that.missing_span.append(IPA.messages.objects.host.keytab_missing); that.present_span = $('', { name: 'present', style: 'display: none;' }).appendTo(container); $('', { src: 'check.png', 'class': 'status-icon' }).appendTo(that.present_span); that.present_span.append(' '); that.present_span.append(IPA.messages.objects.host.keytab_present); that.present_span.append(': '); IPA.button({ name: 'unprovision', label: IPA.messages.objects.host.delete_key_unprovision, click: function() { that.show_unprovision_dialog(); return false; } }).appendTo(that.present_span); }; that.show_unprovision_dialog = function() { var label = that.entity.metadata.label_singular; var title = IPA.messages.objects.host.unprovision_title; title = title.replace('${entity}', label); var dialog = IPA.dialog({ 'title': title }); dialog.create = function() { dialog.container.append(IPA.messages.objects.host.unprovision_confirmation); }; dialog.add_button(IPA.messages.objects.host.unprovision, function() { that.unprovision( function(data, text_status, xhr) { set_status('missing'); dialog.close(); }, function(xhr, text_status, error_thrown) { dialog.close(); } ); }); dialog.open(that.container); }; that.unprovision = function(on_success, on_error) { var pkey = that.entity.get_primary_key(); var command = IPA.command({ name: that.entity.name+'_disable_'+pkey, entity: that.entity.name, method: 'disable', args: pkey, options: { all: true, rights: true }, on_success: on_success, on_error: on_error }); command.execute(); }; that.load = function(result) { that.result = result; var value = result[that.name]; set_status(value ? 'present' : 'missing'); }; function set_status(status) { that.present_span.css('display', status == 'present' ? 'inline' : 'none'); that.missing_span.css('display', status == 'missing' ? 'inline' : 'none'); } return that; }; IPA.host_password_widget = function(spec) { spec = spec || {}; var that = IPA.widget(spec); that.create = function(container) { that.widget_create(container); that.missing_span = $('', { name: 'missing' }).appendTo(container); $('', { src: 'caution.png', 'class': 'status-icon' }).appendTo(that.missing_span); that.missing_span.append(' '); that.missing_span.append(IPA.messages.objects.host.password_missing); that.present_span = $('', { name: 'present', style: 'display: none;' }).appendTo(container); $('', { src: 'check.png', 'class': 'status-icon' }).appendTo(that.present_span); that.present_span.append(' '); that.present_span.append(IPA.messages.objects.host.password_present); container.append(': '); that.set_password_button = IPA.button({ name: 'set_password', label: IPA.messages.objects.host.password_set_button, click: function() { that.show_password_dialog(); return false; } }).appendTo(container); }; that.show_password_dialog = function() { var title; var label; if (that.status == 'missing') { title = IPA.messages.objects.host.password_set_title; label = IPA.messages.objects.host.password_set_button; } else { title = IPA.messages.objects.host.password_reset_title; label = IPA.messages.objects.host.password_reset_button; } var dialog = IPA.dialog({ title: title, width: 400 }); var password1 = dialog.add_field(IPA.text_widget({ name: 'password1', label: IPA.messages.password.new_password, type: 'password', undo: false })); var password2 = dialog.add_field(IPA.text_widget({ name: 'password2', label: IPA.messages.password.verify_password, type: 'password', undo: false })); dialog.add_button(label, function() { var record = {}; dialog.save(record); var new_password = record.password1; var repeat_password = record.password2; if (new_password != repeat_password) { alert(IPA.messages.password.password_must_match); return; } that.set_password( new_password, function(data, text_status, xhr) { that.load(data.result.result); dialog.close(); }, function(xhr, text_status, error_thrown) { dialog.close(); } ); dialog.close(); }); dialog.add_button(IPA.messages.buttons.cancel, function() { dialog.close(); }); dialog.open(that.container); }; that.set_password = function(password, on_success, on_error) { var pkey = that.entity.get_primary_key(); var command = IPA.command({ entity: that.entity.name, method: 'mod', args: pkey, options: { all: true, rights: true, userpassword: password }, on_success: on_success, on_error: on_error }); command.execute(); }; that.load = function(result) { that.result = result; var value = result[that.name]; set_status(value ? 'present' : 'missing'); }; function set_status(status) { that.status = status; var password_label = $('.button-label', that.set_password_button); if (status == 'missing') { that.missing_span.css('display', 'inline'); that.present_span.css('display', 'none'); password_label.text(IPA.messages.objects.host.password_set_button); } else { that.missing_span.css('display', 'none'); that.present_span.css('display', 'inline'); password_label.text(IPA.messages.objects.host.password_reset_button); } } return that; }; IPA.host_certificate_status_widget = function (spec) { spec = spec || {}; var that = IPA.cert.status_widget(spec); that.get_entity_pkey = function(result) { var values = result['fqdn']; return values ? values[0] : null; }; that.get_entity_name = function(result) { return that.get_entity_pkey(result); }; that.get_entity_principal = function(result) { var values = result['krbprincipalname']; return values ? values[0] : null; }; that.get_entity_certificate = function(result) { var values = result['usercertificate']; return values ? values[0].__base64__ : null; }; return that; };