Add validation to Issue new certificate dialog

'Issue new certificate' dialog now validates whether user fills 'principal' and 'csr' field.
In case that one of these fields is empty then it does not allow to submit the dialog.

https://fedorahosted.org/freeipa/ticket/5432

Reviewed-By: Petr Vobornik <pvoborni@redhat.com>
This commit is contained in:
Pavel Vomacka
2016-01-28 17:37:29 +01:00
committed by Petr Vobornik
parent 017b343e13
commit fb3b7f7d93
2 changed files with 45 additions and 20 deletions

View File

@@ -30,10 +30,11 @@ define([
'./reg',
'./rpc',
'./text',
'./widget',
'./dialog'],
function(
lang, builder, metadata_provider, IPA, $, menu,
phases, reg, rpc, text) {
phases, reg, rpc, text, widget_mod) {
var exp = IPA.cert = {};
@@ -399,11 +400,35 @@ IPA.cert.request_dialog = function(spec) {
spec = spec || {};
spec.sections = spec.sections || [];
var section = { fields: [] };
spec.sections.push(section);
var section0 = { fields: [] };
var section_csr = {
show_header: false,
fields: [
{
field: false,
$type: 'html',
name: 'message',
html: spec.message
},
{
$type: 'textarea',
name: 'csr',
required: true
}
],
layout:
{
$factory: widget_mod.fluid_layout,
widget_cls: "col-sm-12 controls",
label_cls: "hide"
}
};
spec.sections.push(section0);
spec.sections.push(section_csr);
if (spec.show_principal) {
section.fields.push(
section0.fields.push(
{
$type: 'text',
name: 'principal',
@@ -418,7 +443,7 @@ IPA.cert.request_dialog = function(spec) {
}
);
}
section.fields.push(
section0.fields.push(
{
$type: 'entity_select',
name: 'profile_id',
@@ -443,7 +468,15 @@ IPA.cert.request_dialog = function(spec) {
click: function() {
var values = {};
that.save(values);
var request = $.trim(that.textarea.val());
// check requested fields
if (!that.validate()) {
widget_mod.focus_invalid(that);
return;
}
// get csr from the textarea
var request = $.trim(that.get_field('csr').get_value());
values.request = IPA.cert.pem_csr_format(request);
if (that.request) {
@@ -461,19 +494,6 @@ IPA.cert.request_dialog = function(spec) {
}
});
that.create_content = function() {
that.dialog_create_content();
var node = $("<div/>", {
'class': 'col-sm-12'
});
node.append(that.message);
that.textarea = $('<textarea/>', {
'class': 'certificate'
}).appendTo(node);
that.body_node.append(node);
return that.body_node;
};
return that;
};
@@ -1519,4 +1539,4 @@ phases.on('post-metadata', exp.create_cert_metadata);
phases.on('profile', exp.remove_menu_item, 20);
return exp;
});
});

View File

@@ -295,6 +295,11 @@ exp.section_builder = IPA.section_builder = function(spec) {
var widget = that.widget_builder.build_widget(field_spec, section.widgets);
if (field_spec.field === false) {
// widget doesn't have field, skip
return;
}
if (section.$field_adapter && !field_spec.adapter) {
field_spec.adapter = section.$field_adapter;
}