1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
8 class Arvados::V1::CollectionsController < ApplicationController
10 include TrashableController
12 def self._index_requires_parameters
16 type: 'boolean', required: false, description: "Include collections whose is_trashed attribute is true."
22 if resource_attrs[:uuid] and (loc = Keep::Locator.parse(resource_attrs[:uuid]))
23 resource_attrs[:portable_data_hash] = loc.to_s
24 resource_attrs.delete :uuid
29 def find_objects_for_index
30 if params[:include_trash] || ['destroy', 'trash', 'untrash'].include?(action_name)
31 @objects = Collection.readable_by(*@read_users, {include_trash: true})
36 def find_object_by_uuid
37 if loc = Keep::Locator.parse(params[:id])
40 # It matters which Collection object we pick because we use it to get signed_manifest_text,
41 # the value of which is affected by the value of trash_at.
43 # From postgres doc: "By default, null values sort as if larger than any non-null
44 # value; that is, NULLS FIRST is the default for DESC order, and
45 # NULLS LAST otherwise."
47 # "trash_at desc" sorts null first, then latest to earliest, so
48 # it will select the Collection object with the longest
51 if c = Collection.readable_by(*@read_users).where({ portable_data_hash: loc.to_s }).order("trash_at desc").limit(1).first
53 uuid: c.portable_data_hash,
54 portable_data_hash: c.portable_data_hash,
55 manifest_text: c.signed_manifest_text,
65 if @object.is_a? Collection
66 # Omit unsigned_manifest_text
67 @select ||= model_class.selectable_attributes - ["unsigned_manifest_text"]
75 def find_collections(visited, sp, &b)
78 sp.class.columns.each do |c|
79 find_collections(visited, sp[c.name.to_sym], &b) if c.name != "log"
83 find_collections(visited, v, &b)
87 find_collections(visited, v, &b)
90 if m = /[a-f0-9]{32}\+\d+/.match(sp)
92 elsif m = Collection.uuid_regex.match(sp)
98 def search_edges(visited, uuid, direction)
99 if uuid.nil? or uuid.empty? or visited[uuid]
103 if loc = Keep::Locator.parse(uuid)
105 return if visited[loc.to_s]
108 logger.debug "visiting #{uuid}"
111 # uuid is a portable_data_hash
112 collections = Collection.readable_by(*@read_users).where(portable_data_hash: loc.to_s)
113 c = collections.limit(2).all
115 visited[loc.to_s] = c[0]
117 name = collections.limit(1).where("name <> ''").first
119 visited[loc.to_s] = {
120 portable_data_hash: c[0].portable_data_hash,
121 name: "#{name.name} + #{collections.count-1} more"
124 visited[loc.to_s] = {
125 portable_data_hash: c[0].portable_data_hash,
131 if direction == :search_up
132 # Search upstream for jobs where this locator is the output of some job
133 Job.readable_by(*@read_users).where(output: loc.to_s).each do |job|
134 search_edges(visited, job.uuid, :search_up)
137 Job.readable_by(*@read_users).where(log: loc.to_s).each do |job|
138 search_edges(visited, job.uuid, :search_up)
140 elsif direction == :search_down
141 if loc.to_s == "d41d8cd98f00b204e9800998ecf8427e+0"
142 # Special case, don't follow the empty collection.
146 # Search downstream for jobs where this locator is in script_parameters
147 Job.readable_by(*@read_users).where(["jobs.script_parameters like ?", "%#{loc.to_s}%"]).each do |job|
148 search_edges(visited, job.uuid, :search_down)
151 Job.readable_by(*@read_users).where(["jobs.docker_image_locator = ?", "#{loc.to_s}"]).each do |job|
152 search_edges(visited, job.uuid, :search_down)
156 # uuid is a regular Arvados UUID
157 rsc = ArvadosModel::resource_class_for_uuid uuid
159 Job.readable_by(*@read_users).where(uuid: uuid).each do |job|
160 visited[uuid] = job.as_api_response
161 if direction == :search_up
162 # Follow upstream collections referenced in the script parameters
163 find_collections(visited, job) do |hash, col_uuid|
164 search_edges(visited, hash, :search_up) if hash
165 search_edges(visited, col_uuid, :search_up) if col_uuid
167 elsif direction == :search_down
168 # Follow downstream job output
169 search_edges(visited, job.output, direction)
172 elsif rsc == Collection
173 if c = Collection.readable_by(*@read_users).where(uuid: uuid).limit(1).first
174 search_edges(visited, c.portable_data_hash, direction)
175 visited[c.portable_data_hash] = c.as_api_response
178 rsc.where(uuid: uuid).each do |r|
179 visited[uuid] = r.as_api_response
184 if direction == :search_up
185 # Search for provenance links pointing to the current uuid
186 Link.readable_by(*@read_users).
187 where(head_uuid: uuid, link_class: "provenance").
189 visited[link.uuid] = link.as_api_response
190 search_edges(visited, link.tail_uuid, direction)
192 elsif direction == :search_down
193 # Search for provenance links emanating from the current uuid
194 Link.readable_by(current_user).
195 where(tail_uuid: uuid, link_class: "provenance").
197 visited[link.uuid] = link.as_api_response
198 search_edges(visited, link.head_uuid, direction)
205 search_edges(visited, @object[:portable_data_hash], :search_up)
206 search_edges(visited, @object[:uuid], :search_up)
212 search_edges(visited, @object[:uuid], :search_down)
213 search_edges(visited, @object[:portable_data_hash], :search_down)
219 def load_limit_offset_order_params *args
221 if action_name == 'index'
222 # Omit manifest_text and unsigned_manifest_text from index results unless expressly selected.
223 @select ||= model_class.selectable_attributes - ["manifest_text", "unsigned_manifest_text"]