X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e34d6859d936f0b82f981d44be415a46b1aa61e1..f2a79e0cc9bffcbe941d9a05b78f102fa6f09d03:/services/api/app/controllers/arvados/v1/collections_controller.rb diff --git a/services/api/app/controllers/arvados/v1/collections_controller.rb b/services/api/app/controllers/arvados/v1/collections_controller.rb index f546a4afe2..3803d37691 100644 --- a/services/api/app/controllers/arvados/v1/collections_controller.rb +++ b/services/api/app/controllers/arvados/v1/collections_controller.rb @@ -1,6 +1,23 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + require "arvados/keep" +require "trashable" class Arvados::V1::CollectionsController < ApplicationController + include DbCurrentTime + include TrashableController + + def self._index_requires_parameters + (super rescue {}). + merge({ + include_trash: { + type: 'boolean', required: false, description: "Include collections whose is_trashed attribute is true." + }, + }) + end + def create if resource_attrs[:uuid] and (loc = Keep::Locator.parse(resource_attrs[:uuid])) resource_attrs[:portable_data_hash] = loc.to_s @@ -9,6 +26,13 @@ class Arvados::V1::CollectionsController < ApplicationController super end + def find_objects_for_index + if params[:include_trash] || ['destroy', 'trash', 'untrash'].include?(action_name) + @objects = Collection.readable_by(*@read_users, {include_trash: true, query_on: Collection.unscoped}) + end + super + end + def find_object_by_uuid if loc = Keep::Locator.parse(params[:id]) loc.strip_hints! @@ -16,28 +40,25 @@ class Arvados::V1::CollectionsController < ApplicationController @object = { uuid: c.portable_data_hash, portable_data_hash: c.portable_data_hash, - manifest_text: c.manifest_text, + manifest_text: c.signed_manifest_text, } end + true else super end - true end def show - sign_manifests(@object[:manifest_text]) if @object.is_a? Collection - render json: @object.as_api_response + # Omit unsigned_manifest_text + @select ||= model_class.selectable_attributes - ["unsigned_manifest_text"] + super else - render json: @object + send_json @object end end - def index - sign_manifests(*@objects.map { |c| c[:manifest_text] }) - super - end def find_collections(visited, sp, &b) case sp @@ -56,7 +77,7 @@ class Arvados::V1::CollectionsController < ApplicationController when String if m = /[a-f0-9]{32}\+\d+/.match(sp) yield m[0], nil - elsif m = /[0-9a-z]{5}-4zz18-[0-9a-z]{15}/.match(sp) + elsif m = Collection.uuid_regex.match(sp) yield nil, m[0] end end @@ -127,9 +148,9 @@ class Arvados::V1::CollectionsController < ApplicationController visited[uuid] = job.as_api_response if direction == :search_up # Follow upstream collections referenced in the script parameters - find_collections(visited, job) do |hash, uuid| + find_collections(visited, job) do |hash, col_uuid| search_edges(visited, hash, :search_up) if hash - search_edges(visited, uuid, :search_up) if uuid + search_edges(visited, col_uuid, :search_up) if col_uuid end elsif direction == :search_down # Follow downstream job output @@ -171,39 +192,23 @@ class Arvados::V1::CollectionsController < ApplicationController visited = {} search_edges(visited, @object[:portable_data_hash], :search_up) search_edges(visited, @object[:uuid], :search_up) - render json: visited + send_json visited end def used_by visited = {} search_edges(visited, @object[:uuid], :search_down) search_edges(visited, @object[:portable_data_hash], :search_down) - render json: visited + send_json visited end protected - def apply_filters - if action_name == 'index' - # Omit manifest_text from index results unless expressly selected. - @select ||= model_class.api_accessible_attributes(:user). - map { |attr_spec| attr_spec.first.to_s } - ["manifest_text"] - end + def load_limit_offset_order_params *args super - end - - def sign_manifests(*manifests) - if current_api_client_authorization - signing_opts = { - key: Rails.configuration.blob_signing_key, - api_token: current_api_client_authorization.api_token, - ttl: Rails.configuration.blob_signing_ttl, - } - manifests.each do |text| - Collection.munge_manifest_locators(text) do |loc| - Blob.sign_locator(loc.to_s, signing_opts) - end - end + if action_name == 'index' + # Omit manifest_text and unsigned_manifest_text from index results unless expressly selected. + @select ||= model_class.selectable_attributes - ["manifest_text", "unsigned_manifest_text"] end end end