X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/248c7167e95d970b770c43102ee68cf1319973f7..055b9792b7692d6c42f4e13d38dc6cd008396a6f:/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb diff --git a/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb b/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb index cd466cf1fb..22bcb6c1d5 100644 --- a/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb +++ b/services/api/app/controllers/arvados/v1/api_client_authorizations_controller.rb @@ -17,6 +17,7 @@ class Arvados::V1::ApiClientAuthorizationsController < ApplicationController scopes: {type: 'array', required: false} } end + def create_system_auth @object = ApiClientAuthorization. new(user_id: system_user.id, @@ -48,7 +49,12 @@ class Arvados::V1::ApiClientAuthorizationsController < ApplicationController end def current - @object = Thread.current[:api_client_authorization] + @object = Thread.current[:api_client_authorization].dup + if params[:remote] + # Client is validating a salted token. Don't return the unsalted + # secret! + @object.api_token = nil + end show end @@ -81,7 +87,9 @@ class Arvados::V1::ApiClientAuthorizationsController < ApplicationController val.is_a?(String) && (attr == 'uuid' || attr == 'api_token') } end - @objects = model_class.where('user_id=?', current_user.id) + if current_api_client_authorization.andand.api_token != Rails.configuration.SystemRootToken + @objects = model_class.where('user_id=?', current_user.id) + end if wanted_scopes.compact.any? # We can't filter on scopes effectively using AR/postgres. # Instead we get the entire result set, do our own filtering on @@ -122,8 +130,8 @@ class Arvados::V1::ApiClientAuthorizationsController < ApplicationController def find_object_by_uuid uuid_param = params[:uuid] || params[:id] - if (uuid_param != current_api_client_authorization.andand.uuid and - not Thread.current[:api_client].andand.is_trusted) + if (uuid_param != current_api_client_authorization.andand.uuid && + !Thread.current[:api_client].andand.is_trusted) return forbidden end @limit = 1