X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/846ac5d419862e2b0051ec0843e71c601b35da44..b6f73f7acffa9b2f37c78826ff6cee89987a7edc:/apps/workbench/app/controllers/collections_controller.rb diff --git a/apps/workbench/app/controllers/collections_controller.rb b/apps/workbench/app/controllers/collections_controller.rb index e869824be4..f4aa0395f3 100644 --- a/apps/workbench/app/controllers/collections_controller.rb +++ b/apps/workbench/app/controllers/collections_controller.rb @@ -1,3 +1,5 @@ +require "arvados/keep" + class CollectionsController < ApplicationController include ActionController::Live @@ -12,7 +14,9 @@ class CollectionsController < ApplicationController RELATION_LIMIT = 5 def show_pane_list - %w(Files Provenance_graph Used_by Advanced) + panes = %w(Files Upload Provenance_graph Used_by Advanced) + panes = panes - %w(Upload) unless (@object.editable? rescue false) + panes end def set_persistent @@ -45,34 +49,6 @@ class CollectionsController < ApplicationController end end - def choose - # Find collections using default find_objects logic, then search for name - # links, and preload any other links connected to the collections that are - # found. - # Name links will be obsolete when issue #3036 is merged, - # at which point this entire custom #choose function can probably be - # eliminated. - - params[:limit] ||= 40 - - find_objects_for_index - @collections = @objects - - @filters += [['link_class','=','name'], - ['head_uuid','is_a','arvados#collection']] - - @objects = Link - find_objects_for_index - - @name_links = @objects - - @objects = Collection. - filter([['uuid','in',@name_links.collect(&:head_uuid)]]) - - preload_links_for_objects (@collections.to_a + @objects.to_a) - super - end - def index # API server index doesn't return manifest_text by default, but our # callers want it unless otherwise specified. @@ -80,7 +56,7 @@ class CollectionsController < ApplicationController base_search = Collection.select(@select) if params[:search].andand.length.andand > 0 tags = Link.where(any: ['contains', params[:search]]) - @collections = (base_search.where(uuid: tags.collect(&:head_uuid)) | + @objects = (base_search.where(uuid: tags.collect(&:head_uuid)) | base_search.where(any: ['contains', params[:search]])). uniq { |c| c.uuid } else @@ -96,12 +72,11 @@ class CollectionsController < ApplicationController offset = 0 end - @collections = base_search.limit(limit).offset(offset) + @objects = base_search.limit(limit).offset(offset) end - @links = Link.limit(1000). - where(head_uuid: @collections.collect(&:uuid)) + @links = Link.where(head_uuid: @objects.collect(&:uuid)) @collection_info = {} - @collections.each do |c| + @objects.each do |c| @collection_info[c.uuid] = { tag_links: [], wanted: false, @@ -207,7 +182,7 @@ class CollectionsController < ApplicationController return super if !@object if current_user if Keep::Locator.parse params["uuid"] - @same_pdh = Collection.filter([["portable_data_hash", "=", @object.portable_data_hash]]).limit(1000) + @same_pdh = Collection.filter([["portable_data_hash", "=", @object.portable_data_hash]]) if @same_pdh.results.size == 1 redirect_to collection_path(@same_pdh[0]["uuid"]) return @@ -260,10 +235,7 @@ class CollectionsController < ApplicationController def sharing_popup @search_sharing = search_scopes - respond_to do |format| - format.html - format.js - end + render("sharing_popup.js", content_type: "text/javascript") end helper_method :download_link @@ -273,18 +245,15 @@ class CollectionsController < ApplicationController end def share - a = ApiClientAuthorization.create(scopes: sharing_scopes) - @search_sharing = search_scopes - render 'sharing_popup' + ApiClientAuthorization.create(scopes: sharing_scopes) + sharing_popup end def unshare - @search_sharing = search_scopes - @search_sharing.each do |s| + search_scopes.each do |s| s.destroy end - @search_sharing = search_scopes - render 'sharing_popup' + sharing_popup end protected @@ -298,7 +267,9 @@ class CollectionsController < ApplicationController most_specific_error = [401] token_list.each do |api_token| begin - using_specific_api_token(api_token) do + # We can't load the corresponding user, because the token may not + # be scoped for that. + using_specific_api_token(api_token, load_user: false) do yield return api_token end