X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/91dc5f1d7f5ad9eb2640f6089e2d0476cbf87c8e..bc1947e4aef52fe5f3aebc10dc2ea74cad86672d:/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 fb748e9350..041f559472 100644 --- a/services/api/app/controllers/arvados/v1/containers_controller.rb +++ b/services/api/app/controllers/arvados/v1/containers_controller.rb @@ -1,25 +1,48 @@ +# 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_action :find_object_by_uuid, only: [:current] + skip_before_action :render_404_if_no_object, only: [:current] def auth if @object.locked_by_uuid != Thread.current[:api_client_authorization].uuid raise ArvadosModel::PermissionDeniedError.new("Not locked by your token") end - @object = @object.auth + if @object.runtime_token.nil? + @object = @object.auth + else + @object = ApiClientAuthorization.validate(token: @object.runtime_token) + if @object.nil? + raise ArvadosModel::PermissionDeniedError.new("Invalid runtime_token") + end + end show end - # Updates use row locking to resolve races between multiple - # dispatchers trying to lock the same container. def update @object.with_lock do 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, :lock_count) + @select = %w(uuid state priority auth_uuid locked_by_uuid) + end + end + def lock @object.lock show @@ -29,4 +52,26 @@ class Arvados::V1::ContainersController < ApplicationController @object.unlock show end + + def current + if Thread.current[:api_client_authorization].nil? + send_error("Not logged in", status: 401) + else + @object = Container.for_current_token + if @object.nil? + send_error("Token is not associated with a container.", status: 404) + else + show + end + end + end + + def secret_mounts + c = Container.for_current_token + if @object && c && @object.uuid == c.uuid + send_json({"secret_mounts" => @object.secret_mounts}) + else + send_error("Token is not associated with this container.", status: 403) + end + end end