AC-1262 support for basic variable prompting on job submission.

This commit is contained in:
chouseknecht
2014-05-12 23:28:49 -04:00
parent e2d33522d2
commit 5f41b8df76
5 changed files with 252 additions and 31 deletions

View File

@@ -180,6 +180,24 @@ angular.module('JobTemplateFormDefinition', ['SchedulesListDefinition', 'Complet
dataPlacement: 'right', dataPlacement: 'right',
dataContainer: "body" dataContainer: "body"
}, },
job_tags: {
label: 'Job Tags',
type: 'textarea',
rows: 1,
addRequired: false,
editRequired: false,
'class': 'span12',
column: 2,
awPopOver: "<p>Provide a comma separated list of tags.</p>\n" +
"<p>Tags are useful when you have a large playbook, and you want to run a specific part of a play or task.</p>" +
"<p>For example, you might have a task consisiting of a long list of actions. Tag values can be assigned to each action. " +
"Suppose the actions have been assigned tag values of &quot;configuration&quot;, &quot;packages&quot; and &quot;install&quot;.</p>" +
"<p>If you just want to run the &quot;configuration&quot; and &quot;packages&quot; actions, you would enter the following here " +
"in the Job Tags field:</p>\n<blockquote>configuration,packages</blockquote>\n",
dataTitle: "Job Tags",
dataPlacement: "right",
dataContainer: "body"
},
variables: { variables: {
label: 'Extra Variables', label: 'Extra Variables',
type: 'textarea', type: 'textarea',
@@ -199,22 +217,17 @@ angular.module('JobTemplateFormDefinition', ['SchedulesListDefinition', 'Complet
dataPlacement: 'right', dataPlacement: 'right',
dataContainer: "body" dataContainer: "body"
}, },
job_tags: { vars_prompt_on_launch: {
label: 'Job Tags', label: 'Prompt for Extra Variables',
type: 'textarea', type: 'checkbox',
rows: 1,
addRequired: false, addRequired: false,
editRequired: false, editRequird: false,
'class': 'span12', trueValue: 'true',
falseValue: 'false',
column: 2, column: 2,
awPopOver: "<p>Provide a comma separated list of tags.</p>\n" + awPopOver: "<p>If checked, user will be prompted at job launch with a dialog allowing override of the extra variables setting.</p>",
"<p>Tags are useful when you have a large playbook, and you want to run a specific part of a play or task.</p>" + dataPlacement: 'right',
"<p>For example, you might have a task consisiting of a long list of actions. Tag values can be assigned to each action. " + dataTitle: 'Prompt for Extra Variables',
"Suppose the actions have been assigned tag values of &quot;configuration&quot;, &quot;packages&quot; and &quot;install&quot;.</p>" +
"<p>If you just want to run the &quot;configuration&quot; and &quot;packages&quot; actions, you would enter the following here " +
"in the Job Tags field:</p>\n<blockquote>configuration,packages</blockquote>\n",
dataTitle: "Job Tags",
dataPlacement: "right",
dataContainer: "body" dataContainer: "body"
}, },
allow_callbacks: { allow_callbacks: {

View File

@@ -0,0 +1,38 @@
/*********************************************
* Copyright (c) 2014 AnsibleWorks, Inc.
*
* JobVarsPrompt.js
*
* Form definition used during job submission to prompt for extra vars
*
*/
'use strict';
angular.module('JobVarsPromptFormDefinition', [])
.value ('JobVarsPromptForm', {
addTitle: '',
editTitle: '',
name: 'job',
well: false,
actions: { },
fields: {
variables: {
label: null,
type: 'textarea',
rows: 6,
addRequired: false,
editRequired: false,
"default": "---"
}
},
buttons: { },
related: { }
});

View File

@@ -8,7 +8,7 @@
'use strict'; 'use strict';
angular.module('JobSubmissionHelper', [ 'RestServices', 'Utilities', 'CredentialFormDefinition', 'CredentialsListDefinition', angular.module('JobSubmissionHelper', [ 'RestServices', 'Utilities', 'CredentialFormDefinition', 'CredentialsListDefinition',
'LookUpHelper', 'JobSubmissionHelper', 'JobTemplateFormDefinition', 'ModalDialog']) 'LookUpHelper', 'JobSubmissionHelper', 'JobTemplateFormDefinition', 'ModalDialog', 'FormGenerator', 'JobVarsPromptFormDefinition'])
.factory('LaunchJob', ['Rest', 'Wait', 'ProcessErrors', function(Rest, Wait, ProcessErrors) { .factory('LaunchJob', ['Rest', 'Wait', 'ProcessErrors', function(Rest, Wait, ProcessErrors) {
return function(params) { return function(params) {
@@ -241,14 +241,146 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi
}; };
}]) }])
.factory('PromptForVars', ['$compile', 'Rest', 'GetBasePath', 'TextareaResize', 'CreateDialog', 'GenerateForm', 'JobVarsPromptForm', 'Wait',
'ParseVariableString', 'ToJSON', 'ProcessErrors',
function($compile, Rest, GetBasePath, TextareaResize,CreateDialog, GenerateForm, JobVarsPromptForm, Wait, ParseVariableString, ToJSON,
ProcessErrors) {
return function(params) {
var buttons,
parent_scope = params.scope,
scope = parent_scope.$new(),
callback = params.callback,
job = params.job,
e, helpContainer, html;
html = GenerateForm.buildHTML(JobVarsPromptForm, { mode: 'edit', modal: true, scope: scope });
helpContainer = "<div style=\"display:inline-block; font-size: 12px; margin-top: 6px;\" class=\"help-container pull-right\">\n" +
"<a href=\"\" id=\"awp-promote\" href=\"\" aw-pop-over=\"{{ helpText }}\" aw-tool-tip=\"Click for help\" aw-pop-over-watch=\"helpText\" " +
"aw-tip-placement=\"top\" data-placement=\"bottom\" data-container=\"body\" data-title=\"Help\" class=\"help-link\"><i class=\"fa fa-question-circle\">" +
"</i> click for help</a></div>\n";
scope.helpText = "<p>After defining any extra variables, click Continue to start the job. Otherwise, click cancel to abort.</p>" +
"<p>Extra variables are passed as command line variables to the playbook run. It is equivalent to the -e or --extra-vars " +
"command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON.</p>" +
"JSON:<br />\n" +
"<blockquote>{<br />\"somevar\": \"somevalue\",<br />\"password\": \"magic\"<br /> }</blockquote>\n" +
"YAML:<br />\n" +
"<blockquote>---<br />somevar: somevalue<br />password: magic<br /></blockquote>\n" +
"<div class=\"popover-footer\"><span class=\"key\">esc</span> or click to close</div>\n";
scope.variables = ParseVariableString(params.variables);
scope.parseType = 'yaml';
// Reuse password modal
$('#password-modal').empty().html(html);
$('#password-modal').find('textarea').before(helpContainer);
e = angular.element(document.getElementById('password-modal'));
$compile(e)(scope);
buttons = [{
label: "Cancel",
onClick: function() {
scope.varsCancel();
},
icon: "fa-times",
"class": "btn btn-default",
"id": "vars-cancel-button"
},{
label: "Continue",
onClick: function() {
scope.varsAccept();
},
icon: "fa-check",
"class": "btn btn-primary",
"id": "vars-accept-button"
}];
if (scope.removeDialogReady) {
scope.removeDialogReady();
}
scope.removeDialogReady = scope.$on('DialogReady', function() {
Wait('stop');
$('#password-modal').dialog('open');
setTimeout(function() {
TextareaResize({
scope: scope,
textareaId: 'job_variables',
modalId: 'password-modal',
formId: 'job_form',
parse: true
});
}, 300);
});
CreateDialog({
id: 'password-modal',
scope: scope,
buttons: buttons,
width: 575,
height: 530,
minWidth: 450,
title: 'Extra Variables',
onResizeStop: function() {
TextareaResize({
scope: scope,
textareaId: 'job_variables',
modalId: 'password-modal',
formId: 'job_form',
parse: true
});
},
beforeDestroy: function() {
if (scope.codeMirror) {
scope.codeMirror.destroy();
}
$('#password-modal').empty();
},
onOpen: function() {
$('#job_variables').focus();
},
callback: 'DialogReady'
});
scope.varsCancel = function() {
$('#password-modal').dialog('close');
parent_scope.$emit('CancelJob');
scope.$destroy();
};
scope.varsAccept = function() {
job.extra_vars = ToJSON(scope.parseType, scope.variables, true);
Wait('start');
Rest.setUrl(GetBasePath('jobs') + job.id + '/');
Rest.put(job)
.success(function() {
Wait('stop');
$('#password-modal').dialog('close');
parent_scope.$emit(callback);
scope.$destroy();
})
.error(function(data, status) {
ProcessErrors(scope, data, status, null, { hdr: 'Error!',
msg: 'Failed updating job ' + job.id + ' with variables. PUT returned: ' + status });
});
};
};
}])
// Submit request to run a playbook // Submit request to run a playbook
.factory('PlaybookRun', ['$location','$routeParams', 'LaunchJob', 'PromptForPasswords', 'Rest', 'GetBasePath', 'ProcessErrors', 'Wait', 'Empty', 'PromptForCredential', .factory('PlaybookRun', ['$location','$routeParams', 'LaunchJob', 'PromptForPasswords', 'Rest', 'GetBasePath', 'ProcessErrors', 'Wait', 'Empty', 'PromptForCredential', 'PromptForVars',
function ($location, $routeParams, LaunchJob, PromptForPasswords, Rest, GetBasePath, ProcessErrors, Wait, Empty, PromptForCredential) { function ($location, $routeParams, LaunchJob, PromptForPasswords, Rest, GetBasePath, ProcessErrors, Wait, Empty, PromptForCredential, PromptForVars) {
return function (params) { return function (params) {
var scope = params.scope, var scope = params.scope,
id = params.id, id = params.id,
base = $location.path().replace(/^\//, '').split('/')[0], base = $location.path().replace(/^\//, '').split('/')[0],
url, job_template, new_job_id, launch_url; url,
job_template,
new_job_id,
new_job,
launch_url,
prompt_for_vars = false,
passwords;
if (!Empty($routeParams.template_id)) { if (!Empty($routeParams.template_id)) {
// launching a job from job_template detail page // launching a job from job_template detail page
@@ -268,10 +400,16 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi
Rest.post(job_template).success(function (data) { Rest.post(job_template).success(function (data) {
new_job_id = data.id; new_job_id = data.id;
launch_url = data.related.start; launch_url = data.related.start;
prompt_for_vars = data.vars_prompt_on_launch;
new_job = data;
if (data.passwords_needed_to_start.length > 0) { if (data.passwords_needed_to_start.length > 0) {
scope.$emit('PromptForPasswords', data.passwords_needed_to_start); scope.$emit('PromptForPasswords', data.passwords_needed_to_start);
} else { }
scope.$emit('StartPlaybookRun', {}); else if (data.vars_prompt_on_launch) {
scope.$emit('PromptForVars');
}
else {
scope.$emit('StartPlaybookRun');
} }
}).error(function (data, status) { }).error(function (data, status) {
ProcessErrors(scope, data, status, null, { hdr: 'Error!', ProcessErrors(scope, data, status, null, { hdr: 'Error!',
@@ -279,10 +417,10 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi
}); });
}); });
if (scope.removePasswordsCanceled) { if (scope.removeCancelJob) {
scope.removePasswordsCanceled(); scope.removeCancelJob();
} }
scope.removePasswordsCanceled = scope.$on('PasswordsCanceled', function() { scope.removeCancelJob = scope.$on('CancelJob', function() {
// Delete the job // Delete the job
Wait('start'); Wait('start');
Rest.setUrl(GetBasePath('jobs') + new_job_id + '/'); Rest.setUrl(GetBasePath('jobs') + new_job_id + '/');
@@ -301,18 +439,17 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi
} }
scope.removePlaybookLaunchFinished = scope.$on('PlaybookLaunchFinished', function() { scope.removePlaybookLaunchFinished = scope.$on('PlaybookLaunchFinished', function() {
var base = $location.path().replace(/^\//, '').split('/')[0]; var base = $location.path().replace(/^\//, '').split('/')[0];
if (base !== 'jobs') { if (base === 'jobs') {
scope.refreshJobs();
} else {
$location.path('/jobs'); $location.path('/jobs');
} }
else {
Wait('stop');
}
}); });
if (scope.removeStartPlaybookRun) { if (scope.removeStartPlaybookRun) {
scope.removeStartPlaybookRun(); scope.removeStartPlaybookRun();
} }
scope.removeStartPlaybookRun = scope.$on('StartPlaybookRun', function(e, passwords) { scope.removeStartPlaybookRun = scope.$on('StartPlaybookRun', function() {
LaunchJob({ LaunchJob({
scope: scope, scope: scope,
url: launch_url, url: launch_url,
@@ -324,8 +461,11 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi
if (scope.removePromptForPasswords) { if (scope.removePromptForPasswords) {
scope.removePromptForPasswords(); scope.removePromptForPasswords();
} }
scope.removePromptForPasswords = scope.$on('PromptForPasswords', function(e, passwords) { scope.removePromptForPasswords = scope.$on('PromptForPasswords', function(e, passwords_needed_to_start) {
PromptForPasswords({ scope: scope, passwords: passwords, callback: 'StartPlaybookRun' }); PromptForPasswords({ scope: scope,
passwords: passwords_needed_to_start,
callback: 'PromptForVars'
});
}); });
if (scope.removePromptForCredential) { if (scope.removePromptForCredential) {
@@ -335,6 +475,25 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi
PromptForCredential({ scope: scope, template: data }); PromptForCredential({ scope: scope, template: data });
}); });
if (scope.removePromptForVars) {
scope.removePromptForVars();
}
scope.removePromptForVars = scope.$on('PromptForVars', function(e, pwds) {
passwords = pwds;
if (prompt_for_vars) {
// call prompt with callback of StartPlaybookRun, passwords
PromptForVars({
scope: scope,
job: new_job,
variables: job_template.extra_vars,
callback: 'StartPlaybookRun'
});
}
else {
scope.$emit('StartPlaybookRun');
}
});
if (scope.removeCredentialReady) { if (scope.removeCredentialReady) {
scope.removeCredentialReady(); scope.removeCredentialReady();
} }
@@ -367,7 +526,6 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi
} }
]) ])
// Submit SCM Update request // Submit SCM Update request
.factory('ProjectUpdate', ['PromptForPasswords', 'LaunchJob', 'Rest', '$location', 'GetBasePath', 'ProcessErrors', 'Alert', .factory('ProjectUpdate', ['PromptForPasswords', 'LaunchJob', 'Rest', '$location', 'GetBasePath', 'ProcessErrors', 'Alert',
'ProjectsForm', 'Wait', 'ProjectsForm', 'Wait',

View File

@@ -197,6 +197,17 @@ angular.module('FormGenerator', ['GeneratorHelpers', 'Utilities', 'ListGenerator
}, },
buildHTML: function(form, options) {
// Get HTML without actually injecting into DOM. Caller is responsible for any injection.
// Example:
// html = GenerateForm.buildHTML(JobVarsPromptForm, { mode: 'edit', modal: true, scope: scope });
this.mode = options.mode;
this.modal = (options.modal) ? true : false;
this.setForm(form);
return this.build(options);
},
applyDefaults: function () { applyDefaults: function () {
for (var fld in this.form.fields) { for (var fld in this.form.fields) {
if (this.form.fields[fld]['default'] || this.form.fields[fld]['default'] === 0) { if (this.form.fields[fld]['default'] || this.form.fields[fld]['default'] === 0) {

View File

@@ -100,6 +100,7 @@
<script src="{{ STATIC_URL }}js/forms/HostGroups.js"></script> <script src="{{ STATIC_URL }}js/forms/HostGroups.js"></script>
<script src="{{ STATIC_URL }}js/forms/ActivityDetail.js"></script> <script src="{{ STATIC_URL }}js/forms/ActivityDetail.js"></script>
<script src="{{ STATIC_URL }}js/forms/JobSummary.js"></script> <script src="{{ STATIC_URL }}js/forms/JobSummary.js"></script>
<script src="{{ STATIC_URL }}js/forms/JobVarsPrompt.js"></script>
<script src="{{ STATIC_URL }}js/forms/LicenseForm.js"></script> <script src="{{ STATIC_URL }}js/forms/LicenseForm.js"></script>
<script src="{{ STATIC_URL }}js/forms/Source.js"></script> <script src="{{ STATIC_URL }}js/forms/Source.js"></script>
<script src="{{ STATIC_URL }}js/forms/LogViewerStatus.js"></script> <script src="{{ STATIC_URL }}js/forms/LogViewerStatus.js"></script>