X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/668a799436295a17223096392898cf257d8dfc76..4aa8d709fe8483c295a6d16dadffb5b11848e5b8:/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 d826e970b8..680c324f5c 100644 --- a/apps/workbench/app/controllers/collections_controller.rb +++ b/apps/workbench/app/controllers/collections_controller.rb @@ -36,7 +36,7 @@ class CollectionsController < ApplicationController ['link_class', '=', 'resources'], ['name', '=', 'wants'], ['tail_uuid', '=', current_user.uuid], - ['head_uuid', '=', @object.uuid]]) + ['head_uuid', '=', @object.uuid]]).with_count("none") logger.debug persist_links.inspect else return unprocessable "Invalid value #{value.inspect}" @@ -65,7 +65,7 @@ class CollectionsController < ApplicationController @select ||= Collection.columns.map(&:name) base_search = Collection.select(@select) if params[:search].andand.length.andand > 0 - tags = Link.where(any: ['contains', params[:search]]) + tags = Link.where(any: ['contains', params[:search]]).with_count("none") @objects = (base_search.where(uuid: tags.collect(&:head_uuid)) | base_search.where(any: ['contains', params[:search]])). uniq { |c| c.uuid } @@ -84,7 +84,7 @@ class CollectionsController < ApplicationController @objects = base_search.limit(limit).offset(offset) end - @links = Link.where(head_uuid: @objects.collect(&:uuid)) + @links = Link.where(head_uuid: @objects.collect(&:uuid)).with_count("none") @collection_info = {} @objects.each do |c| @collection_info[c.uuid] = { @@ -176,7 +176,7 @@ class CollectionsController < ApplicationController if params["tab_pane"] == "Provenance_graph" @prov_svg = ProvenanceHelper::create_provenance_graph(@object.provenance, "provenance_svg", {:request => request, - :direction => :top_down, + :direction => "RL", :combine_jobs => :script_only}) rescue nil end @@ -197,19 +197,19 @@ class CollectionsController < ApplicationController else if Job.api_exists?(:index) jobs_with = lambda do |conds| - Job.limit(RELATION_LIMIT).where(conds) + Job.limit(RELATION_LIMIT).with_count("none").where(conds) .results.sort_by { |j| j.finished_at || j.created_at } end @output_of = jobs_with.call(output: @object.portable_data_hash) @log_of = jobs_with.call(log: @object.portable_data_hash) end - @project_links = Link.limit(RELATION_LIMIT).order("modified_at DESC") + @project_links = Link.limit(RELATION_LIMIT).with_count("none").order("modified_at DESC") .where(head_uuid: @object.uuid, link_class: 'name').results - project_hash = Group.where(uuid: @project_links.map(&:tail_uuid)).to_hash + project_hash = Group.where(uuid: @project_links.map(&:tail_uuid)).with_count("none").to_hash @projects = project_hash.values - @permissions = Link.limit(RELATION_LIMIT).order("modified_at DESC") + @permissions = Link.limit(RELATION_LIMIT).with_count("none").order("modified_at DESC") .where(head_uuid: @object.uuid, link_class: 'permission', name: 'can_read').results @search_sharing = search_scopes @@ -217,7 +217,7 @@ class CollectionsController < ApplicationController if params["tab_pane"] == "Used_by" @used_by_svg = ProvenanceHelper::create_provenance_graph(@object.used_by, "used_by_svg", {:request => request, - :direction => :top_down, + :direction => "LR", :combine_jobs => :script_only, :pdata_only => true}) rescue nil end @@ -337,16 +337,18 @@ class CollectionsController < ApplicationController munged_id = uuid_or_pdh.sub('+', '-') tmpl = Rails.configuration.Services.WebDAV.ExternalURL.to_s - if !Rails.configuration.Services.WebDAVDownload.ExternalURL.empty? and - (!tmpl or opts[:disposition] == 'attachment') + + if Rails.configuration.Services.WebDAVDownload.ExternalURL != URI("") and + (tmpl.empty? or opts[:disposition] == 'attachment') # Prefer the attachment-only-host when we want an attachment # (and when there is no preview link configured) tmpl = Rails.configuration.Services.WebDAVDownload.ExternalURL.to_s - elsif not Rails.configuration.Workbench.TrustAllContent + elsif not Rails.configuration.Collections.TrustAllContent check_uri = URI.parse(tmpl.sub("*", munged_id)) if opts[:query_token] and + (check_uri.host.nil? or ( not check_uri.host.start_with?(munged_id + "--") and - not check_uri.host.start_with?(munged_id + ".") + not check_uri.host.start_with?(munged_id + "."))) # We're about to pass a token in the query string, but # keep-web can't accept that safely at a single-origin URL # template (unless it's -attachment-only-host). @@ -367,14 +369,14 @@ class CollectionsController < ApplicationController uri = URI.parse(tmpl.sub("*", munged_id)) if tmpl.index("*").nil? - uri.path += "/c=#{munged_id}" + uri.path = "/c=#{munged_id}" end uri.path += '/' unless uri.path.end_with? '/' if opts[:path_token] uri.path += 't=' + opts[:path_token] + '/' end uri.path += '_/' - uri.path += URI.escape(file) if file + uri.path += ERB::Util.url_encode(file).gsub('%2F', '/') if file query = Hash[URI.decode_www_form(uri.query || '')] { query_token: 'api_token',