Merge branch 'master' into 4195-pipeline-tutorial
[arvados.git] / apps / workbench / app / controllers / collections_controller.rb
1 class CollectionsController < ApplicationController
2   include ActionController::Live
3
4   skip_around_filter(:require_thread_api_token,
5                      only: [:show_file, :show_file_links])
6   skip_before_filter(:find_object_by_uuid,
7                      only: [:provenance, :show_file, :show_file_links])
8   # We depend on show_file to display the user agreement:
9   skip_before_filter :check_user_agreements, only: :show_file
10   skip_before_filter :check_user_profile, only: :show_file
11
12   RELATION_LIMIT = 5
13
14   def show_pane_list
15     %w(Files Provenance_graph Used_by Advanced)
16   end
17
18   def set_persistent
19     case params[:value]
20     when 'persistent', 'cache'
21       persist_links = Link.filter([['owner_uuid', '=', current_user.uuid],
22                                    ['link_class', '=', 'resources'],
23                                    ['name', '=', 'wants'],
24                                    ['tail_uuid', '=', current_user.uuid],
25                                    ['head_uuid', '=', @object.uuid]])
26       logger.debug persist_links.inspect
27     else
28       return unprocessable "Invalid value #{value.inspect}"
29     end
30     if params[:value] == 'persistent'
31       if not persist_links.any?
32         Link.create(link_class: 'resources',
33                     name: 'wants',
34                     tail_uuid: current_user.uuid,
35                     head_uuid: @object.uuid)
36       end
37     else
38       persist_links.each do |link|
39         link.destroy || raise
40       end
41     end
42
43     respond_to do |f|
44       f.json { render json: @object }
45     end
46   end
47
48   def choose
49     # Find collections using default find_objects logic, then search for name
50     # links, and preload any other links connected to the collections that are
51     # found.
52     # Name links will be obsolete when issue #3036 is merged,
53     # at which point this entire custom #choose function can probably be
54     # eliminated.
55
56     params[:limit] ||= 40
57
58     find_objects_for_index
59     @collections = @objects
60
61     @filters += [['link_class','=','name'],
62                  ['head_uuid','is_a','arvados#collection']]
63
64     @objects = Link
65     find_objects_for_index
66
67     @name_links = @objects
68
69     @objects = Collection.
70       filter([['uuid','in',@name_links.collect(&:head_uuid)]])
71
72     preload_links_for_objects (@collections.to_a + @objects.to_a)
73     super
74   end
75
76   def index
77     # API server index doesn't return manifest_text by default, but our
78     # callers want it unless otherwise specified.
79     @select ||= Collection.columns.map(&:name)
80     base_search = Collection.select(@select)
81     if params[:search].andand.length.andand > 0
82       tags = Link.where(any: ['contains', params[:search]])
83       @collections = (base_search.where(uuid: tags.collect(&:head_uuid)) |
84                       base_search.where(any: ['contains', params[:search]])).
85         uniq { |c| c.uuid }
86     else
87       if params[:limit]
88         limit = params[:limit].to_i
89       else
90         limit = 100
91       end
92
93       if params[:offset]
94         offset = params[:offset].to_i
95       else
96         offset = 0
97       end
98
99       @collections = base_search.limit(limit).offset(offset)
100     end
101     @links = Link.limit(1000).
102       where(head_uuid: @collections.collect(&:uuid))
103     @collection_info = {}
104     @collections.each do |c|
105       @collection_info[c.uuid] = {
106         tag_links: [],
107         wanted: false,
108         wanted_by_me: false,
109         provenance: [],
110         links: []
111       }
112     end
113     @links.each do |link|
114       @collection_info[link.head_uuid] ||= {}
115       info = @collection_info[link.head_uuid]
116       case link.link_class
117       when 'tag'
118         info[:tag_links] << link
119       when 'resources'
120         info[:wanted] = true
121         info[:wanted_by_me] ||= link.tail_uuid == current_user.uuid
122       when 'provenance'
123         info[:provenance] << link.name
124       end
125       info[:links] << link
126     end
127     @request_url = request.url
128
129     render_index
130   end
131
132   def show_file_links
133     Thread.current[:reader_tokens] = [params[:reader_token]]
134     return if false.equal?(find_object_by_uuid)
135     render layout: false
136   end
137
138   def show_file
139     # We pipe from arv-get to send the file to the user.  Before we start it,
140     # we ask the API server if the file actually exists.  This serves two
141     # purposes: it lets us return a useful status code for common errors, and
142     # helps us figure out which token to provide to arv-get.
143     coll = nil
144     tokens = [Thread.current[:arvados_api_token], params[:reader_token]].compact
145     usable_token = find_usable_token(tokens) do
146       coll = Collection.find(params[:uuid])
147     end
148     if usable_token.nil?
149       return  # Response already rendered.
150     elsif params[:file].nil? or not coll.manifest.has_file?(params[:file])
151       return render_not_found
152     end
153
154     opts = params.merge(arvados_api_token: usable_token)
155
156     # Handle Range requests. Currently we support only 'bytes=0-....'
157     if request.headers.include? 'HTTP_RANGE'
158       if m = /^bytes=0-(\d+)/.match(request.headers['HTTP_RANGE'])
159         opts[:maxbytes] = m[1]
160         size = params[:size] || '*'
161         self.response.status = 206
162         self.response.headers['Content-Range'] = "bytes 0-#{m[1]}/#{size}"
163       end
164     end
165
166     ext = File.extname(params[:file])
167     self.response.headers['Content-Type'] =
168       Rack::Mime::MIME_TYPES[ext] || 'application/octet-stream'
169     if params[:size]
170       size = params[:size].to_i
171       if opts[:maxbytes]
172         size = [size, opts[:maxbytes].to_i].min
173       end
174       self.response.headers['Content-Length'] = size.to_s
175     end
176     self.response.headers['Content-Disposition'] = params[:disposition] if params[:disposition]
177     begin
178       file_enumerator(opts).each do |bytes|
179         response.stream.write bytes
180       end
181     ensure
182       response.stream.close
183     end
184   end
185
186   def sharing_scopes
187     ["GET /arvados/v1/collections/#{@object.uuid}", "GET /arvados/v1/collections/#{@object.uuid}/", "GET /arvados/v1/keep_services/accessible"]
188   end
189
190   def search_scopes
191     begin
192       ApiClientAuthorization.filter([['scopes', '=', sharing_scopes]]).results
193     rescue ArvadosApiClient::AccessForbiddenException
194       nil
195     end
196   end
197
198   def find_object_by_uuid
199     if not Keep::Locator.parse params[:id]
200       super
201     end
202   end
203
204   def show
205     return super if !@object
206     if current_user
207       if Keep::Locator.parse params["uuid"]
208         @same_pdh = Collection.filter([["portable_data_hash", "=", @object.portable_data_hash]]).limit(1000)
209         if @same_pdh.results.size == 1
210           redirect_to collection_path(@same_pdh[0]["uuid"])
211           return
212         end
213         owners = @same_pdh.map(&:owner_uuid).to_a.uniq
214         preload_objects_for_dataclass Group, owners
215         preload_objects_for_dataclass User, owners
216         render 'hash_matches'
217         return
218       else
219         jobs_with = lambda do |conds|
220           Job.limit(RELATION_LIMIT).where(conds)
221             .results.sort_by { |j| j.finished_at || j.created_at }
222         end
223         @output_of = jobs_with.call(output: @object.portable_data_hash)
224         @log_of = jobs_with.call(log: @object.portable_data_hash)
225         @project_links = Link.limit(RELATION_LIMIT).order("modified_at DESC")
226           .where(head_uuid: @object.uuid, link_class: 'name').results
227         project_hash = Group.where(uuid: @project_links.map(&:tail_uuid)).to_hash
228         @projects = project_hash.values
229
230         @permissions = Link.limit(RELATION_LIMIT).order("modified_at DESC")
231           .where(head_uuid: @object.uuid, link_class: 'permission',
232                  name: 'can_read').results
233         @logs = Log.limit(RELATION_LIMIT).order("created_at DESC")
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')
238           .results.any?
239         @search_sharing = search_scopes
240
241         if params["tab_pane"] == "Provenance_graph"
242           @prov_svg = ProvenanceHelper::create_provenance_graph(@object.provenance, "provenance_svg",
243                                                                 {:request => request,
244                                                                   :direction => :bottom_up,
245                                                                   :combine_jobs => :script_only}) rescue nil
246         end
247         if params["tab_pane"] == "Used_by"
248           @used_by_svg = ProvenanceHelper::create_provenance_graph(@object.used_by, "used_by_svg",
249                                                                    {:request => request,
250                                                                      :direction => :top_down,
251                                                                      :combine_jobs => :script_only,
252                                                                      :pdata_only => true}) rescue nil
253         end
254       end
255     end
256     super
257   end
258
259   def sharing_popup
260     @search_sharing = search_scopes
261     respond_to do |format|
262       format.html
263       format.js
264     end
265   end
266
267   helper_method :download_link
268
269   def download_link
270     collections_url + "/download/#{@object.uuid}/#{@search_sharing.first.api_token}/"
271   end
272
273   def share
274     a = ApiClientAuthorization.create(scopes: sharing_scopes)
275     @search_sharing = search_scopes
276     render 'sharing_popup'
277   end
278
279   def unshare
280     @search_sharing = search_scopes
281     @search_sharing.each do |s|
282       s.destroy
283     end
284     @search_sharing = search_scopes
285     render 'sharing_popup'
286   end
287
288   protected
289
290   def find_usable_token(token_list)
291     # Iterate over every given token to make it the current token and
292     # yield the given block.
293     # If the block succeeds, return the token it used.
294     # Otherwise, render an error response based on the most specific
295     # error we encounter, and return nil.
296     most_specific_error = [401]
297     token_list.each do |api_token|
298       begin
299         using_specific_api_token(api_token) do
300           yield
301           return api_token
302         end
303       rescue ArvadosApiClient::ApiError => error
304         if error.api_status >= most_specific_error.first
305           most_specific_error = [error.api_status, error]
306         end
307       end
308     end
309     case most_specific_error.shift
310     when 401, 403
311       redirect_to_login
312     when 404
313       render_not_found(*most_specific_error)
314     end
315     return nil
316   end
317
318   def file_enumerator(opts)
319     FileStreamer.new opts
320   end
321
322   class FileStreamer
323     include ArvadosApiClientHelper
324     def initialize(opts={})
325       @opts = opts
326     end
327     def each
328       return unless @opts[:uuid] && @opts[:file]
329
330       env = Hash[ENV].dup
331
332       require 'uri'
333       u = URI.parse(arvados_api_client.arvados_v1_base)
334       env['ARVADOS_API_HOST'] = "#{u.host}:#{u.port}"
335       env['ARVADOS_API_TOKEN'] = @opts[:arvados_api_token]
336       env['ARVADOS_API_HOST_INSECURE'] = "true" if Rails.configuration.arvados_insecure_https
337
338       bytesleft = @opts[:maxbytes].andand.to_i || 2**16
339       io = IO.popen([env, 'arv-get', "#{@opts[:uuid]}/#{@opts[:file]}"], 'rb')
340       while bytesleft > 0 && (buf = io.read([bytesleft, 2**16].min)) != nil
341         # shrink the bytesleft count, if we were given a maximum byte
342         # count to read
343         if @opts.include? :maxbytes
344           bytesleft = bytesleft - buf.length
345         end
346         yield buf
347       end
348       io.close
349       # "If ios is opened by IO.popen, close sets $?."
350       # http://www.ruby-doc.org/core-2.1.3/IO.html#method-i-close
351       Rails.logger.warn("#{@opts[:uuid]}/#{@opts[:file]}: #{$?}") if $? != 0
352     end
353   end
354 end