Merge branch '13383-trash-workers'
[arvados.git] / apps / workbench / app / controllers / work_units_controller.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 class WorkUnitsController < ApplicationController
6   skip_around_filter :require_thread_api_token, if: proc { |ctrl|
7     Rails.configuration.anonymous_user_token and
8     'show_child_component' == ctrl.action_name
9   }
10
11   def find_objects_for_index
12     # If it's not the index rows partial display, just return
13     # The /index request will again be invoked to display the
14     # partial at which time, we will be using the objects found.
15     return if !params[:partial]
16
17     @limit = 20
18     @filters = @filters || []
19
20     pipelines = []
21     jobs = []
22
23     # get next page of pipeline_instances
24     if PipelineInstance.api_exists?(:index)
25       filters = @filters + [["uuid", "is_a", ["arvados#pipelineInstance"]]]
26       pipelines = PipelineInstance.limit(@limit).order(["created_at desc"]).filter(filters)
27     end
28
29     if params[:show_children]
30       # get next page of jobs
31       if Job.api_exists?(:index)
32         filters = @filters + [["uuid", "is_a", ["arvados#job"]]]
33         jobs = Job.limit(@limit).order(["created_at desc"]).filter(filters)
34       end
35     end
36
37     # get next page of container_requests
38     filters = @filters + [["uuid", "is_a", ["arvados#containerRequest"]]]
39     if !params[:show_children]
40      filters << ["requesting_container_uuid", "=", nil]
41     end
42     crs = ContainerRequest.limit(@limit).order(["created_at desc"]).filter(filters)
43     @objects = (jobs.to_a + pipelines.to_a + crs.to_a).sort_by(&:created_at).reverse.first(@limit)
44
45     if @objects.any?
46       @next_page_filters = next_page_filters('<=')
47       @next_page_href = url_for(partial: :all_processes_rows,
48                                 filters: @next_page_filters.to_json,
49                                 show_children: params[:show_children])
50       preload_links_for_objects(@objects.to_a)
51     else
52       @next_page_href = nil
53     end
54   end
55
56   def next_page_href with_params={}
57     @next_page_href
58   end
59
60   def create
61     template_uuid = params['work_unit']['template_uuid']
62
63     attrs = {}
64     rc = resource_class_for_uuid(template_uuid)
65     if rc == PipelineTemplate
66       model_class = PipelineInstance
67       attrs['pipeline_template_uuid'] = template_uuid
68     elsif rc == Workflow
69       # workflow json
70       workflow = Workflow.find? template_uuid
71       if workflow.definition
72         begin
73           wf_json = ActiveSupport::HashWithIndifferentAccess.new YAML::load(workflow.definition)
74         rescue => e
75           logger.error "Error converting definition yaml to json: #{e.message}"
76           raise ArgumentError, "Error converting definition yaml to json: #{e.message}"
77         end
78       end
79
80       model_class = ContainerRequest
81
82       attrs['name'] = "#{workflow['name']} container" if workflow['name'].present?
83       attrs['properties'] = {'template_uuid' => template_uuid}
84       attrs['priority'] = 1
85       attrs['state'] = "Uncommitted"
86
87       # required
88       attrs['command'] = ["arvados-cwl-runner",
89                           "--local",
90                           "--api=containers",
91                           "--project-uuid=#{params['work_unit']['owner_uuid']}",
92                           "/var/lib/cwl/workflow.json#main",
93                           "/var/lib/cwl/cwl.input.json"]
94       attrs['container_image'] = "arvados/jobs"
95       attrs['cwd'] = "/var/spool/cwl"
96       attrs['output_path'] = "/var/spool/cwl"
97
98       input_defaults = {}
99       if wf_json
100         inputs = get_cwl_inputs(wf_json)
101         inputs.each do |input|
102           if input[:default]
103             input_defaults[cwl_shortname(input[:id])] = input[:default]
104           end
105         end
106       end
107
108       # mounts
109       mounts = {
110         "/var/lib/cwl/cwl.input.json" => {
111           "kind" => "json",
112           "content" => input_defaults
113         },
114         "stdout" => {
115           "kind" => "file",
116           "path" => "/var/spool/cwl/cwl.output.json"
117         },
118         "/var/spool/cwl" => {
119           "kind" => "collection",
120           "writable" => true
121         }
122       }
123       if wf_json
124         mounts["/var/lib/cwl/workflow.json"] = {
125           "kind" => "json",
126           "content" => wf_json
127         }
128       end
129       attrs['mounts'] = mounts
130
131       # runtime constriants
132       runtime_constraints = {
133         "vcpus" => 1,
134         "ram" => 256000000,
135         "API" => true
136       }
137       attrs['runtime_constraints'] = runtime_constraints
138     else
139       raise ArgumentError, "Unsupported template uuid: #{template_uuid}"
140     end
141
142     attrs['owner_uuid'] = params['work_unit']['owner_uuid']
143     @object ||= model_class.new attrs
144
145     if @object.save
146       redirect_to @object
147     else
148       render_error status: 422
149     end
150   end
151
152   def find_object_by_uuid
153     if params['object_type']
154       @object = params['object_type'].constantize.find(params['uuid'])
155     else
156       super
157     end
158   end
159
160   def show_child_component
161     data = JSON.load(params[:action_data])
162
163     current_obj = {}
164     current_obj_uuid = data['current_obj_uuid']
165     current_obj_name = data['current_obj_name']
166     current_obj_type = data['current_obj_type']
167     current_obj_parent = data['current_obj_parent']
168     if current_obj_uuid
169       resource_class = resource_class_for_uuid current_obj_uuid
170       obj = object_for_dataclass(resource_class, current_obj_uuid)
171       current_obj = obj if obj
172     end
173
174     if current_obj.is_a?(Hash) and !current_obj.any?
175       if current_obj_parent
176         resource_class = resource_class_for_uuid current_obj_parent
177         parent = object_for_dataclass(resource_class, current_obj_parent)
178         parent_wu = parent.work_unit
179         children = parent_wu.children
180         if current_obj_uuid
181           wu = children.select {|c| c.uuid == current_obj_uuid}.first
182         else current_obj_name
183           wu = children.select {|c| c.label.to_s == current_obj_name}.first
184         end
185       end
186     else
187       if current_obj_type == JobWorkUnit.to_s
188         wu = JobWorkUnit.new(current_obj, current_obj_name, current_obj_parent)
189       elsif current_obj_type == PipelineInstanceWorkUnit.to_s
190         wu = PipelineInstanceWorkUnit.new(current_obj, current_obj_name, current_obj_parent)
191       elsif current_obj_type == ContainerWorkUnit.to_s
192         wu = ContainerWorkUnit.new(current_obj, current_obj_name, current_obj_parent)
193       end
194     end
195
196     respond_to do |f|
197       f.html { render(partial: "show_component", locals: {wu: wu}) }
198     end
199   end
200 end