mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-28 01:41:14 -06:00
WebUI: DNS: Remove ip-address, admin-email options
Part of ticket: https://fedorahosted.org/freeipa/ticket/4149 Reviewed-By: Petr Spacek <pspacek@redhat.com>
This commit is contained in:
parent
239adf9de4
commit
23620a4025
@ -142,7 +142,10 @@ return {
|
|||||||
name: 'identity',
|
name: 'identity',
|
||||||
fields: [
|
fields: [
|
||||||
'idnsname',
|
'idnsname',
|
||||||
'idnssoamname',
|
{
|
||||||
|
name: 'idnssoamname',
|
||||||
|
required: true
|
||||||
|
},
|
||||||
'idnssoarname',
|
'idnssoarname',
|
||||||
'idnssoaserial',
|
'idnssoaserial',
|
||||||
'idnssoarefresh',
|
'idnssoarefresh',
|
||||||
@ -276,7 +279,6 @@ return {
|
|||||||
],
|
],
|
||||||
standard_association_facets: true,
|
standard_association_facets: true,
|
||||||
adder_dialog: {
|
adder_dialog: {
|
||||||
$factory: IPA.dnszone_adder_dialog,
|
|
||||||
height: 300,
|
height: 300,
|
||||||
sections: [
|
sections: [
|
||||||
{
|
{
|
||||||
@ -296,26 +298,6 @@ return {
|
|||||||
validators: ['network']
|
validators: ['network']
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'other',
|
|
||||||
fields: [
|
|
||||||
'idnssoamname',
|
|
||||||
{
|
|
||||||
name: 'ip_address',
|
|
||||||
validators: [ 'ip_address' ],
|
|
||||||
metadata: '@mc-opt:dnszone_add:ip_address'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'idnssoarname',
|
|
||||||
required: false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
$type: 'force_dnszone_add_checkbox',
|
|
||||||
name: 'force',
|
|
||||||
metadata: '@mc-opt:dnszone_add:force'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
policies: [
|
policies: [
|
||||||
@ -663,73 +645,6 @@ IPA.force_dnszone_add_checkbox_widget = function(spec) {
|
|||||||
return IPA.checkbox_widget(spec);
|
return IPA.checkbox_widget(spec);
|
||||||
};
|
};
|
||||||
|
|
||||||
IPA.dnszone_adder_dialog = function(spec) {
|
|
||||||
|
|
||||||
spec = spec || {};
|
|
||||||
|
|
||||||
var that = IPA.entity_adder_dialog(spec);
|
|
||||||
|
|
||||||
function ends_with(str, suffix) {
|
|
||||||
return str.indexOf(suffix, str.length - suffix.length) !== -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
var init = function() {
|
|
||||||
var zone_w = that.fields.get_field('idnsname').widget;
|
|
||||||
var reverse_zone_w = that.fields.get_field('name_from_ip').widget;
|
|
||||||
var ns_w = that.fields.get_field('idnssoamname').widget;
|
|
||||||
|
|
||||||
zone_w.value_changed.attach(that.check_ns_ip);
|
|
||||||
reverse_zone_w.value_changed.attach(that.check_ns_ip);
|
|
||||||
ns_w.value_changed.attach(that.check_ns_ip);
|
|
||||||
};
|
|
||||||
|
|
||||||
that.check_ns_ip = function() {
|
|
||||||
var ip_address_f = that.fields.get_field('ip_address');
|
|
||||||
var zone_w = that.fields.get_field('idnsname').widget;
|
|
||||||
var ns_w = that.fields.get_field('idnssoamname').widget;
|
|
||||||
|
|
||||||
var zone = zone_w.save()[0] || '';
|
|
||||||
var ns = ns_w.save()[0] || '';
|
|
||||||
|
|
||||||
var zone_is_reverse = !zone_w.enabled ||
|
|
||||||
ends_with(zone, '.in-addr.arpa.') ||
|
|
||||||
ends_with(zone, '.ip6.arpa.');
|
|
||||||
var relative_ns = true;
|
|
||||||
var ns_in_zone = false;
|
|
||||||
|
|
||||||
if (ns && ns[ns.length-1] === '.') {
|
|
||||||
relative_ns = false;
|
|
||||||
ns = ns.slice(0, -1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (zone && zone[zone.length-1] === '.') {
|
|
||||||
zone = zone.slice(0, -1);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ns && zone && ends_with(ns, '.' + zone)) {
|
|
||||||
ns_in_zone = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!zone_is_reverse && (relative_ns || ns_in_zone)) {
|
|
||||||
ip_address_f.set_enabled(true);
|
|
||||||
ip_address_f.set_required(true);
|
|
||||||
} else {
|
|
||||||
ip_address_f.reset();
|
|
||||||
ip_address_f.set_required(false);
|
|
||||||
ip_address_f.set_enabled(false);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
that.create_content = function() {
|
|
||||||
that.entity_adder_dialog_create_content();
|
|
||||||
that.container.addClass('dnszone-adder-dialog');
|
|
||||||
};
|
|
||||||
|
|
||||||
init();
|
|
||||||
|
|
||||||
return that;
|
|
||||||
};
|
|
||||||
|
|
||||||
IPA.dns.add_permission_action = function(spec) {
|
IPA.dns.add_permission_action = function(spec) {
|
||||||
|
|
||||||
spec = spec || {};
|
spec = spec || {};
|
||||||
|
Loading…
Reference in New Issue
Block a user