1 class ActionsController < ApplicationController
3 skip_filter :require_thread_api_token, only: [:report_issue_popup, :report_issue]
4 skip_filter :check_user_agreements, only: [:report_issue_popup, :report_issue]
7 def self.expose_action method, &block
8 @@exposed_actions[method] = true
9 define_method method, block
13 ArvadosBase::resource_class_for_uuid(params[:uuid])
17 @object = model_class.andand.find(params[:uuid])
18 if @object.is_a? Link and
19 @object.link_class == 'name' and
20 ArvadosBase::resource_class_for_uuid(@object.head_uuid) == Collection
21 redirect_to collection_path(id: @object.uuid)
25 raise ActiveRecord::RecordNotFound
30 params.keys.collect(&:to_sym).each do |param|
31 if @@exposed_actions[param]
32 return self.send(param)
38 expose_action :copy_selections_into_project do
42 expose_action :move_selections_into_project do
46 def move_or_copy action
47 uuids_to_add = params["selection"]
48 uuids_to_add = [ uuids_to_add ] unless uuids_to_add.is_a? Array
50 collect { |x| ArvadosBase::resource_class_for_uuid(x) }.
52 each do |resource_class|
53 resource_class.filter([['uuid','in',uuids_to_add]]).each do |src|
54 if resource_class == Collection and not Collection.attribute_info.include?(:name)
55 dst = Link.new(owner_uuid: @object.uuid,
56 tail_uuid: @object.uuid,
64 if dst.respond_to? :'name='
66 dst.name = "Copy of #{dst.name}"
68 dst.name = "Copy of unnamed #{dst.class_for_display.downcase}"
71 if resource_class == Collection
72 dst.manifest_text = Collection.select([:manifest_text]).where(uuid: src.uuid).first.manifest_text
77 raise ArgumentError.new "Unsupported action #{action}"
79 dst.owner_uuid = @object.uuid
80 dst.tail_uuid = @object.uuid if dst.class == Link
85 dst.name += " (#{Time.now.localtime})" if dst.respond_to? :name=
93 def arv_normalize mt, *opts
96 merge({'ARVADOS_API_HOST' =>
97 arvados_api_client.arvados_v1_base.
98 sub(/\/arvados\/v1/, '').
99 sub(/^https?:\/\//, ''),
100 'ARVADOS_API_TOKEN' => 'x',
101 'ARVADOS_API_HOST_INSECURE' =>
102 Rails.configuration.arvados_insecure_https ? 'true' : 'false'
104 IO.popen([env, 'arv-normalize'] + opts, 'w+b') do |io|
107 while buf = io.read(2**16)
114 expose_action :combine_selected_files_into_collection do
118 params["selection"].each do |s|
119 a = ArvadosBase::resource_class_for_uuid s
122 if (m = CollectionsHelper.match(Link.find(s).head_uuid))
123 pdhs.append(m[1] + m[2])
128 elsif (m = CollectionsHelper.match(s))
129 pdhs.append(m[1] + m[2])
131 elsif (m = CollectionsHelper.match_uuid_with_optional_filepath(s))
141 Collection.select([:uuid, :manifest_text]).where(uuid: uuids).each do |c|
145 Collection.select([:portable_data_hash, :manifest_text]).where(portable_data_hash: pdhs).each do |c|
146 chash[c.portable_data_hash] = c
151 mt = chash[m[1]+m[2]].andand.manifest_text
152 if not m[4].nil? and m[4].size > 1
153 combined += arv_normalize mt, '--extract', ".#{m[4]}"
159 normalized = arv_normalize combined
160 newc = Collection.new({:manifest_text => normalized})
161 newc.name = newc.name || "Collection created at #{Time.now.localtime}"
163 # set owner_uuid to current project, provided it is writable
164 current_project_writable = false
165 action_data = JSON.parse(params['action_data']) if params['action_data']
166 if action_data && action_data['current_project_uuid']
167 current_project = Group.find(action_data['current_project_uuid']) rescue nil
168 if (current_project && current_project.writable_by.andand.include?(current_user.uuid))
169 newc.owner_uuid = action_data['current_project_uuid']
170 current_project_writable = true
179 head_uuid: newc.uuid,
180 link_class: "provenance",
186 msg = current_project_writable ?
187 "Created new collection in the project #{current_project.name}." :
188 "Created new collection in your Home project."
190 redirect_to newc, flash: {'message' => msg}
193 def report_issue_popup
194 respond_to do |format|
201 logger.warn "report_issue: #{params.inspect}"
203 respond_to do |format|
204 IssueReporter.send_report(current_user, params).deliver
205 format.js {render nothing: true}