2010-09-18 13:40:48 -04:00
module Fog
module Google
class Storage < Fog :: Service
requires :google_storage_access_key_id , :google_storage_secret_access_key
model_path 'fog/google/models/storage'
collection :directories
model :directory
collection :files
model :file
request_path 'fog/google/requests/storage'
request :copy_object
request :delete_bucket
request :delete_object
request :get_bucket
request :get_bucket_acl
request :get_object
request :get_object_acl
request :get_object_torrent
request :get_object_url
request :get_service
request :head_object
request :put_bucket
request :put_bucket_acl
request :put_object
request :put_object_url
module Utils
def parse_data ( data )
metadata = {
:body = > nil ,
:headers = > { }
}
if data . is_a? ( String )
metadata [ :body ] = data
metadata [ :headers ] [ 'Content-Length' ] = metadata [ :body ] . size . to_s
else
filename = :: File . basename ( data . path )
unless ( mime_types = MIME :: Types . of ( filename ) ) . empty?
metadata [ :headers ] [ 'Content-Type' ] = mime_types . first . content_type
end
metadata [ :body ] = data
metadata [ :headers ] [ 'Content-Length' ] = :: File . size ( data . path ) . to_s
end
# metadata[:headers]['Content-MD5'] = Base64.encode64(Digest::MD5.digest(metadata[:body])).strip
metadata
end
def url ( params , expires )
params [ :headers ] [ 'Date' ] = expires . to_i
query = [ params [ :query ] ] . compact
query << " GoogleAccessKeyId= #{ @google_storage_access_key_id } "
query << " Signature= #{ CGI . escape ( signature ( params ) ) } "
query << " Expires= #{ params [ :headers ] [ 'Date' ] } "
" http:// #{ params [ :host ] } / #{ params [ :path ] } ? #{ query . join ( '&' ) } "
end
end
class Mock
include Utils
def self . data
@data || = Hash . new do | hash , key |
hash [ key ] = {
:buckets = > { }
}
end
end
def self . reset_data ( keys = data . keys )
for key in [ * keys ]
data . delete ( key )
end
end
def initialize ( options = { } )
@google_storage_access_key_id = options [ :google_storage_access_key_id ]
@data = self . class . data [ @google_storage_access_key_id ]
end
def signature ( params )
" foo "
end
end
class Real
include Utils
extend Fog :: Deprecation
deprecate ( :reset , :reload )
2010-09-24 09:43:34 -04:00
# Initialize connection to Google Storage
2010-09-18 13:40:48 -04:00
#
# ==== Notes
# options parameter must include values for :google_storage_access_key_id and
# :google_storage_secret_access_key in order to create a connection
#
# ==== Examples
2010-09-24 09:43:34 -04:00
# google_storage = Storage.new(
2010-09-18 13:40:48 -04:00
# :google_storage_access_key_id => your_google_storage_access_key_id,
# :google_storage_secret_access_key => your_google_storage_secret_access_key
# )
#
# ==== Parameters
# * options<~Hash> - config arguments for connection. Defaults to {}.
#
# ==== Returns
2010-09-24 09:43:34 -04:00
# * Storage object with connection to google.
2010-09-18 13:40:48 -04:00
def initialize ( options = { } )
@google_storage_access_key_id = options [ :google_storage_access_key_id ]
@google_storage_secret_access_key = options [ :google_storage_secret_access_key ]
@hmac = Fog :: HMAC . new ( 'sha1' , @google_storage_secret_access_key )
@host = options [ :host ] || 'commondatastorage.googleapis.com'
@port = options [ :port ] || 443
@scheme = options [ :scheme ] || 'https'
@connection = Fog :: Connection . new ( " #{ @scheme } :// #{ @host } : #{ @port } " , options [ :persistent ] || true )
end
def reload
@connection . reset
end
private
def request ( params , & block )
params [ :headers ] [ 'Date' ] = Time . now . utc . strftime ( " %a, %d %b %Y %H:%M:%S +0000 " )
params [ :headers ] [ 'Authorization' ] = " GOOG1 #{ @google_storage_access_key_id } : #{ signature ( params ) } "
response = @connection . request ( params , & block )
response
end
def signature ( params )
string_to_sign =
<<-DATA
#{params[:method]}
#{params[:headers]['Content-MD5']}
#{params[:headers]['Content-Type']}
#{params[:headers]['Date']}
DATA
google_headers , canonical_google_headers = { } , ''
for key , value in params [ :headers ]
2010-09-18 15:57:37 -04:00
if key [ 0 .. 6 ] == 'x-goog-'
2010-09-18 13:40:48 -04:00
google_headers [ key ] = value
end
end
2010-09-18 15:57:37 -04:00
2010-09-18 13:40:48 -04:00
google_headers = google_headers . sort { | x , y | x [ 0 ] < = > y [ 0 ] }
for key , value in google_headers
canonical_google_headers << " #{ key } : #{ value } \n "
end
string_to_sign << " #{ canonical_google_headers } "
subdomain = params [ :host ] . split ( " . #{ @host } " ) . first
unless subdomain =~ / ^(?:[a-z]| \ d(?! \ d{0,2}(?: \ . \ d{1,3}){3}$))(?:[a-z0-9]| \ .(?![ \ . \ -])| \ -(?![ \ .])){1,61}[a-z0-9]$ /
2010-09-24 09:43:34 -04:00
Formatador . display_line ( " [yellow][WARN] fog: the specified google storage bucket name( #{ subdomain } ) is not a valid dns name. See: http://code.google.com/apis/storage/docs/developer-guide.html # naming " )
2010-09-18 13:40:48 -04:00
params [ :host ] = params [ :host ] . split ( " #{ subdomain } . " ) [ - 1 ]
if params [ :path ]
params [ :path ] = " #{ subdomain } / #{ params [ :path ] } "
else
params [ :path ] = " #{ subdomain } "
end
subdomain = nil
end
canonical_resource = " / "
unless subdomain . nil? || subdomain == @host
canonical_resource << " #{ CGI . escape ( subdomain ) . downcase } / "
end
canonical_resource << " #{ params [ :path ] } "
canonical_resource << '?'
for key in ( params [ :query ] || { } ) . keys
if [ 'acl' , 'location' , 'logging' , 'requestPayment' , 'torrent' , 'versions' , 'versioning' ] . include? ( key )
canonical_resource << " #{ key } & "
end
end
canonical_resource . chop!
string_to_sign << " #{ canonical_resource } "
signed_string = @hmac . sign ( string_to_sign )
signature = Base64 . encode64 ( signed_string ) . chomp!
end
end
end
end
end