Class: Gcloud::Storage::File::Signer
- Inherits:
-
Object
- Object
- Gcloud::Storage::File::Signer
- Defined in:
- lib/gcloud/storage/file.rb
Overview
Create a signed_url for a file.
Instance Method Summary collapse
- #apply_option_defaults(options) ⇒ Object
- #determine_issuer(options = {}) ⇒ Object
- #determine_signing_key(options = {}) ⇒ Object
-
#ext_path ⇒ Object
The external path to the file.
-
#ext_url ⇒ Object
The external url to the file.
- #generate_signature(signing_key, options = {}) ⇒ Object
- #generate_signed_url(issuer, signed_string, expires) ⇒ Object
-
#initialize(file) ⇒ Signer
constructor
:nodoc:.
- #signature_str(options) ⇒ Object
- #signed_url(options) ⇒ Object
Constructor Details
#initialize(file) ⇒ Signer
:nodoc:
738 739 740 |
# File 'lib/gcloud/storage/file.rb', line 738 def initialize file @file = file end |
Instance Method Details
#apply_option_defaults(options) ⇒ Object
754 755 756 757 758 759 |
# File 'lib/gcloud/storage/file.rb', line 754 def apply_option_defaults adjusted_expires = (Time.now.utc + ([:expires] || 300)).to_i [:expires] = adjusted_expires [:method] ||= "GET" end |
#determine_issuer(options = {}) ⇒ Object
772 773 774 775 |
# File 'lib/gcloud/storage/file.rb', line 772 def determine_issuer = {} [:issuer] || [:client_email] || @file.connection.credentials.issuer end |
#determine_signing_key(options = {}) ⇒ Object
767 768 769 770 |
# File 'lib/gcloud/storage/file.rb', line 767 def determine_signing_key = {} [:signing_key] || [:private_key] || @file.connection.credentials.signing_key end |
#ext_path ⇒ Object
The external path to the file.
744 745 746 |
# File 'lib/gcloud/storage/file.rb', line 744 def ext_path "/#{@file.bucket}/#{@file.name}" end |
#ext_url ⇒ Object
The external url to the file.
750 751 752 |
# File 'lib/gcloud/storage/file.rb', line 750 def ext_url "https://storage.googleapis.com#{ext_path}" end |
#generate_signature(signing_key, options = {}) ⇒ Object
789 790 791 792 793 794 |
# File 'lib/gcloud/storage/file.rb', line 789 def generate_signature signing_key, = {} unless signing_key.respond_to? :sign signing_key = OpenSSL::PKey::RSA.new signing_key end signing_key.sign OpenSSL::Digest::SHA256.new, signature_str() end |
#generate_signed_url(issuer, signed_string, expires) ⇒ Object
796 797 798 799 800 801 |
# File 'lib/gcloud/storage/file.rb', line 796 def generate_signed_url issuer, signed_string, expires signature = Base64.encode64(signed_string).delete("\n") "#{ext_url}?GoogleAccessId=#{CGI.escape issuer}" \ "&Expires=#{expires}" \ "&Signature=#{CGI.escape signature}" end |
#signature_str(options) ⇒ Object
761 762 763 764 765 |
# File 'lib/gcloud/storage/file.rb', line 761 def signature_str [[:method], [:content_md5], [:content_type], [:expires], ext_path].join "\n" end |
#signed_url(options) ⇒ Object
777 778 779 780 781 782 783 784 785 786 787 |
# File 'lib/gcloud/storage/file.rb', line 777 def signed_url = apply_option_defaults i = determine_issuer s = determine_signing_key fail SignedUrlUnavailable unless i && s sig = generate_signature s, generate_signed_url i, sig, [:expires] end |