mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 18:01:23 -06:00
728a1d8361
THe client aread class is added after the create call. THe logic assumes that there are two divs under the tabs. THe records facet broke that assumption. THis fixes it
602 lines
17 KiB
JavaScript
602 lines
17 KiB
JavaScript
/* Authors:
|
|
* Adam Young <ayoung@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, 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* REQUIRES: ipa.js, details.js, search.js, add.js, entity.js */
|
|
|
|
/* DNS */
|
|
|
|
IPA.add_entity(function (){
|
|
var that = ipa_entity({
|
|
name: 'dnszone'
|
|
});
|
|
|
|
that.init = function() {
|
|
var search_facet = ipa_search_facet({
|
|
name: 'search',
|
|
label: 'Search',
|
|
entity_name: that.name
|
|
});
|
|
search_facet.create_column({name:'idnsname'});
|
|
that.add_facet(search_facet);
|
|
|
|
that.add_facet(function() {
|
|
var that = ipa_details_facet({name:'details',label:'Details'});
|
|
that.add_section(
|
|
ipa_stanza({name:'identity', label:'DNS Zone Details'}).
|
|
input({name:'idnsname'}).
|
|
input({name:'idnszoneactive'}).
|
|
input({name:'idnssoamname'}).
|
|
input({name:'idnssoarname'}).
|
|
input({name:'idnssoaserial'}).
|
|
input({name:'idnssoarefresh'}).
|
|
input({name:'idnssoaretry'}).
|
|
input({name:'idnssoaexpire'}).
|
|
input({name:'idnssoaminimum'}).
|
|
input({name:'dnsttl'}).
|
|
input({name:'dnsclass'}).
|
|
input({name:'idnsallowdynupdate'}).
|
|
input({name:'idnsupdatepolicy'}));
|
|
|
|
return that;
|
|
}());
|
|
|
|
that.add_facet( ipa_records_facet({
|
|
'name': 'records',
|
|
'label': IPA.metadata.dnsrecord.label
|
|
}));
|
|
|
|
var dialog = ipa_add_dialog({
|
|
name: 'add',
|
|
title: 'Add DNS Zone'
|
|
});
|
|
that.add_dialog(dialog);
|
|
|
|
dialog.add_field(ipa_text_widget({ name: 'idnsname', undo: false}));
|
|
dialog.add_field(ipa_text_widget({ name: 'idnssoamname', undo: false}));
|
|
dialog.add_field(ipa_text_widget({ name: 'idnssoarname', undo: false}));
|
|
dialog.init();
|
|
|
|
that.create_association_facets();
|
|
that.entity_init();
|
|
};
|
|
|
|
|
|
return that;
|
|
}());
|
|
|
|
|
|
|
|
function ipa_records_facet(spec){
|
|
|
|
spec = spec || {};
|
|
|
|
var that = ipa_facet(spec);
|
|
|
|
that.record = null;
|
|
|
|
var record_types =[ 'a', 'aaaa', 'dname', 'cname', 'mx', 'ns', 'ptr',
|
|
'srv', 'txt', 'a6', 'afsdb', 'cert', 'ds', 'hinfo',
|
|
'key', 'kx', 'loc', 'md', 'minfo', 'naptr', 'nsec',
|
|
'nxt', 'rrsig', 'sshfp'];
|
|
|
|
function create_type_select(id,add_none) {
|
|
var type_select = $('<select/>',{
|
|
id: id
|
|
});
|
|
|
|
if (add_none){
|
|
type_select.append($('<option/>',{
|
|
text: '(any)',
|
|
value: ''
|
|
}));
|
|
}
|
|
for (var t = 0 ; t < record_types.length ; t += 1){
|
|
var record_type = record_types[t].toUpperCase();
|
|
|
|
type_select.append($('<option/>',{
|
|
text: record_type,
|
|
value: record_type
|
|
}));
|
|
}
|
|
return type_select;
|
|
}
|
|
|
|
|
|
var entry_attrs = {};
|
|
|
|
|
|
function add_click(){
|
|
|
|
var add_dialog = $('<div/>',{
|
|
id: 'add_dns_resource_record',
|
|
title: 'Add DNS Resource Record'
|
|
});
|
|
var dl = $('<dl></dl>').appendTo(add_dialog);
|
|
dl.append('<dt>Resource</dt>');
|
|
dl.append( $('<dd/>').
|
|
append($('<input type="text" id="dns-record-resource" />')));
|
|
dl.append('<dt>Type</dt>');
|
|
dl.append( $('<dd/>').append(create_type_select('dns-record-type')));
|
|
dl.append('<dt>Data</dt>');
|
|
dl.append($('<dd/>').append($('<textarea/>',{
|
|
id: 'dns-record-data',
|
|
rows:"8",
|
|
cols:"20"
|
|
})));
|
|
|
|
|
|
function add(evt, called_from_add_and_edit) {
|
|
var params = [];
|
|
var options = {};
|
|
function add_win(data, text_status, xhr) {
|
|
reload();
|
|
if (called_from_add_and_edit) {
|
|
}
|
|
}
|
|
|
|
function add_fail(data, text_status, xhr) {
|
|
}
|
|
|
|
params.push( $.bbq.getState(that.entity_name+'-pkey', true));
|
|
params.push(add_dialog.find('#dns-record-resource').val());
|
|
|
|
var key = add_dialog.find('#dns-record-type').val().toLowerCase()+
|
|
"record";
|
|
var value = add_dialog.find('#dns-record-data').val();
|
|
options[key] = value;
|
|
|
|
|
|
ipa_cmd('dnsrecord_add', params, options, add_win, add_fail);
|
|
//add_dialog.dialog('close');
|
|
}
|
|
|
|
function add_and_close(evt) {
|
|
add(evt, true);
|
|
add_dialog.dialog('close');
|
|
}
|
|
|
|
function cancel() {
|
|
add_dialog.dialog('close');
|
|
}
|
|
|
|
|
|
add_dialog.dialog({
|
|
modal: true,
|
|
buttons: {
|
|
'Add many': add,
|
|
'Add and Close': add_and_close,
|
|
'Cancel': cancel
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
|
|
function delete_records(records_table){
|
|
|
|
var zone = $.bbq.getState('dnszone-pkey', true);
|
|
|
|
var thead = records_table.find('thead');
|
|
thead.find("INPUT[type='checkbox']").
|
|
attr('checked', false);
|
|
|
|
var i = 0;
|
|
|
|
var tbody = records_table.find('tbody');
|
|
|
|
|
|
var delete_dialog = $('<div/>', {
|
|
title: IPA.messages.button.remove
|
|
});
|
|
var to_delete_table =
|
|
$('<table class="search-table" >'+
|
|
'<thead><tr><th>Resource</th><th>Type</th></tr></thead>'+
|
|
'<tbody></tbody></table>').appendTo(delete_dialog);
|
|
|
|
var to_delete_body = to_delete_table.find('tbody');
|
|
var delete_list = [];
|
|
tbody.find("INPUT[type='checkbox']").each(
|
|
function(index, box){
|
|
if (box.checked){
|
|
var tr = $(box).parents('tr');
|
|
var resource = $(tr).find('[title="idnsname"]').text();
|
|
var type = $(tr).find('[title="type"]').
|
|
text().toLowerCase();
|
|
var data = $(tr).find('[title="data"]').text();
|
|
var rectype=type+"record"
|
|
|
|
var options = {};
|
|
options[rectype]=data;
|
|
|
|
var command = {
|
|
"method":"dnsrecord_del",
|
|
"params":[[zone,resource], options]};
|
|
delete_list.push(command);
|
|
to_delete_body.append(
|
|
$('<tr></tr>').
|
|
append($('<td></td>',{html:resource}).
|
|
after($('<td></td>',{html:type}))));
|
|
}
|
|
}
|
|
);
|
|
|
|
function delete_on_click() {
|
|
var delete_count = delete_list.length;
|
|
function delete_complete(){
|
|
reload();
|
|
delete_dialog.dialog('close');
|
|
}
|
|
|
|
ipa_cmd('batch', delete_list, {},
|
|
delete_complete,delete_complete);
|
|
}
|
|
|
|
function cancel_on_click() {
|
|
delete_dialog.dialog('close');
|
|
}
|
|
|
|
|
|
if (delete_list.length == 0)
|
|
return;
|
|
|
|
delete_dialog.append($('<P/>',
|
|
{text: IPA.messages.search.delete_confirm}));
|
|
|
|
delete_dialog.dialog({
|
|
modal: true,
|
|
buttons: {
|
|
'Delete': delete_on_click,
|
|
'Cancel': cancel_on_click
|
|
}
|
|
});
|
|
|
|
|
|
}
|
|
|
|
that.is_dirty = function() {
|
|
var pkey = $.bbq.getState(that.entity_name + '-pkey', true) || '';
|
|
var record = $.bbq.getState(that.entity_name + '-record', true) || '';
|
|
return pkey != that.pkey || record != that.record;
|
|
};
|
|
|
|
function create(container) {
|
|
var details = $('<div/>', {
|
|
'class': 'content'
|
|
}).appendTo(container);
|
|
}
|
|
|
|
function setup(container){
|
|
|
|
that.facet_setup(container);
|
|
|
|
that.pkey = $.bbq.getState(that.entity_name + '-pkey', true) || '';
|
|
that.record = $.bbq.getState(that.entity_name + '-record', true) || '';
|
|
|
|
that.container.attr('title', that.entity_name);
|
|
|
|
var h2 = $('<h2></h2>',{
|
|
text: "Records for DNS Zone:" + that.pkey
|
|
}).appendTo(that.container);
|
|
|
|
|
|
var div = $('<div class="search-controls"></div>')
|
|
.appendTo(that.container);
|
|
|
|
var control_span =$('<span class="record-filter"></span>').appendTo(div);
|
|
|
|
control_span.append('Resource');
|
|
control_span.append($('<input />',{
|
|
type: "text",
|
|
id: 'dns-record-resource-filter',
|
|
name: 'search-' + that.entity_name + '-filter'
|
|
}));
|
|
|
|
control_span.append('Type');
|
|
|
|
create_type_select('dns-record-type-filter',true).
|
|
appendTo(control_span);
|
|
//commented out until data is searchable
|
|
//control_span.append('Data');
|
|
//control_span.append($('<input />',{
|
|
// type: "text",
|
|
// id: 'dns-record-data-filter',
|
|
// name: 'search-' + obj_name + '-filter'
|
|
//}));
|
|
|
|
|
|
ipa_button({
|
|
'label': IPA.messages.button.find,
|
|
'icon': 'ui-icon-search',
|
|
'click': function(){refresh()}
|
|
}).appendTo(control_span);
|
|
|
|
var action_panel_ul = $('.action-panel ul', that.container);
|
|
|
|
var action_controls = $('<li/>',{
|
|
"class":"action-controls"}).appendTo(action_panel_ul);
|
|
|
|
|
|
ipa_button({
|
|
'label': IPA.messages.button.add,
|
|
'icon': 'ui-icon-plus',
|
|
'click': add_click
|
|
}).appendTo(action_controls);
|
|
|
|
ipa_button({
|
|
'label': IPA.messages.button.remove,
|
|
'icon': 'ui-icon-trash',
|
|
'click': function(){delete_records(records_table);}
|
|
}).appendTo(action_controls);
|
|
|
|
div.append('<span class="records-buttons"></span>');
|
|
|
|
var records_results = $('<div/>', {
|
|
'class': 'records-results'
|
|
}).appendTo(that.container);
|
|
|
|
var records_table = $('<table/>', {
|
|
'class': 'search-table'
|
|
}).appendTo(records_results);
|
|
|
|
var thead = $('<thead><tr></tr></thead>').appendTo(records_table);
|
|
var tbody = $('<tbody></tbody>').appendTo(records_table);
|
|
var tfoot = $('<tfoot></tfoot>').appendTo(records_table);
|
|
|
|
var tr = thead.find('tr');
|
|
tr.append($('<th style="width: 15px" />').append(
|
|
$('<input />',{
|
|
type: 'checkbox',
|
|
click : function (evt){
|
|
tbody.find("INPUT[type='checkbox']").
|
|
attr('checked', this.checked);
|
|
}
|
|
})
|
|
));
|
|
tr.append($('<th/>',{
|
|
text: ipa_get_param_info("dnsrecord", "idnsname").label }));
|
|
tr.append($('<th>Record Type</th>'));
|
|
tr.append($('<th>Data</th>'));
|
|
|
|
refresh();
|
|
}
|
|
|
|
|
|
function load_on_win(data){
|
|
display(that.entity_name,data);
|
|
}
|
|
|
|
function load_on_fail(data){
|
|
display(that.entity_name,data);
|
|
}
|
|
|
|
function reload(){
|
|
refresh();
|
|
}
|
|
|
|
|
|
function refresh(){
|
|
|
|
var options = {};
|
|
|
|
var resource_filter = that.container.find("#dns-record-resource-filter")
|
|
.val();
|
|
if (resource_filter){
|
|
options.idnsname = resource_filter;
|
|
}
|
|
|
|
var type_filter = that.container.find("#dns-record-type-filter").val();
|
|
if (type_filter){
|
|
options.type = type_filter;
|
|
}
|
|
|
|
var data_filter = that.container.find("#dns-record-data-filter").val();
|
|
if (data_filter){
|
|
options.data = data_filter;
|
|
}
|
|
|
|
|
|
var pkey = $.bbq.getState(that.entity_name + '-pkey', true);
|
|
ipa_cmd('dnsrecord_find',[pkey],options,load_on_win, load_on_fail);
|
|
|
|
}
|
|
|
|
|
|
function generate_tr(thead, tbody, result){
|
|
var tr = $('<tr></tr>').appendTo(tbody);
|
|
|
|
search_generate_checkbox_td(tr, /*pkey_value*/ '');
|
|
|
|
//TODO get this fixed on the back end. For now, workaround
|
|
|
|
if (result.idnsname){
|
|
tr.append($('<td/>',{
|
|
title:'idnsname',
|
|
text: result.idnsname[0]
|
|
}));
|
|
}else{
|
|
tr.append($('<td/>',{
|
|
title:'idnsname',
|
|
text: result.dn.split(',')[0].split('=')[1]
|
|
}));
|
|
|
|
}
|
|
|
|
for (var i = 0; i < record_types.length; i += 1){
|
|
var field_name = record_types[i];
|
|
var field = result[field_name+'record'];
|
|
if ( field ){
|
|
var record_type = field_name;
|
|
var record_data = field[0];
|
|
break;
|
|
}
|
|
}
|
|
|
|
tr.append($('<td/>',{
|
|
title:'type',
|
|
text: record_type
|
|
}));
|
|
tr.append($('<td/>',{
|
|
title:'data',
|
|
text: record_data
|
|
}));
|
|
}
|
|
|
|
//TODO this is cut and pasted from search, we need to unify
|
|
function display(obj_name, data){
|
|
var selector = '.entity-container[title=' + obj_name + ']';
|
|
var thead = $(selector + ' thead');
|
|
var tbody = $(selector + ' tbody');
|
|
var tfoot = $(selector + ' tfoot');
|
|
|
|
tbody.find('tr').remove();
|
|
|
|
var result = data.result.result;
|
|
for (var i = 0; i < result.length; ++i){
|
|
generate_tr(thead, tbody, result[i]);
|
|
}
|
|
|
|
if (data.result.truncated) {
|
|
tfoot.text(
|
|
'Query returned results than configured size limit will show.' +
|
|
'First ' + data.result.count + ' results shown.'
|
|
);
|
|
} else {
|
|
tfoot.text(data.result.summary);
|
|
}
|
|
|
|
}
|
|
|
|
that.create = create;
|
|
that.setup = setup;
|
|
that.refresh = refresh;
|
|
|
|
return that;
|
|
}
|
|
|
|
|
|
/**Automount*/
|
|
|
|
IPA.add_entity(function (){
|
|
var that = ipa_entity({
|
|
name: 'automountlocation'
|
|
});
|
|
|
|
|
|
var search_facet = ipa_search_facet({
|
|
name: 'search',
|
|
label: 'Search',
|
|
entity_name: that.name
|
|
});
|
|
that.init = function() {
|
|
search_facet.create_column({name:'cn'});
|
|
that.add_facet(search_facet);
|
|
|
|
|
|
that.add_facet(function() {
|
|
var that = ipa_details_facet({name:'details',label:'Details'});
|
|
that.add_section(
|
|
ipa_stanza({name:'identity', label:'Automount Location Details'}).
|
|
input({name:'cn'}));
|
|
return that;
|
|
}());
|
|
|
|
var dialog = ipa_add_dialog({
|
|
name: 'add',
|
|
title: 'Add Automount Location'
|
|
});
|
|
that.add_dialog(dialog);
|
|
|
|
dialog.add_field(ipa_text_widget({ name: 'cn', undo: false}));
|
|
dialog.init();
|
|
|
|
that.create_association_facets();
|
|
that.entity_init();
|
|
|
|
}
|
|
return that;
|
|
}());
|
|
|
|
|
|
/**pwpolicy*/
|
|
|
|
|
|
IPA.add_entity(function (){
|
|
var that = ipa_entity({
|
|
name: 'pwpolicy'
|
|
});
|
|
|
|
|
|
var search_facet = ipa_search_facet({
|
|
name: 'search',
|
|
label: 'Search',
|
|
entity_name: that.name
|
|
});
|
|
that.init = function() {
|
|
search_facet.create_column({name:'cn'});
|
|
that.add_facet(search_facet);
|
|
|
|
|
|
that.add_facet(function() {
|
|
var that = ipa_details_facet({name:'details',label:'Details'});
|
|
that.add_section(
|
|
|
|
ipa_stanza({name:'identity', label:'Password Policy'}).
|
|
input({name:'krbmaxpwdlife'}).
|
|
input({name:'krbminpwdlife'}).
|
|
input({name:'krbpwdhistorylength'}).
|
|
input({name:'krbpwdmindiffchars'}).
|
|
input({name:'krbpwdminlength'}));
|
|
return that;
|
|
}());
|
|
|
|
var dialog = ipa_add_dialog({
|
|
name: 'add',
|
|
title: 'Add Password Policy',
|
|
entity_name:'pwpolicy'
|
|
});
|
|
that.add_dialog(dialog);
|
|
|
|
dialog.add_field(ipa_text_widget({ name: 'cn', undo: false}));
|
|
dialog.init();
|
|
|
|
that.create_association_facets();
|
|
that.entity_init();
|
|
|
|
};
|
|
return that;
|
|
}());
|
|
|
|
|
|
|
|
/**
|
|
krbtpolicy
|
|
Does not have search
|
|
*/
|
|
|
|
ipa_entity_set_details_definition('krbtpolicy', [
|
|
ipa_stanza({name:'identity', label:'Kerberos ticket policy'}).
|
|
//input({name:'uid',label:' '}).
|
|
input({name:'krbmaxrenewableage'}).
|
|
input({name:'krbmaxticketlife'})
|
|
]);
|
|
|
|
ipa_entity_set_association_definition('krbtpolicy', {
|
|
});
|