mirror of
https://github.com/ansible/awx.git
synced 2026-01-27 08:31:28 -03:30
update project to have allow branch override checkbox add new text input for branch field adjust show/hide for branch and playbook jt fields make playbook field allowed to add a new option not in the dropdown update job results ui to show branch update prompting to support new branch field
112 lines
2.7 KiB
JavaScript
112 lines
2.7 KiB
JavaScript
let BaseModel;
|
|
let WorkflowJobTemplateNode;
|
|
let $http;
|
|
|
|
function optionsLaunch (id) {
|
|
const req = {
|
|
method: 'OPTIONS',
|
|
url: `${this.path}${id}/launch/`
|
|
};
|
|
|
|
return $http(req);
|
|
}
|
|
|
|
function getLaunch (id) {
|
|
const req = {
|
|
method: 'GET',
|
|
url: `${this.path}${id}/launch/`
|
|
};
|
|
|
|
return $http(req)
|
|
.then(res => {
|
|
this.model.launch.GET = res.data;
|
|
|
|
return res;
|
|
});
|
|
}
|
|
|
|
function postLaunch (params) {
|
|
const req = {
|
|
method: 'POST',
|
|
url: `${this.path}${params.id}/launch/`
|
|
};
|
|
|
|
if (params.launchData) {
|
|
req.data = params.launchData;
|
|
}
|
|
|
|
return $http(req);
|
|
}
|
|
|
|
function getSurveyQuestions (id) {
|
|
const req = {
|
|
method: 'GET',
|
|
url: `${this.path}${id}/survey_spec/`
|
|
};
|
|
|
|
return $http(req);
|
|
}
|
|
|
|
function canLaunchWithoutPrompt () {
|
|
const launchData = this.model.launch.GET;
|
|
|
|
return (
|
|
launchData.can_start_without_user_input &&
|
|
!launchData.ask_inventory_on_launch &&
|
|
!launchData.ask_credential_on_launch &&
|
|
!launchData.ask_verbosity_on_launch &&
|
|
!launchData.ask_job_type_on_launch &&
|
|
!launchData.ask_limit_on_launch &&
|
|
!launchData.ask_tags_on_launch &&
|
|
!launchData.ask_skip_tags_on_launch &&
|
|
!launchData.ask_variables_on_launch &&
|
|
!launchData.ask_diff_mode_on_launch &&
|
|
!launchData.ask_scm_branch_on_launch &&
|
|
!launchData.survey_enabled
|
|
);
|
|
}
|
|
|
|
function setDependentResources (id) {
|
|
this.dependentResources = [
|
|
{
|
|
model: new WorkflowJobTemplateNode(),
|
|
params: {
|
|
unified_job_template: id
|
|
}
|
|
}
|
|
];
|
|
}
|
|
|
|
function UnifiedJobTemplateModel (method, resource, graft) {
|
|
BaseModel.call(this, 'unified_job_templates');
|
|
|
|
this.Constructor = UnifiedJobTemplateModel;
|
|
this.setDependentResources = setDependentResources.bind(this);
|
|
this.optionsLaunch = optionsLaunch.bind(this);
|
|
this.getLaunch = getLaunch.bind(this);
|
|
this.postLaunch = postLaunch.bind(this);
|
|
this.getSurveyQuestions = getSurveyQuestions.bind(this);
|
|
this.canLaunchWithoutPrompt = canLaunchWithoutPrompt.bind(this);
|
|
|
|
this.model.launch = {};
|
|
|
|
return this.create(method, resource, graft);
|
|
}
|
|
|
|
function UnifiedJobTemplateModelLoader (_BaseModel_, WorkflowJobTemplateNodeModel, _$http_) {
|
|
BaseModel = _BaseModel_;
|
|
WorkflowJobTemplateNode = WorkflowJobTemplateNodeModel;
|
|
$http = _$http_;
|
|
|
|
return UnifiedJobTemplateModel;
|
|
}
|
|
|
|
UnifiedJobTemplateModelLoader.$inject = [
|
|
'BaseModel',
|
|
'WorkflowJobTemplateNodeModel',
|
|
'$http',
|
|
'$state'
|
|
];
|
|
|
|
export default UnifiedJobTemplateModelLoader;
|