X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/37470b030384ebe8a73e6d1e725cbde4abb924da..bc49a7967325c523a7c25d48df30ae718a66aa63:/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 3f11b4f5dd..25cb0037a2 100644 --- a/services/api/app/controllers/arvados/v1/containers_controller.rb +++ b/services/api/app/controllers/arvados/v1/containers_controller.rb @@ -1,3 +1,7 @@ +# 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 @@ -16,10 +20,9 @@ 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 @@ -56,4 +59,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