mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-03 06:31:49 -05:00
167 lines
6.0 KiB
JavaScript
167 lines
6.0 KiB
JavaScript
/************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
*
|
|
* JobHosts.js
|
|
*
|
|
* Controller functions for the Job Hosts Summary model.
|
|
*
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
function JobHostSummaryList($scope, $rootScope, $location, $log, $routeParams, Rest, Alert, JobHostList, GenerateList,
|
|
LoadBreadCrumbs, Prompt, SearchInit, PaginateInit, ReturnToCaller, ClearScope, ProcessErrors, GetBasePath, Refresh,
|
|
JobStatusToolTip, Wait) {
|
|
|
|
ClearScope();
|
|
|
|
var list = JobHostList,
|
|
base = $location.path().replace(/^\//, '').split('/')[0],
|
|
defaultUrl = GetBasePath(base) + $routeParams.id + '/job_host_summaries/',
|
|
view = GenerateList,
|
|
scope = view.inject(list, { mode: 'edit' });
|
|
|
|
// When viewing all summaries for a particular host, show job ID, otherwise row ID.
|
|
if (base === 'hosts') {
|
|
list.index = false;
|
|
} else {
|
|
list.index = true;
|
|
}
|
|
|
|
$scope.selected = [];
|
|
|
|
// control enable/disable/show of job specific view elements
|
|
if (base === 'hosts') {
|
|
$scope.job_id = null;
|
|
$scope.host_id = $routeParams.id;
|
|
} else {
|
|
$scope.job_id = $routeParams.id;
|
|
$scope.host_id = null;
|
|
}
|
|
|
|
if ($scope.RemoveSetHostLink) {
|
|
$scope.RemoveSetHostLink();
|
|
}
|
|
$scope.RemoveSetHostLink = $scope.$on('setHostLink', function (e, inventory_id) {
|
|
for (var i = 0; i < $scope.jobhosts.length; i++) {
|
|
$scope.jobhosts[i].hostLinkTo = '/#/inventories/' + inventory_id + '/?host_name=' +
|
|
encodeURI($scope.jobhosts[i].summary_fields.host.name);
|
|
}
|
|
});
|
|
|
|
// After a refresh, populate any needed summary field values on each row
|
|
if ($scope.removePostRefresh) {
|
|
$scope.removePostRefresh();
|
|
}
|
|
$scope.removePostRefresh = $scope.$on('PostRefresh', function () {
|
|
|
|
// Set status, tooltips, badget icons, etc.
|
|
for (var i = 0; i < $scope.jobhosts.length; i++) {
|
|
$scope.jobhosts[i].host_name = $scope.jobhosts[i].summary_fields.host.name;
|
|
$scope.jobhosts[i].status = ($scope.jobhosts[i].failed) ? 'failed' : 'success';
|
|
$scope.jobhosts[i].statusBadgeToolTip = JobStatusToolTip($scope.jobhosts[i].status) +
|
|
" Click to view details.";
|
|
$scope.jobhosts[i].statusLinkTo = '/#/jobs/' + $scope.jobhosts[i].job + '/job_events/?host=' +
|
|
encodeURI($scope.jobhosts[i].summary_fields.host.name);
|
|
}
|
|
|
|
if ($scope.job_id !== null && $scope.job_id !== undefined && $scope.job_id !== '') {
|
|
// need job_status so we can show/hide refresh button
|
|
Rest.setUrl(GetBasePath('jobs') + $scope.job_id);
|
|
Rest.get()
|
|
.success(function (data) {
|
|
LoadBreadCrumbs({
|
|
path: '/jobs/' + data.id,
|
|
title: data.id + ' - ' +
|
|
data.summary_fields.job_template.name
|
|
});
|
|
$scope.job_status = data.status;
|
|
if (!(data.status === 'pending' || data.status === 'waiting' || data.status === 'running')) {
|
|
if ($rootScope.timer) {
|
|
clearInterval($rootScope.timer);
|
|
}
|
|
}
|
|
$scope.$emit('setHostLink', data.inventory);
|
|
})
|
|
.error(function (data, status) {
|
|
ProcessErrors(scope, data, status, null, {
|
|
hdr: 'Error!',
|
|
msg: 'Failed to get job status for job: ' + $scope.job_id + '. GET status: ' + status
|
|
});
|
|
});
|
|
} else {
|
|
// Make the host name appear in breadcrumbs
|
|
LoadBreadCrumbs({
|
|
path: '/hosts/' + $scope.host_id,
|
|
title: (($scope.jobhosts.length > 0) ? $scope.jobhosts[0].summary_fields.host.name : 'Host')
|
|
});
|
|
if ($routeParams.inventory) {
|
|
$scope.$emit('setHostLink', $routeParams.inventory);
|
|
}
|
|
}
|
|
});
|
|
|
|
SearchInit({
|
|
scope: scope,
|
|
set: 'jobhosts',
|
|
list: list,
|
|
url: defaultUrl
|
|
});
|
|
PaginateInit({
|
|
scope: scope,
|
|
list: list,
|
|
url: defaultUrl
|
|
});
|
|
|
|
// Called from Inventories tab, host failed events link:
|
|
if ($routeParams.host_name) {
|
|
scope[list.iterator + 'SearchField'] = 'host';
|
|
scope[list.iterator + 'SearchValue'] = $routeParams.host_name;
|
|
scope[list.iterator + 'SearchFieldLabel'] = list.fields.host.label;
|
|
}
|
|
|
|
$scope.search(list.iterator);
|
|
|
|
|
|
$scope.showEvents = function (host_name, last_job) {
|
|
// When click on !Failed Events link, redirect to latest job/job_events for the host
|
|
Rest.setUrl(last_job);
|
|
Rest.get()
|
|
.success(function (data) {
|
|
LoadBreadCrumbs({
|
|
path: '/jobs/' + data.id,
|
|
title: data.name
|
|
});
|
|
$location.url('/jobs/' + data.id + '/job_events/?host=' + encodeURI(host_name));
|
|
})
|
|
.error(function (data, status) {
|
|
ProcessErrors(scope, data, status, null, { hdr: 'Error!', msg: 'Failed to lookup last job: ' + last_job +
|
|
'. GET status: ' + status });
|
|
});
|
|
};
|
|
|
|
$scope.showJob = function (id) {
|
|
$location.path('/jobs/' + id);
|
|
};
|
|
|
|
$scope.refresh = function () {
|
|
if ($scope.host_id === null) {
|
|
$scope.jobSearchSpin = true;
|
|
$scope.jobLoading = true;
|
|
Wait('start');
|
|
Refresh({
|
|
scope: scope,
|
|
set: 'jobhosts',
|
|
iterator: 'jobhost',
|
|
url: $scope.current_url
|
|
});
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
JobHostSummaryList.$inject = ['$scope', '$rootScope', '$location', '$log', '$routeParams', 'Rest', 'Alert', 'JobHostList',
|
|
'GenerateList', 'LoadBreadCrumbs', 'Prompt', 'SearchInit', 'PaginateInit', 'ReturnToCaller', 'ClearScope', 'ProcessErrors',
|
|
'GetBasePath', 'Refresh', 'JobStatusToolTip', 'Wait'
|
|
]; |