Class: JobInvocationsController

Inherits:
ApplicationController
  • Object
show all
Includes:
Foreman::Controller::AutoCompleteSearch, ForemanTasks::Concerns::Parameters::Triggering
Defined in:
app/controllers/job_invocations_controller.rb

Instance Method Summary collapse

Instance Method Details

#cancelObject



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'app/controllers/job_invocations_controller.rb', line 76

def cancel
  @job_invocation = resource_base.find(params[:id])
  result = @job_invocation.cancel(params[:force])

  if result
    flash[:notice] = if params[:force]
                       _('Trying to abort the job')
                     else
                       _('Trying to cancel the job')
                     end
  else
    flash[:warning] = if params[:force]
                        _('The job cannot be aborted at the moment.')
                      else
                        _('The job cannot be cancelled at the moment.')
                      end
  end
  redirect_back(:fallback_location => job_invocation_path(@job_invocation))
end

#createObject



33
34
35
36
37
38
39
40
41
# File 'app/controllers/job_invocations_controller.rb', line 33

def create
  @composer = prepare_composer
  if @composer.trigger
    redirect_to job_invocation_path(@composer.job_invocation)
  else
    @composer.job_invocation.description_format = nil if params.fetch(:job_invocation, {}).key?(:description_override)
    render :action => 'new'
  end
end

#indexObject



55
56
57
# File 'app/controllers/job_invocations_controller.rb', line 55

def index
  @job_invocations = resource_base.search_for(params[:search], :order => params[:order]).paginate(:page => params[:page]).with_task.order('job_invocations.id DESC')
end

#newObject



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'app/controllers/job_invocations_controller.rb', line 5

def new
  return @composer = prepare_composer if params[:feature].present?
  ui_params = {
    :host_ids => params[:host_ids],
    :targeting => {
      :targeting_type => Targeting::STATIC_TYPE,
      :bookmark_id => params[:bookmark_id]
    }
  }

  if (template = JobTemplate.find_by(id: params[:template_id]))
    ui_params[:job_invocation] = {
      :job_category => template.job_category,
      :providers => {
        template.provider_type => {:job_template_id => template.id}
      }
    }
  end

  @composer = JobInvocationComposer.from_ui_params(ui_params)
end

#preview_hostsObject



65
66
67
68
69
70
71
72
73
74
# File 'app/controllers/job_invocations_controller.rb', line 65

def preview_hosts
  composer = prepare_composer

  @hosts = composer.targeted_hosts.limit(Setting[:entries_per_page])
  @additional = composer.targeted_hosts.count - Setting[:entries_per_page]
  @dynamic = composer.targeting.dynamic?
  @query = composer.displayed_search_query

  render :partial => 'job_invocations/preview_hosts_list'
end

#refreshObject

refreshes the form



60
61
62
63
# File 'app/controllers/job_invocations_controller.rb', line 60

def refresh
  params[:job_invocation].delete :description_format if params[:job_invocation].key?(:description_override)
  @composer = prepare_composer
end

#rerunObject



27
28
29
30
31
# File 'app/controllers/job_invocations_controller.rb', line 27

def rerun
  job_invocation = resource_base.find(params[:id])
  @composer = JobInvocationComposer.from_job_invocation(job_invocation, params)
  render :action => 'new'
end

#showObject



43
44
45
46
47
48
49
50
51
52
53
# File 'app/controllers/job_invocations_controller.rb', line 43

def show
  @job_invocation = resource_base.includes(:template_invocations => :run_host_job_task).find(params[:id])
  @auto_refresh = @job_invocation.task.try(:pending?)
  hosts_base = @job_invocation.targeting.hosts.authorized(:view_hosts, Host)
  # There's no need to do the joining if we're not filtering
  unless params[:search].nil?
    hosts_base = hosts_base.joins(:template_invocations)
                           .where(:template_invocations => { :job_invocation_id => @job_invocation.id})
  end
  @hosts = hosts_base.search_for(params[:search], :order => params[:order] || 'name ASC').paginate(:page => params[:page])
end