X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/734335da27f27e2177d3b931b1e5e9e8e83a042f..652e26feea271a3d86430cd494503ff96e11dc9f:/services/api/app/controllers/arvados/v1/containers_controller.rb diff --git a/services/api/app/controllers/arvados/v1/containers_controller.rb b/services/api/app/controllers/arvados/v1/containers_controller.rb index 7728ce6d53..65d8385ad5 100644 --- a/services/api/app/controllers/arvados/v1/containers_controller.rb +++ b/services/api/app/controllers/arvados/v1/containers_controller.rb @@ -1,8 +1,14 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + class Arvados::V1::ContainersController < ApplicationController accept_attribute_as_json :environment, Hash accept_attribute_as_json :mounts, Hash accept_attribute_as_json :runtime_constraints, Hash + accept_attribute_as_json :runtime_status, Hash accept_attribute_as_json :command, Array + accept_attribute_as_json :scheduling_parameters, Hash skip_before_filter :find_object_by_uuid, only: [:current] skip_before_filter :render_404_if_no_object, only: [:current] @@ -15,14 +21,22 @@ class Arvados::V1::ContainersController < ApplicationController show end - # Updates use row locking to resolve races between multiple - # dispatchers trying to lock the same container. def update @object.with_lock do + @object.reload super end end + def find_objects_for_index + super + if action_name == 'lock' || action_name == 'unlock' + # Avoid loading more fields than we need + @objects = @objects.select(:id, :uuid, :state, :priority, :auth_uuid, :locked_by_uuid) + @select = %w(uuid state priority auth_uuid locked_by_uuid) + end + end + def lock @object.lock show @@ -46,4 +60,14 @@ class Arvados::V1::ContainersController < ApplicationController end end end + + def secret_mounts + if @object && + @object.auth_uuid && + @object.auth_uuid == Thread.current[:api_client_authorization].uuid + send_json({"secret_mounts" => @object.secret_mounts}) + else + send_error("Token is not associated with this container.", status: 403) + end + end end