Merge branch 'master' into 9766-register-workflow
[arvados.git] / apps / workbench / app / controllers / container_requests_controller.rb
1 class ContainerRequestsController < ApplicationController
2   skip_around_filter :require_thread_api_token, if: proc { |ctrl|
3     Rails.configuration.anonymous_user_token and
4     'show' == ctrl.action_name
5   }
6
7   def show_pane_list
8     panes = %w(Status Log Advanced)
9     if @object.andand.state == 'Uncommitted'
10       panes = %w(Inputs) + panes - %w(Log)
11     end
12     panes
13   end
14
15   def cancel
16     @object.update_attributes! priority: 0
17     if params[:return_to]
18       redirect_to params[:return_to]
19     else
20       redirect_to @object
21     end
22   end
23
24   def update
25     @updates ||= params[@object.class.to_s.underscore.singularize.to_sym]
26     input_obj = @updates[:mounts].andand[:"/var/lib/cwl/cwl.input.json"].andand[:content]
27     if input_obj
28       workflow = @object.mounts[:"/var/lib/cwl/workflow.json"][:content]
29       get_cwl_inputs(workflow).each do |input_schema|
30         if not input_obj.include? cwl_shortname(input_schema[:id])
31           next
32         end
33         required, primary_type, param_id = cwl_input_info(input_schema)
34         if input_obj[param_id] == ""
35           input_obj[param_id] = nil
36         elsif primary_type == "boolean"
37           input_obj[param_id] = input_obj[param_id] == "true"
38         elsif ["int", "long"].include? primary_type
39           input_obj[param_id] = input_obj[param_id].to_i
40         elsif ["float", "double"].include? primary_type
41           input_obj[param_id] = input_obj[param_id].to_f
42         elsif ["File", "Directory"].include? primary_type
43           re = CollectionsHelper.match_uuid_with_optional_filepath(input_obj[param_id])
44           if re
45             c = Collection.find(re[1])
46             input_obj[param_id] = {"class" => primary_type,
47                                    "location" => "keep:#{c.portable_data_hash}#{re[4]}",
48                                    "arv:collection" => input_obj[param_id]}
49           end
50         end
51       end
52     end
53     params[:merge] = true
54     begin
55       super
56     rescue => e
57       flash[:error] = e.to_s
58       show
59     end
60   end
61
62 end