5915: Workbench tries the anonymous reader token first for collection wget listing.
authorBrett Smith <brett@curoverse.com>
Thu, 14 May 2015 22:32:02 +0000 (18:32 -0400)
committerBrett Smith <brett@curoverse.com>
Thu, 14 May 2015 22:32:02 +0000 (18:32 -0400)
This is necessary to make sure we provide a usable token to arv-get.
If we don't check the anonymous reader token first, we might decide
that another token is usable when in actuality, the reader token is
the one that worked.  Closes #5915.

apps/workbench/app/controllers/collections_controller.rb

index 0610fd2e81852569c0e37da380fd3bbff51f2ac0..d4ea86c535913f7e688b494db7cf23631735968c 100644 (file)
@@ -119,10 +119,14 @@ class CollectionsController < ApplicationController
     # we ask the API server if the file actually exists.  This serves two
     # purposes: it lets us return a useful status code for common errors, and
     # helps us figure out which token to provide to arv-get.
+    # The order of searched tokens is important: because the anonymous user
+    # token is passed along with every API request, we have to check it first.
+    # Otherwise, it's impossible to know whether any other request succeeded
+    # because of the reader token.
     coll = nil
-    tokens = [Thread.current[:arvados_api_token],
+    tokens = [(Rails.configuration.anonymous_user_token || nil),
               params[:reader_token],
-              (Rails.configuration.anonymous_user_token || nil)].compact
+              Thread.current[:arvados_api_token]].compact
     usable_token = find_usable_token(tokens) do
       coll = Collection.find(params[:uuid])
     end