X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/07a2b2c0e743f36be03e746a7e265986db555d3e..f94ac6e8ad9aec3c781cd71b72fcc5e2c1cedd8d:/services/api/app/middlewares/arvados_api_token.rb diff --git a/services/api/app/middlewares/arvados_api_token.rb b/services/api/app/middlewares/arvados_api_token.rb index de6ba6f97f..2c240984c6 100644 --- a/services/api/app/middlewares/arvados_api_token.rb +++ b/services/api/app/middlewares/arvados_api_token.rb @@ -23,12 +23,13 @@ class ArvadosApiToken remote = false reader_tokens = nil - if params[:remote] && request.get? && ( + if params["remote"] && request.get? && ( request.path.start_with?('/arvados/v1/groups') || + request.path.start_with?('/arvados/v1/api_client_authorizations/current') || request.path.start_with?('/arvados/v1/users/current')) # Request from a remote API server, asking to validate a salted # token. - remote = params[:remote] + remote = params["remote"] elsif request.get? || params["_method"] == 'GET' reader_tokens = params["reader_tokens"] if reader_tokens.is_a? String @@ -39,18 +40,19 @@ class ArvadosApiToken # Set current_user etc. based on the primary session token if a # valid one is present. Otherwise, use the first valid token in # reader_tokens. + accepted = false auth = nil [params["api_token"], params["oauth_token"], - env["HTTP_AUTHORIZATION"].andand.match(/(OAuth2|Bearer) ([a-zA-Z0-9]+)/).andand[2], + env["HTTP_AUTHORIZATION"].andand.match(/(OAuth2|Bearer) ([!-~]+)/).andand[2], *reader_tokens, ].each do |supplied| next if !supplied try_auth = ApiClientAuthorization. - validate(token: Thread.current[:supplied_token], - remote: remote) + validate(token: supplied, remote: remote) if try_auth.andand.user auth = try_auth + accepted = supplied break end end @@ -59,6 +61,7 @@ class ArvadosApiToken Thread.current[:api_client_authorization] = auth Thread.current[:api_client_uuid] = auth.andand.api_client.andand.uuid Thread.current[:api_client] = auth.andand.api_client + Thread.current[:token] = accepted Thread.current[:user] = auth.andand.user @app.call env if @app