4 class CollectionsController < ApplicationController
5 include ActionController::Live
7 skip_around_filter :require_thread_api_token, if: proc { |ctrl|
8 Rails.configuration.anonymous_user_token and
9 'show' == ctrl.action_name
11 skip_around_filter(:require_thread_api_token,
12 only: [:show_file, :show_file_links])
13 skip_before_filter(:find_object_by_uuid,
14 only: [:provenance, :show_file, :show_file_links])
15 # We depend on show_file to display the user agreement:
16 skip_before_filter :check_user_agreements, only: :show_file
17 skip_before_filter :check_user_profile, only: :show_file
22 panes = %w(Files Upload Provenance_graph Used_by Advanced)
23 panes = panes - %w(Upload) unless (@object.editable? rescue false)
29 when 'persistent', 'cache'
30 persist_links = Link.filter([['owner_uuid', '=', current_user.uuid],
31 ['link_class', '=', 'resources'],
32 ['name', '=', 'wants'],
33 ['tail_uuid', '=', current_user.uuid],
34 ['head_uuid', '=', @object.uuid]])
35 logger.debug persist_links.inspect
37 return unprocessable "Invalid value #{value.inspect}"
39 if params[:value] == 'persistent'
40 if not persist_links.any?
41 Link.create(link_class: 'resources',
43 tail_uuid: current_user.uuid,
44 head_uuid: @object.uuid)
47 persist_links.each do |link|
53 f.json { render json: @object }
58 # API server index doesn't return manifest_text by default, but our
59 # callers want it unless otherwise specified.
60 @select ||= Collection.columns.map(&:name)
61 base_search = Collection.select(@select)
62 if params[:search].andand.length.andand > 0
63 tags = Link.where(any: ['contains', params[:search]])
64 @objects = (base_search.where(uuid: tags.collect(&:head_uuid)) |
65 base_search.where(any: ['contains', params[:search]])).
69 limit = params[:limit].to_i
75 offset = params[:offset].to_i
80 @objects = base_search.limit(limit).offset(offset)
82 @links = Link.where(head_uuid: @objects.collect(&:uuid))
85 @collection_info[c.uuid] = {
94 @collection_info[link.head_uuid] ||= {}
95 info = @collection_info[link.head_uuid]
98 info[:tag_links] << link
101 info[:wanted_by_me] ||= link.tail_uuid == current_user.uuid
103 info[:provenance] << link.name
107 @request_url = request.url
113 Thread.current[:reader_tokens] = [params[:reader_token]]
114 return if false.equal?(find_object_by_uuid)
119 # We pipe from arv-get to send the file to the user. Before we start it,
120 # we ask the API server if the file actually exists. This serves two
121 # purposes: it lets us return a useful status code for common errors, and
122 # helps us figure out which token to provide to arv-get.
123 # The order of searched tokens is important: because the anonymous user
124 # token is passed along with every API request, we have to check it first.
125 # Otherwise, it's impossible to know whether any other request succeeded
126 # because of the reader token.
128 tokens = [(Rails.configuration.anonymous_user_token || nil),
129 params[:reader_token],
130 Thread.current[:arvados_api_token]].compact
131 usable_token = find_usable_token(tokens) do
132 coll = Collection.find(params[:uuid])
135 # Response already rendered.
139 # If we are configured to use a keep-web server, just redirect to
140 # the appropriate URL.
141 if Rails.configuration.keep_web_url or
142 Rails.configuration.keep_web_download_url
144 if usable_token == params[:reader_token]
145 opts[:path_token] = usable_token
146 elsif usable_token == Rails.configuration.anonymous_user_token
147 # Don't pass a token at all
149 # We pass the current user's real token only if it's necessary
150 # to read the collection.
151 opts[:query_token] = usable_token
153 opts[:disposition] = params[:disposition] if params[:disposition]
154 return redirect_to keep_web_url(params[:uuid], params[:file], opts)
157 # No keep-web server available. Get the file data with arv-get,
158 # and serve it through Rails.
160 file_name = params[:file].andand.sub(/^(\.\/|\/|)/, './')
161 if file_name.nil? or not coll.manifest.has_file?(file_name)
162 return render_not_found
165 opts = params.merge(arvados_api_token: usable_token)
167 # Handle Range requests. Currently we support only 'bytes=0-....'
168 if request.headers.include? 'HTTP_RANGE'
169 if m = /^bytes=0-(\d+)/.match(request.headers['HTTP_RANGE'])
170 opts[:maxbytes] = m[1]
171 size = params[:size] || '*'
172 self.response.status = 206
173 self.response.headers['Content-Range'] = "bytes 0-#{m[1]}/#{size}"
177 ext = File.extname(params[:file])
178 self.response.headers['Content-Type'] =
179 Rack::Mime::MIME_TYPES[ext] || 'application/octet-stream'
181 size = params[:size].to_i
183 size = [size, opts[:maxbytes].to_i].min
185 self.response.headers['Content-Length'] = size.to_s
187 self.response.headers['Content-Disposition'] = params[:disposition] if params[:disposition]
189 file_enumerator(opts).each do |bytes|
190 response.stream.write bytes
193 response.stream.close
198 ["GET /arvados/v1/collections/#{@object.uuid}", "GET /arvados/v1/collections/#{@object.uuid}/", "GET /arvados/v1/keep_services/accessible"]
203 ApiClientAuthorization.filter([['scopes', '=', sharing_scopes]]).results
204 rescue ArvadosApiClient::AccessForbiddenException
209 def find_object_by_uuid
210 if not Keep::Locator.parse params[:id]
216 return super if !@object
220 if params["tab_pane"] == "Provenance_graph"
221 @prov_svg = ProvenanceHelper::create_provenance_graph(@object.provenance, "provenance_svg",
222 {:request => request,
223 :direction => :bottom_up,
224 :combine_jobs => :script_only}) rescue nil
228 if Keep::Locator.parse params["uuid"]
229 @same_pdh = Collection.filter([["portable_data_hash", "=", @object.portable_data_hash]]).limit(20)
230 if @same_pdh.results.size == 1
231 redirect_to collection_path(@same_pdh[0]["uuid"])
234 owners = @same_pdh.map(&:owner_uuid).to_a.uniq
235 preload_objects_for_dataclass Group, owners
236 preload_objects_for_dataclass User, owners
237 uuids = @same_pdh.map(&:uuid).to_a.uniq
238 preload_links_for_objects uuids
239 render 'hash_matches'
242 jobs_with = lambda do |conds|
243 Job.limit(RELATION_LIMIT).where(conds)
244 .results.sort_by { |j| j.finished_at || j.created_at }
246 @output_of = jobs_with.call(output: @object.portable_data_hash)
247 @log_of = jobs_with.call(log: @object.portable_data_hash)
248 @project_links = Link.limit(RELATION_LIMIT).order("modified_at DESC")
249 .where(head_uuid: @object.uuid, link_class: 'name').results
250 project_hash = Group.where(uuid: @project_links.map(&:tail_uuid)).to_hash
251 @projects = project_hash.values
253 @permissions = Link.limit(RELATION_LIMIT).order("modified_at DESC")
254 .where(head_uuid: @object.uuid, link_class: 'permission',
255 name: 'can_read').results
256 @search_sharing = search_scopes
258 if params["tab_pane"] == "Used_by"
259 @used_by_svg = ProvenanceHelper::create_provenance_graph(@object.used_by, "used_by_svg",
260 {:request => request,
261 :direction => :top_down,
262 :combine_jobs => :script_only,
263 :pdata_only => true}) rescue nil
271 @search_sharing = search_scopes
272 render("sharing_popup.js", content_type: "text/javascript")
275 helper_method :download_link
278 collections_url + "/download/#{@object.uuid}/#{@search_sharing.first.api_token}/"
282 ApiClientAuthorization.create(scopes: sharing_scopes)
287 search_scopes.each do |s|
295 def find_usable_token(token_list)
296 # Iterate over every given token to make it the current token and
297 # yield the given block.
298 # If the block succeeds, return the token it used.
299 # Otherwise, render an error response based on the most specific
300 # error we encounter, and return nil.
301 most_specific_error = [401]
302 token_list.each do |api_token|
304 # We can't load the corresponding user, because the token may not
305 # be scoped for that.
306 using_specific_api_token(api_token, load_user: false) do
310 rescue ArvadosApiClient::ApiError => error
311 if error.api_status >= most_specific_error.first
312 most_specific_error = [error.api_status, error]
316 case most_specific_error.shift
320 render_not_found(*most_specific_error)
325 def keep_web_url(uuid_or_pdh, file, opts)
326 munged_id = uuid_or_pdh.sub('+', '-')
327 fmt = {uuid_or_pdh: munged_id}
329 tmpl = Rails.configuration.keep_web_url
330 if Rails.configuration.keep_web_download_url and
331 (!tmpl or opts[:disposition] == 'attachment')
332 # Prefer the attachment-only-host when we want an attachment
333 # (and when there is no preview link configured)
334 tmpl = Rails.configuration.keep_web_download_url
335 elsif not Rails.configuration.trust_all_content
336 check_uri = URI.parse(tmpl % fmt)
337 if opts[:query_token] and
338 not check_uri.host.start_with?(munged_id + "--") and
339 not check_uri.host.start_with?(munged_id + ".")
340 # We're about to pass a token in the query string, but
341 # keep-web can't accept that safely at a single-origin URL
342 # template (unless it's -attachment-only-host).
343 tmpl = Rails.configuration.keep_web_download_url
345 raise ArgumentError, "Download precluded by site configuration"
347 logger.warn("Using download link, even though inline content " \
348 "was requested: #{check_uri.to_s}")
352 if tmpl == Rails.configuration.keep_web_download_url
353 # This takes us to keep-web's -attachment-only-host so there is
354 # no need to add ?disposition=attachment.
355 opts.delete :disposition
358 uri = URI.parse(tmpl % fmt)
359 uri.path += '/' unless uri.path.end_with? '/'
361 uri.path += 't=' + opts[:path_token] + '/'
364 uri.path += URI.escape(file)
366 query = Hash[URI.decode_www_form(uri.query || '')]
367 { query_token: 'api_token',
368 disposition: 'disposition' }.each do |opt, param|
370 query[param] = opts[opt]
374 uri.query = URI.encode_www_form(query)
380 # Note: several controller and integration tests rely on stubbing
381 # file_enumerator to return fake file content.
382 def file_enumerator opts
383 FileStreamer.new opts
387 include ArvadosApiClientHelper
388 def initialize(opts={})
392 return unless @opts[:uuid] && @opts[:file]
397 u = URI.parse(arvados_api_client.arvados_v1_base)
398 env['ARVADOS_API_HOST'] = "#{u.host}:#{u.port}"
399 env['ARVADOS_API_TOKEN'] = @opts[:arvados_api_token]
400 env['ARVADOS_API_HOST_INSECURE'] = "true" if Rails.configuration.arvados_insecure_https
402 bytesleft = @opts[:maxbytes].andand.to_i || 2**16
403 io = IO.popen([env, 'arv-get', "#{@opts[:uuid]}/#{@opts[:file]}"], 'rb')
404 while bytesleft > 0 && (buf = io.read([bytesleft, 2**16].min)) != nil
405 # shrink the bytesleft count, if we were given a maximum byte
407 if @opts.include? :maxbytes
408 bytesleft = bytesleft - buf.length
413 # "If ios is opened by IO.popen, close sets $?."
414 # http://www.ruby-doc.org/core-2.1.3/IO.html#method-i-close
415 Rails.logger.warn("#{@opts[:uuid]}/#{@opts[:file]}: #{$?}") if $? != 0