3 class CollectionsController < ApplicationController
4 include ActionController::Live
6 skip_around_filter :require_thread_api_token, if: proc { |ctrl|
7 Rails.configuration.anonymous_user_token and
8 'show' == ctrl.action_name
10 skip_around_filter(:require_thread_api_token,
11 only: [:show_file, :show_file_links])
12 skip_before_filter(:find_object_by_uuid,
13 only: [:provenance, :show_file, :show_file_links])
14 # We depend on show_file to display the user agreement:
15 skip_before_filter :check_user_agreements, only: :show_file
16 skip_before_filter :check_user_profile, only: :show_file
21 panes = %w(Files Upload Provenance_graph Used_by Advanced)
22 panes = panes - %w(Upload) unless (@object.editable? rescue false)
28 when 'persistent', 'cache'
29 persist_links = Link.filter([['owner_uuid', '=', current_user.uuid],
30 ['link_class', '=', 'resources'],
31 ['name', '=', 'wants'],
32 ['tail_uuid', '=', current_user.uuid],
33 ['head_uuid', '=', @object.uuid]])
34 logger.debug persist_links.inspect
36 return unprocessable "Invalid value #{value.inspect}"
38 if params[:value] == 'persistent'
39 if not persist_links.any?
40 Link.create(link_class: 'resources',
42 tail_uuid: current_user.uuid,
43 head_uuid: @object.uuid)
46 persist_links.each do |link|
52 f.json { render json: @object }
57 # API server index doesn't return manifest_text by default, but our
58 # callers want it unless otherwise specified.
59 @select ||= Collection.columns.map(&:name)
60 base_search = Collection.select(@select)
61 if params[:search].andand.length.andand > 0
62 tags = Link.where(any: ['contains', params[:search]])
63 @objects = (base_search.where(uuid: tags.collect(&:head_uuid)) |
64 base_search.where(any: ['contains', params[:search]])).
68 limit = params[:limit].to_i
74 offset = params[:offset].to_i
79 @objects = base_search.limit(limit).offset(offset)
81 @links = Link.where(head_uuid: @objects.collect(&:uuid))
84 @collection_info[c.uuid] = {
93 @collection_info[link.head_uuid] ||= {}
94 info = @collection_info[link.head_uuid]
97 info[:tag_links] << link
100 info[:wanted_by_me] ||= link.tail_uuid == current_user.uuid
102 info[:provenance] << link.name
106 @request_url = request.url
112 Thread.current[:reader_tokens] = [params[:reader_token]]
113 return if false.equal?(find_object_by_uuid)
118 # We pipe from arv-get to send the file to the user. Before we start it,
119 # we ask the API server if the file actually exists. This serves two
120 # purposes: it lets us return a useful status code for common errors, and
121 # helps us figure out which token to provide to arv-get.
122 # The order of searched tokens is important: because the anonymous user
123 # token is passed along with every API request, we have to check it first.
124 # Otherwise, it's impossible to know whether any other request succeeded
125 # because of the reader token.
127 tokens = [(Rails.configuration.anonymous_user_token || nil),
128 params[:reader_token],
129 Thread.current[:arvados_api_token]].compact
130 usable_token = find_usable_token(tokens) do
131 coll = Collection.find(params[:uuid])
134 file_name = params[:file].andand.sub(/^(\.\/|\/|)/, './')
136 return # Response already rendered.
137 elsif file_name.nil? or not coll.manifest.has_file?(file_name)
138 return render_not_found
141 opts = params.merge(arvados_api_token: usable_token)
143 # Handle Range requests. Currently we support only 'bytes=0-....'
144 if request.headers.include? 'HTTP_RANGE'
145 if m = /^bytes=0-(\d+)/.match(request.headers['HTTP_RANGE'])
146 opts[:maxbytes] = m[1]
147 size = params[:size] || '*'
148 self.response.status = 206
149 self.response.headers['Content-Range'] = "bytes 0-#{m[1]}/#{size}"
153 ext = File.extname(params[:file])
154 self.response.headers['Content-Type'] =
155 Rack::Mime::MIME_TYPES[ext] || 'application/octet-stream'
157 size = params[:size].to_i
159 size = [size, opts[:maxbytes].to_i].min
161 self.response.headers['Content-Length'] = size.to_s
163 self.response.headers['Content-Disposition'] = params[:disposition] if params[:disposition]
165 file_enumerator(opts).each do |bytes|
166 response.stream.write bytes
169 response.stream.close
174 ["GET /arvados/v1/collections/#{@object.uuid}", "GET /arvados/v1/collections/#{@object.uuid}/", "GET /arvados/v1/keep_services/accessible"]
179 ApiClientAuthorization.filter([['scopes', '=', sharing_scopes]]).results
180 rescue ArvadosApiClient::AccessForbiddenException
185 def find_object_by_uuid
186 if not Keep::Locator.parse params[:id]
192 return super if !@object
196 if params["tab_pane"] == "Provenance_graph"
197 @prov_svg = ProvenanceHelper::create_provenance_graph(@object.provenance, "provenance_svg",
198 {:request => request,
199 :direction => :bottom_up,
200 :combine_jobs => :script_only}) rescue nil
204 if Keep::Locator.parse params["uuid"]
205 @same_pdh = Collection.filter([["portable_data_hash", "=", @object.portable_data_hash]]).limit(20)
206 if @same_pdh.results.size == 1
207 redirect_to collection_path(@same_pdh[0]["uuid"])
210 owners = @same_pdh.map(&:owner_uuid).to_a.uniq
211 preload_objects_for_dataclass Group, owners
212 preload_objects_for_dataclass User, owners
213 uuids = @same_pdh.map(&:uuid).to_a.uniq
214 preload_links_for_objects uuids
215 render 'hash_matches'
218 jobs_with = lambda do |conds|
219 Job.limit(RELATION_LIMIT).where(conds)
220 .results.sort_by { |j| j.finished_at || j.created_at }
222 @output_of = jobs_with.call(output: @object.portable_data_hash)
223 @log_of = jobs_with.call(log: @object.portable_data_hash)
224 @project_links = Link.limit(RELATION_LIMIT).order("modified_at DESC")
225 .where(head_uuid: @object.uuid, link_class: 'name').results
226 project_hash = Group.where(uuid: @project_links.map(&:tail_uuid)).to_hash
227 @projects = project_hash.values
229 @permissions = Link.limit(RELATION_LIMIT).order("modified_at DESC")
230 .where(head_uuid: @object.uuid, link_class: 'permission',
231 name: 'can_read').results
232 @logs = Log.limit(RELATION_LIMIT).order("created_at DESC")
233 .select(%w(uuid event_type object_uuid event_at summary))
234 .where(object_uuid: @object.uuid).results
235 @is_persistent = Link.limit(1)
236 .where(head_uuid: @object.uuid, tail_uuid: current_user.uuid,
237 link_class: 'resources', name: 'wants')
239 @search_sharing = search_scopes
241 if params["tab_pane"] == "Used_by"
242 @used_by_svg = ProvenanceHelper::create_provenance_graph(@object.used_by, "used_by_svg",
243 {:request => request,
244 :direction => :top_down,
245 :combine_jobs => :script_only,
246 :pdata_only => true}) rescue nil
254 @search_sharing = search_scopes
255 render("sharing_popup.js", content_type: "text/javascript")
258 helper_method :download_link
261 collections_url + "/download/#{@object.uuid}/#{@search_sharing.first.api_token}/"
265 ApiClientAuthorization.create(scopes: sharing_scopes)
270 search_scopes.each do |s|
278 def find_usable_token(token_list)
279 # Iterate over every given token to make it the current token and
280 # yield the given block.
281 # If the block succeeds, return the token it used.
282 # Otherwise, render an error response based on the most specific
283 # error we encounter, and return nil.
284 most_specific_error = [401]
285 token_list.each do |api_token|
287 # We can't load the corresponding user, because the token may not
288 # be scoped for that.
289 using_specific_api_token(api_token, load_user: false) do
293 rescue ArvadosApiClient::ApiError => error
294 if error.api_status >= most_specific_error.first
295 most_specific_error = [error.api_status, error]
299 case most_specific_error.shift
303 render_not_found(*most_specific_error)
308 # Note: several controller and integration tests rely on stubbing
309 # file_enumerator to return fake file content.
310 def file_enumerator opts
311 FileStreamer.new opts
315 include ArvadosApiClientHelper
316 def initialize(opts={})
320 return unless @opts[:uuid] && @opts[:file]
325 u = URI.parse(arvados_api_client.arvados_v1_base)
326 env['ARVADOS_API_HOST'] = "#{u.host}:#{u.port}"
327 env['ARVADOS_API_TOKEN'] = @opts[:arvados_api_token]
328 env['ARVADOS_API_HOST_INSECURE'] = "true" if Rails.configuration.arvados_insecure_https
330 bytesleft = @opts[:maxbytes].andand.to_i || 2**16
331 io = IO.popen([env, 'arv-get', "#{@opts[:uuid]}/#{@opts[:file]}"], 'rb')
332 while bytesleft > 0 && (buf = io.read([bytesleft, 2**16].min)) != nil
333 # shrink the bytesleft count, if we were given a maximum byte
335 if @opts.include? :maxbytes
336 bytesleft = bytesleft - buf.length
341 # "If ios is opened by IO.popen, close sets $?."
342 # http://www.ruby-doc.org/core-2.1.3/IO.html#method-i-close
343 Rails.logger.warn("#{@opts[:uuid]}/#{@opts[:file]}: #{$?}") if $? != 0