diff --git a/app/controllers/api/v2/job_invocations_controller.rb b/app/controllers/api/v2/job_invocations_controller.rb
index a27b9464b..51c211358 100644
--- a/app/controllers/api/v2/job_invocations_controller.rb
+++ b/app/controllers/api/v2/job_invocations_controller.rb
@@ -3,10 +3,11 @@ module V2
class JobInvocationsController < ::Api::V2::BaseController
include ::Api::Version2
include ::Foreman::Renderer
+ include RemoteExecutionHelper
before_action :find_optional_nested_object, :only => %w{output raw_output}
before_action :find_host, :only => %w{output raw_output}
- before_action :find_resource, :only => %w{show update destroy clone cancel rerun outputs}
+ before_action :find_resource, :only => %w{show update destroy clone cancel rerun outputs hosts}
wrap_parameters JobInvocation, :include => (JobInvocation.attribute_names + [:ssh])
@@ -27,7 +28,14 @@ def show
if params[:host_status] == 'true'
template_invocations = @template_invocations.includes(:run_host_job_task).to_a
- @host_statuses = Hash[template_invocations.map { |ti| [ti.host_id, template_invocation_status(ti)] }]
+ hosts = @hosts.to_a
+ @host_statuses = Hash[hosts.map do |host|
+ template_invocation = template_invocations.find { |ti| ti.host_id == host.id }
+ task = template_invocation.try(:run_host_job_task)
+ [host.id, template_invocation_status(task, @job_invocation.task)]
+ end]
+ @smart_proxy_id = Hash[template_invocations.map { |ti| [ti.host_id, ti.smart_proxy_id] }]
+ @smart_proxy_name = Hash[template_invocations.map { |ti| [ti.host_id, ti.smart_proxy_name] }]
end
end
@@ -111,6 +119,35 @@ def output
render :json => host_output(@nested_obj, @host, :default => [], :since => params[:since])
end
+ api :GET, '/job_invocations/:id/hosts', N_('List hosts belonging to job invocation')
+ param :include, ['parameters', 'all_parameters'], :desc => N_("Array of extra information types to include")
+ param_group :search_and_pagination, ::Api::V2::BaseController
+ add_scoped_search_description_for(JobInvocation)
+ param :id, :identifier, :required => true
+ def hosts
+ @hosts = @job_invocation.targeting.hosts.authorized(:view_hosts, Host)
+ @total = @job_invocation.targeting.hosts.size
+ @template_invocations = @job_invocation.template_invocations
+ .where(host: @hosts)
+ .includes(:input_values)
+ template_invocations = @template_invocations.includes(:run_host_job_task).to_a
+ hosts = @hosts.to_a
+ @host_statuses = Hash[hosts.map do |host|
+ template_invocation = template_invocations.find { |ti| ti.host_id == host.id }
+ task = template_invocation.try(:run_host_job_task)
+ [host.id, template_invocation_status(task, @job_invocation.task)]
+ end]
+ @smart_proxy_id = Hash[template_invocations.map { |ti| [ti.host_id, ti.smart_proxy_id] }]
+ @smart_proxy_name = Hash[template_invocations.map { |ti| [ti.host_id, ti.smart_proxy_name] }]
+
+ if params[:include].present?
+ @parameters = params[:include].include?('parameters')
+ @all_parameters = params[:include].include?('all_parameters')
+ end
+ @hosts = @hosts.search_for(params[:search], :order => params[:order]).paginate(:page => params[:page], :per_page => params[:per_page])
+ render :hosts, :layout => 'api/v2/layouts/index_layout'
+ end
+
api :GET, '/job_invocations/:id/hosts/:host_id/raw', N_('Get raw output for a host')
param :id, :identifier, :required => true
param :host_id, :identifier, :required => true
@@ -187,7 +224,7 @@ def allowed_nested_id
def action_permission
case params[:action]
- when 'output', 'raw_output', 'outputs'
+ when 'output', 'raw_output', 'outputs', 'hosts'
:view
when 'cancel'
:cancel
@@ -255,17 +292,6 @@ def delayed_task_output(task, default: nil)
def parent_scope
resource_class.where(nil)
end
-
- def template_invocation_status(template_invocation)
- task = template_invocation.try(:run_host_job_task)
- parent_task = @job_invocation.task
-
- return(parent_task.result == 'cancelled' ? 'cancelled' : 'N/A') if task.nil?
- return task.state if task.state == 'running' || task.state == 'planned'
- return 'error' if task.result == 'warning'
-
- task.result
- end
end
end
end
diff --git a/app/views/api/v2/job_invocations/hosts.json.rabl b/app/views/api/v2/job_invocations/hosts.json.rabl
new file mode 100644
index 000000000..0467f9ce5
--- /dev/null
+++ b/app/views/api/v2/job_invocations/hosts.json.rabl
@@ -0,0 +1,15 @@
+collection @hosts
+
+attribute :name, :operatingsystem_id, :operatingsystem_name, :hostgroup_id, :hostgroup_name
+
+node :job_status do |host|
+ @host_statuses[host.id]
+end
+
+node :smart_proxy_id do |host|
+ @smart_proxy_id[host.id]
+end
+
+node :smart_proxy_name do |host|
+ @smart_proxy_name[host.id]
+end
diff --git a/config/routes.rb b/config/routes.rb
index 51d97f21b..3cf6759ac 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -63,6 +63,7 @@
get '/raw', :to => 'job_invocations#raw_output'
end
member do
+ get 'hosts'
post 'cancel'
post 'rerun'
get 'template_invocations', :to => 'template_invocations#template_invocations'
diff --git a/webpack/JobInvocationDetail/JobInvocationActions.js b/webpack/JobInvocationDetail/JobInvocationActions.js
index a70b80e6b..f80425065 100644
--- a/webpack/JobInvocationDetail/JobInvocationActions.js
+++ b/webpack/JobInvocationDetail/JobInvocationActions.js
@@ -15,7 +15,7 @@ import {
UPDATE_JOB,
} from './JobInvocationConstants';
-export const getData = url => dispatch => {
+export const getJobInvocation = url => dispatch => {
const fetchData = withInterval(
get({
key: JOB_INVOCATION_KEY,
diff --git a/webpack/JobInvocationDetail/JobInvocationConstants.js b/webpack/JobInvocationDetail/JobInvocationConstants.js
index 2673d3aaf..9d0b6c7ee 100644
--- a/webpack/JobInvocationDetail/JobInvocationConstants.js
+++ b/webpack/JobInvocationDetail/JobInvocationConstants.js
@@ -1,14 +1,21 @@
+/* eslint-disable camelcase */
+import React from 'react';
import { foremanUrl } from 'foremanReact/common/helpers';
+import { translate as __ } from 'foremanReact/common/I18n';
+import { useForemanHostDetailsPageUrl } from 'foremanReact/Root/Context/ForemanContext';
+import JobStatusIcon from '../react_app/components/RecentJobsCard/JobStatusIcon';
export const JOB_INVOCATION_KEY = 'JOB_INVOCATION_KEY';
export const CURRENT_PERMISSIONS = 'CURRENT_PERMISSIONS';
export const UPDATE_JOB = 'UPDATE_JOB';
export const CANCEL_JOB = 'CANCEL_JOB';
export const GET_TASK = 'GET_TASK';
+export const GET_TEMPLATE_INVOCATIONS = 'GET_TEMPLATE_INVOCATIONS';
export const CHANGE_ENABLED_RECURRING_LOGIC = 'CHANGE_ENABLED_RECURRING_LOGIC';
export const CANCEL_RECURRING_LOGIC = 'CANCEL_RECURRING_LOGIC';
export const GET_REPORT_TEMPLATES = 'GET_REPORT_TEMPLATES';
export const GET_REPORT_TEMPLATE_INPUTS = 'GET_REPORT_TEMPLATE_INPUTS';
+export const JOB_INVOCATION_HOSTS = 'JOB_INVOCATION_HOSTS';
export const currentPermissionsUrl = foremanUrl(
'/api/v2/permissions/current_permissions'
);
@@ -20,6 +27,12 @@ export const STATUS = {
CANCELLED: 'cancelled',
};
+export const STATUS_UPPERCASE = {
+ RESOLVED: 'RESOLVED',
+ ERROR: 'ERROR',
+ PENDING: 'PENDING',
+};
+
export const DATE_OPTIONS = {
day: 'numeric',
month: 'short',
@@ -29,3 +42,79 @@ export const DATE_OPTIONS = {
hour12: false,
timeZoneName: 'short',
};
+
+const getColumnsStatus = ({ hostJobStatus }) => {
+ switch (hostJobStatus) {
+ case 'success':
+ return { title: __('Succeeded'), status: 0 };
+ case 'error':
+ return { title: __('Failed'), status: 1 };
+ case 'planned':
+ return { title: __('Scheduled'), status: 2 };
+ case 'running':
+ return { title: __('Pending'), status: 3 };
+ case 'cancelled':
+ return { title: __('Cancelled'), status: 4 };
+ case 'Awaiting start':
+ return { title: __('Awaiting start'), status: 5 };
+ default:
+ return { title: hostJobStatus, status: 6 };
+ }
+};
+
+const Columns = () => {
+ const hostDetailsPageUrl = useForemanHostDetailsPageUrl();
+
+ return {
+ name: {
+ title: __('Name'),
+ wrapper: ({ name }) => (
+ {name}
+ ),
+ weight: 1,
+ },
+ groups: {
+ title: __('Host group'),
+ wrapper: ({ hostgroup_id, hostgroup_name }) => (
+ {hostgroup_name}
+ ),
+ weight: 2,
+ },
+ os: {
+ title: __('OS'),
+ wrapper: ({ operatingsystem_id, operatingsystem_name }) => (
+
+ {operatingsystem_name}
+
+ ),
+ weight: 3,
+ },
+ smart_proxy: {
+ title: __('Smart proxy'),
+ wrapper: ({ smart_proxy_name, smart_proxy_id }) => (
+ {smart_proxy_name}
+ ),
+ weight: 4,
+ },
+ status: {
+ title: __('Status'),
+ tableTitle: ({ job_status }) =>
+ getColumnsStatus({ hostJobStatus: job_status }).title,
+ status: ({ job_status }) =>
+ getColumnsStatus({ hostJobStatus: job_status }).status,
+ wrapper: ({ job_status }) => {
+ const { title, status } = getColumnsStatus({
+ hostJobStatus: job_status,
+ });
+ return (
+ {}}
+ emptyAction={action}
+ emptyMessage={getEmptyMessage()}
+ errorMessage={
+ status === STATUS_UPPERCASE.ERROR && response?.message
+ ? response.message
+ : null
+ }
+ isPending={status === STATUS_UPPERCASE.PENDING}
+ isDeleteable={false}
+ >
+ {response?.results?.map((result, rowIndex) => (
+
+
+ {columnNamesKeys.map(k => (
+
+ ))}
+ {columns[k].wrapper(result)}
+ ))}
+