X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/29dd43933769bf47d0018d967037bc31b679dfd9..5f3df47f1369ca700f2405fca4231055989765c5:/services/api/app/models/blob.rb diff --git a/services/api/app/models/blob.rb b/services/api/app/models/blob.rb index 799279d040..56cdfb83a4 100644 --- a/services/api/app/models/blob.rb +++ b/services/api/app/models/blob.rb @@ -28,8 +28,8 @@ class Blob # Blob.sign_locator: return a signed and timestamped blob locator. # # The 'opts' argument should include: - # [required] :key - the Arvados server-side blobstore key - # [required] :api_token - user's API token + # [required] :api_token - API token (signatures only work for this token) + # [optional] :key - the Arvados server-side blobstore key # [optional] :ttl - number of seconds before signature should expire # [optional] :expire - unix timestamp when signature should expire # @@ -44,14 +44,16 @@ class Blob end timestamp = opts[:expire] else - timestamp = db_current_time.to_i + (opts[:ttl] || 1209600) + timestamp = db_current_time.to_i + + (opts[:ttl] || Rails.configuration.blob_signature_ttl) end timestamp_hex = timestamp.to_s(16) # => "53163cb4" # Generate a signature. signature = - generate_signature opts[:key], blob_hash, opts[:api_token], timestamp_hex + generate_signature((opts[:key] or Rails.configuration.blob_signing_key), + blob_hash, opts[:api_token], timestamp_hex) blob_locator + '+A' + signature + '@' + timestamp_hex end @@ -91,12 +93,13 @@ class Blob if !timestamp.match /^[\da-f]+$/ raise Blob::InvalidSignatureError.new 'Timestamp is not a base16 number.' end - if timestamp.to_i(16) < db_current_time.to_i + if timestamp.to_i(16) < (opts[:now] or db_current_time.to_i) raise Blob::InvalidSignatureError.new 'Signature expiry time has passed.' end my_signature = - generate_signature opts[:key], blob_hash, opts[:api_token], timestamp + generate_signature((opts[:key] or Rails.configuration.blob_signing_key), + blob_hash, opts[:api_token], timestamp) if my_signature != given_signature raise Blob::InvalidSignatureError.new 'Signature is invalid.'